diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000000..1161828aed --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,66 @@ +name: arenas-build +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + build: + runs-on: '${{ matrix.os }}' + strategy: + matrix: + os: + - ubuntu-20.04 + python-version: + - 3.7.17 + env: + TRAVIS_PULL_REQUEST: ${{ vars.TRAVIS_PULL_REQUEST }} + TRAVIS_BRANCH: ${{ vars.TRAVIS_BRANCH }} + DEPLOY_FLAG: ${{ vars.DEPLOY_FLAG }} + PRODUCTION_INSTANCE: ${{ secrets.PRODUCTION_INSTANCE }} + AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} + steps: + - name: 'Set up Python ${{ matrix.python-version }}' + uses: actions/setup-python@v2 + with: + python-version: '${{ matrix.python-version }}' + - run: rm -f $HOME/.cache/pip/log/debug.log + - name: Cache multiple paths + uses: actions/cache@v2 + with: + path: $HOME/.cache/pip + key: '${{ runner.os }}-${{ hashFiles(''TODO'') }}' + - uses: actions/checkout@v2 + - run: sudo rm -f /etc/boto.cfg + - run: export CHROME_BIN=chromium-browser + - run: export DISPLAY=:99.0 + - run: pip install awscli==1.18.66 importlib-metadata==4.8.3 flake8==3.8.4 coveralls==3.3.1 + - run: flake8 ./ || exit 1; +# - run: >- +# if [ $TRAVIS_PULL_REQUEST = false ]; then echo $DOCKER_PASSWORD +# | docker login --username $DOCKER_USERNAME --password-stdin || +# exit 1; fi + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ secrets.AWS_DEFAULT_REGION }} + - name: Login to ECR + uses: docker/login-action@v3 + with: + registry: ${{ secrets.AWS_REGISTRY }} + - run: docker-compose build || exit 1; + - run: docker-compose run nodejs bash -c "gulp dev && karma start --single-run && gulp staging" || exit 1; + - run: docker-compose run -e DJANGO_SETTINGS_MODULE=settings.test django pytest --cov . --cov-config .coveragerc || exit 1; + - run: 'bash <(curl -s https://codecov.io/bash)' + - run: coveralls --rcfile=.coveragerc + - run: eval "$(ssh-agent -s)" + - run: openssl enc -d -aes-256-cbc -K ${{ secrets.ENCRYPTED_KEY }} -iv ${{ secrets.ENCRYPTED_IV }} -in scripts/deployment/evalai.pem.enc -out scripts/deployment/evalai.pem || true + - run: ./scripts/deployment/push.sh + - run: ./scripts/deployment/deploy.sh ${{ vars.DEPLOY_FLAG }} diff --git a/README.md b/README.md index 6445e7f6e6..47dee32086 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,17 @@ The steps are: git clone https://github.com/Cloud-CV/EvalAI.git evalai && cd evalai ``` -3. Build and run the Docker containers. This might take a while. +3. Set sending email information in `settings/dev.py`. + + ```shell + DEFAULT_FROM_EMAIL = "xxx@xxx.xxx" + EMAIL_HOST = "smtp.xxx.com" + EMAIL_PORT = 587 + EMAIL_HOST_PASSWORD = "xxx" + EMAIL_HOST_USER = "xxx@xxx.xxx" + ``` + +4. Build and run the Docker containers. This might take a while. ``` docker-compose up --build diff --git a/apps/base/utils.py b/apps/base/utils.py index 90fc55d00c..abafb4d6db 100644 --- a/apps/base/utils.py +++ b/apps/base/utils.py @@ -34,7 +34,12 @@ def paginated_queryset( Return a paginated result for a queryset """ paginator = pagination_class - paginator.page_size = settings.REST_FRAMEWORK["PAGE_SIZE"] + page_size = request.GET.get('page_size') + if page_size: + page_size = int(page_size) + else: + page_size = settings.REST_FRAMEWORK["PAGE_SIZE"] + paginator.page_size = page_size result_page = paginator.paginate_queryset(queryset, request) return (paginator, result_page) @@ -46,7 +51,12 @@ def team_paginated_queryset( Return a paginated result for a queryset """ paginator = pagination_class - paginator.page_size = settings.REST_FRAMEWORK["TEAM_PAGE_SIZE"] + page_size = request.GET.get('page_size') + if page_size: + page_size = int(page_size) + else: + page_size = settings.REST_FRAMEWORK["TEAM_PAGE_SIZE"] + paginator.page_size = page_size result_page = paginator.paginate_queryset(queryset, request) return (paginator, result_page) @@ -252,7 +262,7 @@ def send_slack_notification(webhook=settings.SLACK_WEB_HOOK_URL, message=""): try: data = { "attachments": [{"color": "ffaf4b", "fields": message["fields"]}], - "icon_url": "https://eval.ai/dist/images/evalai-logo-single.png", + "icon_url": "https://arena.synkrotron.ai/images/evalai-logo-single.png", "text": message["text"], "username": "EvalAI", } diff --git a/apps/challenges/aws_utils.py b/apps/challenges/aws_utils.py index b5cb80b5fd..bafaa1b067 100644 --- a/apps/challenges/aws_utils.py +++ b/apps/challenges/aws_utils.py @@ -56,13 +56,13 @@ ), "WORKER_IMAGE": os.environ.get( "WORKER_IMAGE", - "{}.dkr.ecr.us-east-1.amazonaws.com/evalai-{}-worker:latest".format( + "{}.dkr.ecr.cn-northwest-1.amazonaws.com.cn/arena/evalai-{}-worker:latest".format( aws_keys["AWS_ACCOUNT_ID"], ENV ), ), "CODE_UPLOAD_WORKER_IMAGE": os.environ.get( "CODE_UPLOAD_WORKER_IMAGE", - "{}.dkr.ecr.us-east-1.amazonaws.com/evalai-{}-worker:latest".format( + "{}.dkr.ecr.cn-northwest-1.amazonaws.com.cn/arena/evalai-{}-worker:latest".format( aws_keys["AWS_ACCOUNT_ID"], ENV ), ), diff --git a/apps/web/templates/notification_email_conformation.html b/apps/web/templates/notification_email_conformation.html index 9c6eda09bd..f7f2dae1c7 100644 --- a/apps/web/templates/notification_email_conformation.html +++ b/apps/web/templates/notification_email_conformation.html @@ -43,7 +43,7 @@
diff --git a/bower.json b/bower.json deleted file mode 100644 index 0b9d0ea662..0000000000 --- a/bower.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "evalai", - "description": "", - "main": "index.js", - "license": "ISC", - "homepage": "", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "angular": "1.7.0", - "animate.css": "^3.5.2", - "font-awesome": "^4.7.0", - "angular-ui-router": "^0.3.1", - "angular-animate": "^1.5.8", - "angular-aria": "^1.5.8", - "angular-messages": "^1.5.8", - "angular-material": "master", - "materialize": "^0.97.8", - "jquery": "^3.1.1", - "lodash": "^4.17.2", - "ngSmoothScroll": "master", - "ng-focus-if": "master", - "angular-sanitize": "1.7.0", - "ng-file-upload": "^12.2.13", - "AngularJS-Toaster": "angularjs-toaster#^2.1.0", - "angular-trix": "^1.0.2", - "angular-moment": "^1.2.0", - "moment": "^2.21.0", - "ngclipboard": "^2.0.0", - "moment-picker": "0.10.2", - "angular-moment-picker": "moment-picker#^0.10.2", - "moment-timezone": "^0.5.25", - "trix": "1.3.1" - }, - "resolutions": { - "angular": "1.7.0" - } -} diff --git a/docker-compose-production.yml b/docker-compose-production.yml index 6155550261..7e800e6c98 100644 --- a/docker-compose-production.yml +++ b/docker-compose-production.yml @@ -6,7 +6,7 @@ services: - "11211:11211" django: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-backend:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-backend:${COMMIT_ID} env_file: - docker/prod/docker_production.env build: @@ -14,6 +14,8 @@ services: dockerfile: docker/prod/django/Dockerfile ports: - "8000:8000" + volumes: + - /etc/localtime:/etc/localtime logging: driver: awslogs options: @@ -22,7 +24,7 @@ services: awslogs-create-group: "true" celery: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-celery:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-celery:${COMMIT_ID} env_file: - docker/prod/docker_production.env build: @@ -30,6 +32,8 @@ services: dockerfile: docker/prod/celery/Dockerfile depends_on: - django + volumes: + - /etc/localtime:/etc/localtime logging: driver: awslogs options: @@ -38,23 +42,27 @@ services: awslogs-create-group: "true" worker: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-worker:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-worker:${COMMIT_ID} build: context: ./ dockerfile: docker/prod/worker/Dockerfile env_file: - docker/prod/docker_production.env + volumes: + - /etc/localtime:/etc/localtime worker_py3.8: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-worker-py3.8:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-worker-py3.8:${COMMIT_ID} build: context: ./ dockerfile: docker/prod/worker_py3.8/Dockerfile env_file: - docker/prod/docker_production.env + volumes: + - /etc/localtime:/etc/localtime nodejs: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-frontend:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-frontend:${COMMIT_ID} build: context: ./ dockerfile: docker/prod/nodejs/Dockerfile @@ -66,6 +74,7 @@ services: volumes: - /code/node_modules - /code/bower_components + - /etc/localtime:/etc/localtime logging: driver: awslogs options: @@ -74,21 +83,25 @@ services: awslogs-create-group: "true" remote-worker: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-remote-worker:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-remote-worker:${COMMIT_ID} build: context: ./ dockerfile: docker/prod/worker/Dockerfile command: ["python", "-m", "scripts.workers.remote_submission_worker"] env_file: - docker/prod/docker_remote_worker.env + volumes: + - /etc/localtime:/etc/localtime code-upload-worker: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-code-upload-worker:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-code-upload-worker:${COMMIT_ID} env_file: - docker/prod/docker_code_upload_worker.env build: context: ./ dockerfile: docker/prod/code-upload-worker/Dockerfile + volumes: + - /etc/localtime:/etc/localtime prometheus: hostname: prometheus @@ -137,7 +150,7 @@ services: - '9100:9100' nginx-ingress: - image: ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-production-nginx-ingress:${COMMIT_ID} + image: ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-production-nginx-ingress:${COMMIT_ID} build: context: ./ dockerfile: docker/prod/nginx-ingress/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index 7868d39a5c..9d7c318446 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,42 +27,60 @@ services: volumes: - .:/code - worker: - env_file: - - docker/dev/docker.env - build: - context: ./ - dockerfile: docker/dev/worker/Dockerfile - depends_on: - - django - volumes: - - .:/code +# worker: +# env_file: +# - docker/dev/docker.env +# build: +# context: ./ +# dockerfile: docker/dev/worker/Dockerfile +# depends_on: +# - django +# volumes: +# - .:/code +# +# worker_py3_8: +# env_file: +# - docker/dev/docker.env +# build: +# context: ./ +# dockerfile: docker/dev/worker_py3.8/Dockerfile +# depends_on: +# - django +# volumes: +# - .:/code - worker_py3_8: - env_file: - - docker/dev/docker.env - build: - context: ./ - dockerfile: docker/dev/worker_py3.8/Dockerfile - depends_on: - - django - volumes: - - .:/code +# nodejs: +# hostname: nodejs +# build: +# context: ./ +# dockerfile: docker/dev/nodejs/Dockerfile +# args: +# NODE_ENV: development +# environment: +# NODE_ENV: development +# ports: +# - "8888:8888" +# - "35729:35729" +# volumes: +# - .:/code +# - /code/node_modules +# - /code/bower_components - nodejs: - hostname: nodejs + frontend: + restart: unless-stopped build: context: ./ - dockerfile: docker/dev/nodejs/Dockerfile + dockerfile: docker/dev/frontend/Dockerfile + args: + NODE_ENV: development environment: NODE_ENV: development ports: - "8888:8888" - - "35729:35729" + depends_on: + - django volumes: - - .:/code - - /code/node_modules - - /code/bower_components + - ./frontend:/code statsd-exporter: hostname: statsd diff --git a/docker/dev/celery/Dockerfile b/docker/dev/celery/Dockerfile index 8e0e41afe3..fa7dcb3112 100644 --- a/docker/dev/celery/Dockerfile +++ b/docker/dev/celery/Dockerfile @@ -8,6 +8,6 @@ WORKDIR /code ADD requirements/* /code/ -RUN pip install -r dev.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r dev.txt CMD ["./docker/wait-for-it.sh", "django:8000", "--", "sh", "/code/docker/dev/celery/container-start.sh"] diff --git a/docker/dev/code-upload-worker/Dockerfile b/docker/dev/code-upload-worker/Dockerfile index 0457e9ca96..cecb2c679a 100644 --- a/docker/dev/code-upload-worker/Dockerfile +++ b/docker/dev/code-upload-worker/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && \ ADD requirements/* /code/ -RUN pip install -r code_upload_worker.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r code_upload_worker.txt ADD . /code diff --git a/docker/dev/django/Dockerfile b/docker/dev/django/Dockerfile index 9c4b5f9a52..6448cad014 100644 --- a/docker/dev/django/Dockerfile +++ b/docker/dev/django/Dockerfile @@ -6,6 +6,6 @@ RUN mkdir /code WORKDIR /code ADD requirements/* /code/ -RUN pip install -r dev.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r dev.txt CMD ["./docker/wait-for-it.sh", "db:5432", "--", "sh", "/code/docker/dev/django/container-start.sh"] diff --git a/docker/dev/docker.env b/docker/dev/docker.env index 9352952bcf..3add368c9d 100644 --- a/docker/dev/docker.env +++ b/docker/dev/docker.env @@ -33,7 +33,7 @@ C_FORCE_ROOT=true ENVIRONMENT=dev SERVICE_DNS=localhost -GF_SECURITY_ADMIN_USER=admin +GF_SECURITY_ADMIN_USER=admin GF_SECURITY_ADMIN_PASSWORD=password STATSD_ENDPOINT=statsd diff --git a/docker/dev/frontend/Dockerfile b/docker/dev/frontend/Dockerfile new file mode 100644 index 0000000000..6cc4b45920 --- /dev/null +++ b/docker/dev/frontend/Dockerfile @@ -0,0 +1,17 @@ +FROM node:16.20.2 as build-stage +RUN npm install -g @vue/cli + +WORKDIR /code/frontend +ADD frontend /code/ + +# Install Prerequisites +RUN npm cache clean -f +RUN npm install +RUN npm run build +#CMD [ "npm", "run", "dev" ] + +FROM nginx:1.13-alpine as nginx-stage +COPY docker/dev/frontend/single.conf /etc/nginx/conf.d/default.conf +COPY --from=build-stage /code/dist /usr/share/nginx/html +EXPOSE 8888 +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/docker/dev/frontend/single.conf b/docker/dev/frontend/single.conf new file mode 100644 index 0000000000..1b218e81a1 --- /dev/null +++ b/docker/dev/frontend/single.conf @@ -0,0 +1,23 @@ +upstream httpd{ + server django:8000; + keepalive 200; +} + +server { + listen 8888; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html; + } + + location /prod-api/ { + proxy_pass http://httpd/; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } +} \ No newline at end of file diff --git a/docker/dev/worker/Dockerfile b/docker/dev/worker/Dockerfile index 6564cbb547..8cb6607892 100644 --- a/docker/dev/worker/Dockerfile +++ b/docker/dev/worker/Dockerfile @@ -11,9 +11,9 @@ WORKDIR /code ADD requirements/* /code/ -RUN pip install -U cffi service_identity cython==0.29 numpy==1.14.5 -RUN pip install -r dev.txt -RUN pip install -r worker.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -U cffi service_identity cython==0.29 numpy==1.14.5 +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r dev.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r worker.txt ADD . /code diff --git a/docker/dev/worker_py3.8/Dockerfile b/docker/dev/worker_py3.8/Dockerfile index 411f44ceeb..db2e26c050 100644 --- a/docker/dev/worker_py3.8/Dockerfile +++ b/docker/dev/worker_py3.8/Dockerfile @@ -6,7 +6,9 @@ RUN mkdir /code WORKDIR /code ADD requirements/* /code/ -RUN pip install -r dev.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r dev.txt +RUN sed -i 's#http://deb.debian.org#https://mirrors.163.com#g' /etc/apt/sources.list +RUN sed -i 's|security.debian.org/debian-security|mirrors.ustc.edu.cn/debian-security|g' /etc/apt/sources.list RUN apt-get update && \ apt-get --no-install-recommends install -q -y default-jre default-jdk \ @@ -14,8 +16,8 @@ RUN apt-get update && \ libgmp-dev libcgal-qt5-dev swig && \ rm -rf /var/lib/apt/lists/* -RUN pip install -U cffi service_identity cython==0.29 numpy==1.14.5 -RUN pip install -r worker.txt +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -U cffi service_identity cython==0.29 numpy==1.14.5 +RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r worker.txt ADD . /code diff --git a/docker/prod/celery/Dockerfile b/docker/prod/celery/Dockerfile index bb99580046..b07fb4caf6 100644 --- a/docker/prod/celery/Dockerfile +++ b/docker/prod/celery/Dockerfile @@ -1,7 +1,8 @@ ARG AWS_ACCOUNT_ID ARG COMMIT_ID ARG TRAVIS_BRANCH +ARG AWS_DEFAULT_REGION -FROM ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-${TRAVIS_BRANCH}-backend:${COMMIT_ID} +FROM ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-${TRAVIS_BRANCH}-backend:${COMMIT_ID} CMD ["sh", "/code/docker/prod/celery/container-start.sh"] diff --git a/docker/prod/nginx-ingress/nginx_production.conf b/docker/prod/nginx-ingress/nginx_production.conf index 0f3c2c5519..d2b906582f 100644 --- a/docker/prod/nginx-ingress/nginx_production.conf +++ b/docker/prod/nginx-ingress/nginx_production.conf @@ -15,13 +15,13 @@ upstream alert_manager { } server { - server_name monitoring.eval.ai; + server_name monitoring.arena.synkrotron.ai; listen 80; - return 301 https://monitoring.eval.ai$request_uri; + return 301 https://monitoring.arena.synkrotron.ai$request_uri; } server { - server_name monitoring.eval.ai; + server_name monitoring.arena.synkrotron.ai; listen 443 ssl; location / { root /usr/share/nginx/html; @@ -29,8 +29,8 @@ server { } ssl on; - ssl_certificate /etc/ssl/eval_ai.crt; - ssl_certificate_key /etc/ssl/eval_ai.key; + ssl_certificate /etc/ssl/arena.synkrotron.ai.pem; + ssl_certificate_key /etc/ssl/arena.synkrotron.ai.key; ssl_prefer_server_ciphers on; # enables all versions of TLS, but not SSLv2 or 3 which are weak and now deprecated. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; diff --git a/docker/prod/nginx-ingress/nginx_staging.conf b/docker/prod/nginx-ingress/nginx_staging.conf index 9af63d2f98..169b4681c3 100644 --- a/docker/prod/nginx-ingress/nginx_staging.conf +++ b/docker/prod/nginx-ingress/nginx_staging.conf @@ -15,13 +15,13 @@ upstream alert_manager { } server { - server_name monitoring-staging.eval.ai; + server_name monitoring-staging.arena.synkrotron.ai; listen 80; - return 301 https://monitoring-staging.eval.ai$request_uri; + return 301 https://monitoring-staging.arena.synkrotron.ai$request_uri; } server { - server_name monitoring-staging.eval.ai; + server_name monitoring-staging.arena.synkrotron.ai; listen 443 ssl; location / { root /usr/share/nginx/html; diff --git a/docker/prod/nodejs/nginx_production.conf b/docker/prod/nodejs/nginx_production.conf index 18d0b35df6..531bdaeb4d 100644 --- a/docker/prod/nodejs/nginx_production.conf +++ b/docker/prod/nodejs/nginx_production.conf @@ -10,7 +10,7 @@ server { server_name evalapi.cloudcv.org evalai.cloudcv.org; listen 80; listen 443; - return 301 https://eval.ai$request_uri; + return 301 https://arena.synkrotron.ai$request_uri; ssl off; ssl_certificate /etc/ssl/__cloudcv_org.crt; @@ -20,13 +20,13 @@ server { } server { - server_name eval.ai; + server_name arena.synkrotron.ai; listen 80; - return 301 https://eval.ai$request_uri; + return 301 https://arena.synkrotron.ai$request_uri; } server { - server_name eval.ai; + server_name arena.synkrotron.ai; listen 443 ssl; sendfile on; default_type application/octet-stream; @@ -52,7 +52,7 @@ server { # Redirect frontend v2 challenge URL for backward compatibility location ~ ^/challenge/(?.+) { - return 301 https://eval.ai/web/challenges/challenge-page/$suffix; + return 301 https://arena.synkrotron.ai/web/challenges/challenge-page/$suffix; } location /api { @@ -70,8 +70,8 @@ server { } ssl on; - ssl_certificate /etc/ssl/eval_ai.crt; - ssl_certificate_key /etc/ssl/eval_ai.key; + ssl_certificate /etc/ssl/arena.synkrotron.ai.pem; + ssl_certificate_key /etc/ssl/arena.synkrotron.ai.key; ssl_prefer_server_ciphers on; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; diff --git a/docker/prod/nodejs/nginx_staging.conf b/docker/prod/nodejs/nginx_staging.conf index 8eeaccd510..8ebb382ed0 100644 --- a/docker/prod/nodejs/nginx_staging.conf +++ b/docker/prod/nodejs/nginx_staging.conf @@ -10,7 +10,7 @@ server { server_name staging-evalai.cloudcv.org evalai-staging.cloudcv.org; listen 80; listen 443; - return 301 https://staging.eval.ai$request_uri; + return 301 https://staging.arena.synkrotron.ai$request_uri; ssl off; ssl_certificate /etc/ssl/__cloudcv_org.crt; @@ -20,13 +20,13 @@ server { } server { - server_name staging.eval.ai; + server_name staging.arena.synkrotron.ai; listen 80; - return 301 https://staging.eval.ai$request_uri; + return 301 https://staging.arena.synkrotron.ai$request_uri; } server { - server_name staging.eval.ai; + server_name staging.arena.synkrotron.ai; listen 443 ssl; sendfile on; default_type application/octet-stream; @@ -52,7 +52,7 @@ server { # Redirect frontend v2 challenge URL for backward compatibility location ~ ^/challenge/(?.+) { - return 301 https://staging.eval.ai/web/challenges/challenge-page/$suffix; + return 301 https://staging.arena.synkrotron.ai/web/challenges/challenge-page/$suffix; } location /api { diff --git a/docker/prod/nodejs_v2/nginx_production.conf b/docker/prod/nodejs_v2/nginx_production.conf index e0191321bd..2cb4cb604c 100644 --- a/docker/prod/nodejs_v2/nginx_production.conf +++ b/docker/prod/nodejs_v2/nginx_production.conf @@ -10,7 +10,7 @@ server { server_name evalapi.cloudcv.org evalai.cloudcv.org; listen 80; listen 443; - return 301 https://eval.ai$request_uri; + return 301 https://arena.synkrotron.ai$request_uri; ssl off; ssl_certificate /etc/ssl/__cloudcv_org.crt; @@ -20,13 +20,13 @@ server { } server { - server_name eval.ai; + server_name arena.synkrotron.ai; listen 80; - return 301 https://eval.ai$request_uri; + return 301 https://arena.synkrotron.ai$request_uri; } server { - server_name eval.ai; + server_name arena.synkrotron.ai; listen 443 ssl; location / { root /usr/share/nginx/html; @@ -45,8 +45,8 @@ server { gzip_comp_level 9; ssl on; - ssl_certificate /etc/ssl/eval_ai.crt; - ssl_certificate_key /etc/ssl/eval_ai.key; + ssl_certificate /etc/ssl/arena.synkrotron.ai.pem; + ssl_certificate_key /etc/ssl/arena.synkrotron.ai.key; ssl_prefer_server_ciphers on; # enables all versions of TLS, but not SSLv2 or 3 which are weak and now deprecated. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; @@ -56,7 +56,7 @@ server { # Redirect frontend v1 challenge URL for backward compatibility location ~ /web/challenges/challenge-page/(?.+) { - return 301 https://eval.ai/challenge/$suffix; + return 301 https://arena.synkrotron.ai/challenge/$suffix; } location /api { diff --git a/docker/prod/nodejs_v2/nginx_staging.conf b/docker/prod/nodejs_v2/nginx_staging.conf index 0c2db349a8..5b0d112583 100644 --- a/docker/prod/nodejs_v2/nginx_staging.conf +++ b/docker/prod/nodejs_v2/nginx_staging.conf @@ -7,13 +7,13 @@ upstream node_exporter { } server { - server_name staging.eval.ai; + server_name staging.arena.synkrotron.ai; listen 80; - return 301 https://staging.eval.ai$request_uri; + return 301 https://staging.arena.synkrotron.ai$request_uri; } server { - server_name staging.eval.ai; + server_name staging.arena.synkrotron.ai; listen 443 ssl; location / { root /usr/share/nginx/html; @@ -43,7 +43,7 @@ server { # Redirect frontend v1 challenge URL for backward compatibility location ~ /web/challenges/challenge-page/(?.+) { - return 301 https://staging.eval.ai/challenge/$suffix; + return 301 https://staging.arena.synkrotron.ai/challenge/$suffix; } location /api { diff --git a/docker/prod/worker/Dockerfile b/docker/prod/worker/Dockerfile index 156dacc2a9..fa2c3dabaf 100644 --- a/docker/prod/worker/Dockerfile +++ b/docker/prod/worker/Dockerfile @@ -1,8 +1,9 @@ ARG AWS_ACCOUNT_ID ARG COMMIT_ID ARG TRAVIS_BRANCH +ARG AWS_DEFAULT_REGION -FROM ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/evalai-${TRAVIS_BRANCH}-backend:${COMMIT_ID} +FROM ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn/arena/evalai-${TRAVIS_BRANCH}-backend:${COMMIT_ID} RUN apt-get update && \ apt-get --no-install-recommends install -q -y default-jre default-jdk \ diff --git a/docker/prod/worker_py3.8/Dockerfile b/docker/prod/worker_py3.8/Dockerfile index 78598e37a9..4655affba0 100644 --- a/docker/prod/worker_py3.8/Dockerfile +++ b/docker/prod/worker_py3.8/Dockerfile @@ -1,6 +1,7 @@ ARG AWS_ACCOUNT_ID ARG COMMIT_ID ARG TRAVIS_BRANCH +ARG AWS_DEFAULT_REGION FROM python:3.8.10 diff --git a/evalai/urls.py b/evalai/urls.py index 9e09a5811d..552f211167 100644 --- a/evalai/urls.py +++ b/evalai/urls.py @@ -16,13 +16,14 @@ from django.conf.urls import url, include from django.contrib import admin -from django.views.generic.base import TemplateView +from django.views.generic.base import TemplateView, RedirectView from django.conf import settings from django.conf.urls.static import static from allauth.account.views import ConfirmEmailView from rest_framework_expiring_authtoken.views import obtain_expiring_auth_token from rest_framework import permissions +from rest_framework.documentation import include_docs_urls from drf_yasg.views import get_schema_view from drf_yasg import openapi @@ -60,13 +61,14 @@ ), url(r"^api/auth/registration/", include("rest_auth.registration.urls")), url( - r"^auth/api/password/reset/confirm/(?P[0-9A-Za-z_\-]+)/(?P[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})$", # noqa + r"^auth/resetcode/(?P[0-9A-Za-z_\-]+)/(?P[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})$", # noqa TemplateView.as_view(template_name="password_reset_confirm.html"), name="password_reset_confirm", ), url( r"^api/auth/email-confirmed/$", - TemplateView.as_view(template_name="account/email_confirm.html"), + RedirectView.as_view(url="http://127.0.0.1:8888/auth/verifyEmail"), #Todo replace env + # TemplateView.as_view(template_name="account/email_confirm.html"), name="email_confirm_done", ), url(r"^api/accounts/", include("accounts.urls", namespace="accounts")), @@ -82,6 +84,7 @@ ), url(r"^api/web/", include("web.urls", namespace="web")), url(r"^email_reporting/", include("django_ses.urls")), + url(r"^docs/", include_docs_urls(title='ARENA API docs', description='Arena REST framework quickstart')), url( r"^api/docs/docs(?P\.json|\.yaml)$", schema_view.without_ui(cache_timeout=0), diff --git a/frontend/.env.development b/frontend/.env.development new file mode 100644 index 0000000000..424998eb23 --- /dev/null +++ b/frontend/.env.development @@ -0,0 +1,2 @@ +NODE_ENV=development +VITE_APP_BASE_API=/dev-api \ No newline at end of file diff --git a/frontend/.env.production b/frontend/.env.production new file mode 100644 index 0000000000..8d98307e06 --- /dev/null +++ b/frontend/.env.production @@ -0,0 +1,2 @@ +NODE_ENV=production +VITE_APP_BASE_API=/prod-api diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000000..38adffa64e --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,28 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000000..8d6c5efa6a --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,29 @@ +# frontend + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). + +## Customize configuration + +See [Vite Configuration Reference](https://vitejs.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Compile and Minify for Production + +```sh +npm run build +``` diff --git a/frontend/app.scripts.json b/frontend/app.scripts.json deleted file mode 100644 index cb8d7e03c1..0000000000 --- a/frontend/app.scripts.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "chunks": { - "vendor": [ - "jquery", - "angular", - "angular-animate", - "angular-ui-router", - "angular-aria", - "angular-message", - "angular-material", - "materialize", - "lodash", - "ngSmoothScroll", - "ng-focus-if", - "ng-sanitize", - "ng-file-upload", - "AngularJS-Toaster", - "angular-trix", - "trix", - "moment", - "moment-timezone", - "moment-timezone-with-data", - "locale", - "angular-moment", - "clipboard", - "ngclipboard", - "moment-picker" - ] - }, - "paths": { - "jquery": "bower_components/jquery/dist/jquery.min.js", - "angular" : "bower_components/angular/angular.min.js", - "angular-animate" : "bower_components/angular-animate/angular-animate.min.js", - "angular-ui-router" : "bower_components/angular-ui-router/release/angular-ui-router.min.js", - "angular-aria" : "bower_components/angular-aria/angular-aria.min.js", - "angular-message": "bower_components/angular-messages/angular-messages.min.js", - "angular-material" : "bower_components/angular-material/angular-material.min.js", - "materialize": "bower_components/materialize/dist/js/materialize.min.js", - "lodash": "bower_components/lodash/dist/lodash.min.js", - "ngSmoothScroll": "bower_components/ngSmoothScroll/lib/angular-smooth-scroll.js", - "ng-focus-if": "bower_components/ng-focus-if/focusIf.min.js", - "ng-sanitize": "bower_components/angular-sanitize/angular-sanitize.min.js", - "ng-file-upload": "bower_components/ng-file-upload/ng-file-upload.min.js", - "AngularJS-Toaster": "bower_components/AngularJS-Toaster/toaster.min.js", - "angular-trix": "bower_components/angular-trix/dist/angular-trix.min.js", - "trix": "bower_components/trix/dist/trix.js", - "moment": "bower_components/moment/moment.js", - "locale": "bower_components/moment/locale/en-gb.js", - "moment-timezone": "bower_components/moment-timezone/moment-timezone.js", - "moment-timezone-with-data": "bower_components/moment-timezone/builds/moment-timezone-with-data.js", - "angular-moment": "bower_components/angular-moment/angular-moment.js", - "clipboard": "bower_components/clipboard/dist/clipboard.min.js", - "ngclipboard": "bower_components/ngclipboard/dist/ngclipboard.min.js", - "moment-picker": "bower_components/angular-moment-picker/dist/angular-moment-picker.js" - } -} diff --git a/frontend/app.styles.json b/frontend/app.styles.json deleted file mode 100644 index 01b49355eb..0000000000 --- a/frontend/app.styles.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "chunks": { - "vendor": [ - "animate", - "angular-material", - "materialize", - "AngularJS-Toaster", - "trix", - "moment-picker" - ] - }, - "paths": { - "animate": "bower_components/animate.css/animate.css", - "angular-material": "bower_components/angular-material/angular-material.css", - "materialize": "bower_components/materialize/dist/css/materialize.css", - "AngularJS-Toaster": "bower_components/AngularJS-Toaster/toaster.min.css", - "trix": "bower_components/trix/dist/trix.css", - "moment-picker": "bower_components/angular-moment-picker/dist/angular-moment-picker.css" - } -} diff --git a/frontend/base.html b/frontend/base.html deleted file mode 100644 index cf77da6193..0000000000 --- a/frontend/base.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000000..1dc7b95574 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,13 @@ + + + + + + + Arena + + +
+ + + diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000000..7ba805e4c0 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,2846 @@ +{ + "name": "frontend", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.0.0", + "dependencies": { + "axios": "^1.6.2", + "element-plus": "^2.3.7", + "js-cookie": "^3.0.5", + "jsencrypt": "^3.3.2", + "ress": "^5.0.2", + "vue": "^3.3.4", + "vue-i18n": "^9.3.0-beta.26", + "vue-router": "^4.2.4", + "vuex": "^4.0.2" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.3.4", + "sass": "^1.63.6", + "unplugin-auto-import": "^0.16.6", + "unplugin-vue-components": "^0.25.2", + "vite": "^4.4.9" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.6", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.6.tgz", + "integrity": "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==", + "dev": true + }, + "node_modules/@babel/parser": { + "version": "7.23.0", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@element-plus/icons-vue": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.1.0.tgz", + "integrity": "sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA==", + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.5.0.tgz", + "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", + "dependencies": { + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.3", + "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.5.3.tgz", + "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", + "dependencies": { + "@floating-ui/core": "^1.4.2", + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.1.6", + "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.1.6.tgz", + "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" + }, + "node_modules/@intlify/core-base": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.5.0.tgz", + "integrity": "sha512-y3ufM1RJbI/DSmJf3lYs9ACq3S/iRvaSsE3rPIk0MGH7fp+JxU6rdryv/EYcwfcr3Y1aHFlCBir6S391hRZ57w==", + "dependencies": { + "@intlify/message-compiler": "9.5.0", + "@intlify/shared": "9.5.0" + }, + "engines": { + "node": ">= 16" + } + }, + "node_modules/@intlify/message-compiler": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.5.0.tgz", + "integrity": "sha512-CAhVNfEZcOVFg0/5MNyt+OFjvs4J/ARjCj2b+54/FvFP0EDJI5lIqMTSDBE7k0atMROSP0SvWCkwu/AZ5xkK1g==", + "dependencies": { + "@intlify/shared": "9.5.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 16" + } + }, + "node_modules/@intlify/shared": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/shared/-/shared-9.5.0.tgz", + "integrity": "sha512-tAxV14LMXZDZbu32XzLMTsowNlgJNmLwWHYzvMUl6L8gvQeoYiZONjY7AUsqZW8TOZDX9lfvF6adPkk9FSRdDA==", + "engines": { + "node": ">= 16" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "name": "@sxzz/popperjs-es", + "version": "2.11.7", + "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.0.5", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.0.5.tgz", + "integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@types/estree": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.2.tgz", + "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.14.199", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.199.tgz", + "integrity": "sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.9", + "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.9.tgz", + "integrity": "sha512-ZTcmhiI3NNU7dEvWLZJkzG6ao49zOIjEgIE0RgV7wbPxU0f2xT3VSAHw2gmst8swH6V0YkLRGp4qPlX/6I90MQ==", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.16", + "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.4.0.tgz", + "integrity": "sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg==", + "dev": true, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "dependencies": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "dependencies": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz", + "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" + }, + "node_modules/@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "dependencies": { + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "dependencies": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "dependencies": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "dependencies": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + }, + "peerDependencies": { + "vue": "3.3.4" + } + }, + "node_modules/@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + }, + "node_modules/@vueuse/core": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz", + "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.6", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", + "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz", + "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==" + }, + "node_modules/@vueuse/shared": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz", + "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==", + "dependencies": { + "vue-demi": "*" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.6", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", + "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/dayjs": { + "version": "1.11.10", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/element-plus": { + "version": "2.3.14", + "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.3.14.tgz", + "integrity": "sha512-9yvxUaU4jXf2ZNPdmIxoj/f8BG8CDcGM6oHa9JIqxLjQlfY4bpzR1E5CjNimnOX3rxO93w1TQ0jTVt0RSxh9kA==", + "dependencies": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.0.6", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.14.182", + "@types/lodash-es": "^4.17.6", + "@vueuse/core": "^9.1.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.3", + "escape-html": "^1.0.3", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.2", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/js-cookie": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/js-cookie/-/js-cookie-3.0.5.tgz", + "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", + "engines": { + "node": ">=14" + } + }, + "node_modules/jsencrypt": { + "version": "3.3.2", + "resolved": "https://registry.npmmirror.com/jsencrypt/-/jsencrypt-3.3.2.tgz", + "integrity": "sha512-arQR1R1ESGdAxY7ZheWr12wCaF2yF47v5qpB76TtV64H1pyGudk9Hvw8Y9tb/FiTIaaTRUyaSnm5T/Y53Ghm/A==" + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "node_modules/local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash-unified": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "peerDependencies": { + "@types/lodash-es": "*", + "lodash": "*", + "lodash-es": "*" + } + }, + "node_modules/magic-string": { + "version": "0.30.4", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz", + "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mlly": { + "version": "1.4.2", + "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz", + "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", + "dev": true, + "dependencies": { + "acorn": "^8.10.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.3.0" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==" + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/pathe": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz", + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/pkg-types": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "dev": true, + "dependencies": { + "jsonc-parser": "^3.2.0", + "mlly": "^1.2.0", + "pathe": "^1.1.0" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.6", + "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.6.tgz", + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + } + }, + "node_modules/ress": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/ress/-/ress-5.0.2.tgz", + "integrity": "sha512-oHBtOWo/Uc8SzQMbQNIKTcgi8wKmAs7IlNlRywmXudbOtF+c27FlOIq7tnwLDVcTywe6JXYo1pDXHO6kABwNYA==" + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sass": { + "version": "1.69.0", + "resolved": "https://registry.npmmirror.com/sass/-/sass-1.69.0.tgz", + "integrity": "sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/scule": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/scule/-/scule-1.0.0.tgz", + "integrity": "sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==", + "dev": true + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-literal": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz", + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "dev": true, + "dependencies": { + "acorn": "^8.10.0" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ufo": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.3.1.tgz", + "integrity": "sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==", + "dev": true + }, + "node_modules/unimport": { + "version": "3.4.0", + "resolved": "https://registry.npmmirror.com/unimport/-/unimport-3.4.0.tgz", + "integrity": "sha512-M/lfFEgufIT156QAr/jWHLUn55kEmxBBiQsMxvRSIbquwmeJEyQYgshHDEvQDWlSJrVOOTAgnJ3FvlsrpGkanA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.4", + "escape-string-regexp": "^5.0.0", + "fast-glob": "^3.3.1", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.3", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "scule": "^1.0.0", + "strip-literal": "^1.3.0", + "unplugin": "^1.5.0" + } + }, + "node_modules/unplugin": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.5.0.tgz", + "integrity": "sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==", + "dev": true, + "dependencies": { + "acorn": "^8.10.0", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.5.0" + } + }, + "node_modules/unplugin-auto-import": { + "version": "0.16.6", + "resolved": "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.16.6.tgz", + "integrity": "sha512-M+YIITkx3C/Hg38hp8HmswP5mShUUyJOzpifv7RTlAbeFlO2Tyw0pwrogSSxnipHDPTtI8VHFBpkYkNKzYSuyA==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.5", + "@rollup/pluginutils": "^5.0.2", + "fast-glob": "^3.3.0", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.1", + "minimatch": "^9.0.2", + "unimport": "^3.0.14", + "unplugin": "^1.3.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@nuxt/kit": "^3.2.2", + "@vueuse/core": "*" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + }, + "@vueuse/core": { + "optional": true + } + } + }, + "node_modules/unplugin-vue-components": { + "version": "0.25.2", + "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz", + "integrity": "sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.5", + "@rollup/pluginutils": "^5.0.2", + "chokidar": "^3.5.3", + "debug": "^4.3.4", + "fast-glob": "^3.3.0", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.1", + "minimatch": "^9.0.3", + "resolve": "^1.22.2", + "unplugin": "^1.4.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@babel/parser": "^7.15.8", + "@nuxt/kit": "^3.2.2", + "vue": "2 || 3" + }, + "peerDependenciesMeta": { + "@babel/parser": { + "optional": true + }, + "@nuxt/kit": { + "optional": true + } + } + }, + "node_modules/vite": { + "version": "4.4.11", + "resolved": "https://registry.npmmirror.com/vite/-/vite-4.4.11.tgz", + "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "dev": true, + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/vue-i18n": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.5.0.tgz", + "integrity": "sha512-NiI3Ph1qMstNf7uhYh8trQBOBFLxeJgcOxBq51pCcZ28Vs18Y7BDS58r8HGDKCYgXdLUYqPDXdKatIF4bvBVZg==", + "dependencies": { + "@intlify/core-base": "9.5.0", + "@intlify/shared": "9.5.0", + "@vue/devtools-api": "^6.5.0" + }, + "engines": { + "node": ">= 16" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/vue-router": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz", + "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==", + "dependencies": { + "@vue/devtools-api": "^6.5.0" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vuex": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/vuex/-/vuex-4.0.2.tgz", + "integrity": "sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==", + "dependencies": { + "@vue/devtools-api": "^6.0.0-beta.11" + }, + "peerDependencies": { + "vue": "^3.0.2" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.5.0", + "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==", + "dev": true + } + }, + "dependencies": { + "@antfu/utils": { + "version": "0.7.6", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.6.tgz", + "integrity": "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==", + "dev": true + }, + "@babel/parser": { + "version": "7.23.0", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" + }, + "@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==" + }, + "@element-plus/icons-vue": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.1.0.tgz", + "integrity": "sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA==", + "requires": {} + }, + "@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "dev": true, + "optional": true + }, + "@floating-ui/core": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.5.0.tgz", + "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", + "requires": { + "@floating-ui/utils": "^0.1.3" + } + }, + "@floating-ui/dom": { + "version": "1.5.3", + "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.5.3.tgz", + "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", + "requires": { + "@floating-ui/core": "^1.4.2", + "@floating-ui/utils": "^0.1.3" + } + }, + "@floating-ui/utils": { + "version": "0.1.6", + "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.1.6.tgz", + "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" + }, + "@intlify/core-base": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.5.0.tgz", + "integrity": "sha512-y3ufM1RJbI/DSmJf3lYs9ACq3S/iRvaSsE3rPIk0MGH7fp+JxU6rdryv/EYcwfcr3Y1aHFlCBir6S391hRZ57w==", + "requires": { + "@intlify/message-compiler": "9.5.0", + "@intlify/shared": "9.5.0" + } + }, + "@intlify/message-compiler": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.5.0.tgz", + "integrity": "sha512-CAhVNfEZcOVFg0/5MNyt+OFjvs4J/ARjCj2b+54/FvFP0EDJI5lIqMTSDBE7k0atMROSP0SvWCkwu/AZ5xkK1g==", + "requires": { + "@intlify/shared": "9.5.0", + "source-map-js": "^1.0.2" + } + }, + "@intlify/shared": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/@intlify/shared/-/shared-9.5.0.tgz", + "integrity": "sha512-tAxV14LMXZDZbu32XzLMTsowNlgJNmLwWHYzvMUl6L8gvQeoYiZONjY7AUsqZW8TOZDX9lfvF6adPkk9FSRdDA==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@popperjs/core": { + "version": "npm:@sxzz/popperjs-es@2.11.7", + "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==" + }, + "@rollup/pluginutils": { + "version": "5.0.5", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.0.5.tgz", + "integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + } + }, + "@types/estree": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.2.tgz", + "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", + "dev": true + }, + "@types/lodash": { + "version": "4.14.199", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.199.tgz", + "integrity": "sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==" + }, + "@types/lodash-es": { + "version": "4.17.9", + "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.9.tgz", + "integrity": "sha512-ZTcmhiI3NNU7dEvWLZJkzG6ao49zOIjEgIE0RgV7wbPxU0f2xT3VSAHw2gmst8swH6V0YkLRGp4qPlX/6I90MQ==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/web-bluetooth": { + "version": "0.0.16", + "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" + }, + "@vitejs/plugin-vue": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.4.0.tgz", + "integrity": "sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg==", + "dev": true, + "requires": {} + }, + "@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "requires": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "requires": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/devtools-api": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz", + "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" + }, + "@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "requires": { + "@vue/shared": "3.3.4" + } + }, + "@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "requires": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "requires": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "requires": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + }, + "@vueuse/core": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz", + "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==", + "requires": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.6", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", + "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "requires": {} + } + } + }, + "@vueuse/metadata": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz", + "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==" + }, + "@vueuse/shared": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz", + "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==", + "requires": { + "vue-demi": "*" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.6", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", + "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "requires": {} + } + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "dayjs": { + "version": "1.11.10", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "element-plus": { + "version": "2.3.14", + "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.3.14.tgz", + "integrity": "sha512-9yvxUaU4jXf2ZNPdmIxoj/f8BG8CDcGM6oHa9JIqxLjQlfY4bpzR1E5CjNimnOX3rxO93w1TQ0jTVt0RSxh9kA==", + "requires": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.0.6", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.14.182", + "@types/lodash-es": "^4.17.6", + "@vueuse/core": "^9.1.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.3", + "escape-html": "^1.0.3", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.2", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + } + }, + "esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "has": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "dev": true + }, + "immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "js-cookie": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/js-cookie/-/js-cookie-3.0.5.tgz", + "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==" + }, + "jsencrypt": { + "version": "3.3.2", + "resolved": "https://registry.npmmirror.com/jsencrypt/-/jsencrypt-3.3.2.tgz", + "integrity": "sha512-arQR1R1ESGdAxY7ZheWr12wCaF2yF47v5qpB76TtV64H1pyGudk9Hvw8Y9tb/FiTIaaTRUyaSnm5T/Y53Ghm/A==" + }, + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "dev": true + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash-unified": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "requires": {} + }, + "magic-string": { + "version": "0.30.4", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz", + "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "mlly": { + "version": "1.4.2", + "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz", + "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", + "dev": true, + "requires": { + "acorn": "^8.10.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.3.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "pathe": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz", + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pkg-types": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "dev": true, + "requires": { + "jsonc-parser": "^3.2.0", + "mlly": "^1.2.0", + "pathe": "^1.1.0" + } + }, + "postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "resolve": { + "version": "1.22.6", + "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.6.tgz", + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "ress": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/ress/-/ress-5.0.2.tgz", + "integrity": "sha512-oHBtOWo/Uc8SzQMbQNIKTcgi8wKmAs7IlNlRywmXudbOtF+c27FlOIq7tnwLDVcTywe6JXYo1pDXHO6kABwNYA==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "sass": { + "version": "1.69.0", + "resolved": "https://registry.npmmirror.com/sass/-/sass-1.69.0.tgz", + "integrity": "sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "scule": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/scule/-/scule-1.0.0.tgz", + "integrity": "sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==", + "dev": true + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "strip-literal": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz", + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "dev": true, + "requires": { + "acorn": "^8.10.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ufo": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.3.1.tgz", + "integrity": "sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==", + "dev": true + }, + "unimport": { + "version": "3.4.0", + "resolved": "https://registry.npmmirror.com/unimport/-/unimport-3.4.0.tgz", + "integrity": "sha512-M/lfFEgufIT156QAr/jWHLUn55kEmxBBiQsMxvRSIbquwmeJEyQYgshHDEvQDWlSJrVOOTAgnJ3FvlsrpGkanA==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^5.0.4", + "escape-string-regexp": "^5.0.0", + "fast-glob": "^3.3.1", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.3", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "scule": "^1.0.0", + "strip-literal": "^1.3.0", + "unplugin": "^1.5.0" + } + }, + "unplugin": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.5.0.tgz", + "integrity": "sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==", + "dev": true, + "requires": { + "acorn": "^8.10.0", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.5.0" + } + }, + "unplugin-auto-import": { + "version": "0.16.6", + "resolved": "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.16.6.tgz", + "integrity": "sha512-M+YIITkx3C/Hg38hp8HmswP5mShUUyJOzpifv7RTlAbeFlO2Tyw0pwrogSSxnipHDPTtI8VHFBpkYkNKzYSuyA==", + "dev": true, + "requires": { + "@antfu/utils": "^0.7.5", + "@rollup/pluginutils": "^5.0.2", + "fast-glob": "^3.3.0", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.1", + "minimatch": "^9.0.2", + "unimport": "^3.0.14", + "unplugin": "^1.3.2" + } + }, + "unplugin-vue-components": { + "version": "0.25.2", + "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz", + "integrity": "sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==", + "dev": true, + "requires": { + "@antfu/utils": "^0.7.5", + "@rollup/pluginutils": "^5.0.2", + "chokidar": "^3.5.3", + "debug": "^4.3.4", + "fast-glob": "^3.3.0", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.1", + "minimatch": "^9.0.3", + "resolve": "^1.22.2", + "unplugin": "^1.4.0" + } + }, + "vite": { + "version": "4.4.11", + "resolved": "https://registry.npmmirror.com/vite/-/vite-4.4.11.tgz", + "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "dev": true, + "requires": { + "esbuild": "^0.18.10", + "fsevents": "~2.3.2", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + } + }, + "vue": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "vue-i18n": { + "version": "9.5.0", + "resolved": "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.5.0.tgz", + "integrity": "sha512-NiI3Ph1qMstNf7uhYh8trQBOBFLxeJgcOxBq51pCcZ28Vs18Y7BDS58r8HGDKCYgXdLUYqPDXdKatIF4bvBVZg==", + "requires": { + "@intlify/core-base": "9.5.0", + "@intlify/shared": "9.5.0", + "@vue/devtools-api": "^6.5.0" + } + }, + "vue-router": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz", + "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==", + "requires": { + "@vue/devtools-api": "^6.5.0" + } + }, + "vuex": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/vuex/-/vuex-4.0.2.tgz", + "integrity": "sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==", + "requires": { + "@vue/devtools-api": "^6.0.0-beta.11" + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + }, + "webpack-virtual-modules": { + "version": "0.5.0", + "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==", + "dev": true + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000000..b55cd8fa86 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,28 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "axios": "^1.6.2", + "element-plus": "^2.3.7", + "js-cookie": "^3.0.5", + "jsencrypt": "^3.3.2", + "ress": "^5.0.2", + "vue": "^3.3.4", + "vue-i18n": "^9.3.0-beta.26", + "vue-router": "^4.2.4", + "vuex": "^4.0.2" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.3.4", + "sass": "^1.63.6", + "unplugin-auto-import": "^0.16.6", + "unplugin-vue-components": "^0.25.2", + "vite": "^4.4.9" + } +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico new file mode 100644 index 0000000000..b17f154252 Binary files /dev/null and b/frontend/public/favicon.ico differ diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000000..39001609f8 --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,6 @@ + + + + diff --git a/frontend/src/api/account.js b/frontend/src/api/account.js new file mode 100644 index 0000000000..b891becb06 --- /dev/null +++ b/frontend/src/api/account.js @@ -0,0 +1,15 @@ +import service from './index'; + +// 发送邮箱验证 +export const emailVerification = () => + service({ + method: 'post', + url: '/api/accounts/user/resend_email_verification/', + }); + +// 获取token +export const getAuthToken = () => + service({ + method: 'get', + url: '/api/accounts/user/get_auth_token', + }); diff --git a/frontend/src/api/challenge.js b/frontend/src/api/challenge.js new file mode 100644 index 0000000000..27bf5fc94d --- /dev/null +++ b/frontend/src/api/challenge.js @@ -0,0 +1,110 @@ +import service from './index'; + +// 参加比赛 +export const partChallenge = (challengeId, teamId) => + service({ + method: 'post', + url: `/api/challenges/challenge/${challengeId}/participant_team/${teamId}`, + }); + +// 取消报名 +export const deregisterChallenge = (challengeId) => + service({ + method: 'post', + url: `/api/challenges/challenge/${challengeId}/deregister/`, + }); + +// 参加比赛的团队 +export const challengeTeam = (challengeId) => + service({ + method: 'get', + url: `/api/challenges/${challengeId}/participant_team/team_detail`, + }); + +// 查询phase +export const challengePhase = (challengeId) => + service({ + method: 'get', + url: `/api/challenges/challenge/${challengeId}/challenge_phase`, + }); + +// 查询提交列表 +export const getSubmission = (challengeId, phaseId, params) => + service({ + method: 'get', + url: `/api/jobs/challenge/${challengeId}/challenge_phase/${phaseId}/submission/`, + params, + }); + +// 更新提交列表 +export const updateSubmission = (challengeId, phaseId, submisId, data) => + service({ + method: 'PATCH', + url: `/api/jobs/challenge/${challengeId}/challenge_phase/${phaseId}/submission/${submisId}`, + data, + }); + +// 获取赛道 +export const getPhaseSplit = (challengeId) => + service({ + method: 'get', + url: `/api/challenges/${challengeId}/challenge_phase_split`, + }); + +// 获取排行榜 +export const getLeaderboard = (splitId, params) => + service({ + method: 'get', + url: `/api/jobs/challenge_phase_split/${splitId}/leaderboard/`, + params, + }); + +// 获取所有团队 +export const getParticipantTeams = (challengeId) => + service({ + method: 'get', + url: `/api/challenges/challenge/${challengeId}/get_participant_teams/`, + }); + +// 查询比赛详情 +export const getChallengeDetail = (challengeId) => + service({ + method: 'get', + url: `/api/challenges/challenge/${challengeId}/`, + }); + +// 查询用户的比赛权限 +export const getChallengeUser = (challengeId) => + service({ + method: 'get', + url: `/api/participants/participant_teams/challenges/${challengeId}/user`, + }); + +// 团队审核通过 +export const approveTeam = (challengeId, teamId) => + service({ + method: 'post', + url: `/api/challenges/challenge/${challengeId}/approve_participant_team/${teamId}`, + }); + +// 团队审核不通过 +export const disapproveTeam = (challengeId, teamId) => + service({ + method: 'post', + url: `/api/challenges/challenge/${challengeId}/disapprove_participant_team/${teamId}`, + }); + +// 查询某个阶段的所有提交 +export const getAllSubmissions = (challengeId, phaseId) => + service({ + method: 'get', + url: `/api/challenges/${challengeId}/challenge_phase/${phaseId}/submissions`, + }); + +// 取消正在执行的任务 +export const updateSubmissionMeta = (challengeId, submissionId, data) => + service({ + method: 'patch', + url: `/api/jobs/challenges/${challengeId}/submissions/${submissionId}/update_submission_meta/`, + data, + }); diff --git a/frontend/src/api/index.js b/frontend/src/api/index.js new file mode 100644 index 0000000000..31bb727ebf --- /dev/null +++ b/frontend/src/api/index.js @@ -0,0 +1,167 @@ +import axios from 'axios'; +import { ElNotification, ElMessageBox, ElMessage, ElLoading } from 'element-plus'; +import errorCode, { getErrMsg } from '@/utils/errorCode'; +import { blobValidate } from '@/utils/tool'; +import store from '../store'; +import router from '../router'; +import i18n from '@/lang/index.js'; + +let downloadLoadingInstance; +// 是否显示重新登录 +export let isRelogin = { show: false }; + +axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'; +// 创建axios实例 +const service = axios.create({ + // axios中请求配置有baseURL选项,表示请求URL公共部分 + baseURL: import.meta.env.VITE_APP_BASE_API, + // 超时 + timeout: 10000, +}); + +// request拦截器 +service.interceptors.request.use( + (config) => { + // 是否需要设置 token + const isToken = (config.headers || {}).isToken === false; + if (store.state.token && !isToken) { + config.headers['Authorization'] = 'Token ' + store.state.token; // 让每个请求携带自定义token 请根据实际情况自行修改 + } + return config; + }, + (error) => { + console.log(error); + Promise.reject(error); + } +); + +// 响应拦截器 +service.interceptors.response.use( + (res) => { + // 未设置状态码则默认成功状态 + const code = res.data.code || 200; + // 获取错误信息 + const msg = errorCode[code] || res.data.msg || errorCode['default']; + // 二进制数据则直接返回 + if (res.request.responseType === 'blob' || res.request.responseType === 'arraybuffer') { + return res.data; + } + if (code === 401) { + if (!isRelogin.show) { + isRelogin.show = true; + ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { + confirmButtonText: '重新登录', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + isRelogin.show = false; + store.dispatch('logOut').then(() => { + location.href = '/'; + }); + }) + .catch(() => { + isRelogin.show = false; + }); + } + return Promise.reject('无效的会话,或者会话已过期,请重新登录。'); + } else if (code === 500) { + ElMessage({ message: msg, type: 'error' }); + return Promise.reject(new Error(msg)); + } else if (code === 601) { + ElMessage({ message: msg, type: 'warning' }); + return Promise.reject(new Error(msg)); + } else if (code !== 200) { + ElNotification.error({ title: msg }); + return Promise.reject('error'); + } else { + return Promise.resolve(res.data); + } + }, + (error) => { + let { message, response } = error; + let isShowMessage = true; + if (message == 'Network Error') { + message = i18n.global.t('interfaceException'); + } else if (message.includes('timeout')) { + message = i18n.global.t('interfaceTimeout'); + } else if (response.status == 400 && response.data?.password1?.length > 0) { + message = getErrMsg(response.data.password1[0]); + } else if (response.status == 400 && response.data?.username?.length > 0) { + message = getErrMsg(response.data.username[0]); + } else if (response.status == 400 && response.data?.email?.length > 0) { + message = getErrMsg(response.data.email[0]); + } else if (response.status == 400 && response.data?.non_field_errors?.length > 0) { + // 登录报错 + message = getErrMsg(response.data.non_field_errors[0]); + } else if (response.status == 400 && response.data?.old_password?.length > 0) { + message = getErrMsg(response.data.old_password[0]); + } else if (response.status == 400 && response.data?.new_password2?.length > 0) { + message = getErrMsg(response.data.new_password2[0]); + } else if (response.status == 400 && response.data?.github_url?.length > 0) { + message = getErrMsg(response.data.github_url[0]); + } else if (response.status == 400 && response.data === 'team_name') { + message = getErrMsg('The team name has already be used!'); + } else if (response.status == 400 && response.data?.team_name?.length > 0) { + message = getErrMsg(response.data.team_name[0]); + } else if (response.status == 400 && response.data?.token?.length > 0) { + message = getErrMsg(response.data.token[0]); + } else if (response.status == 400 && response.data?.details) { + message = getErrMsg(response.data.details); + } else if (response.status == 400 && response.data?.error) { + message = getErrMsg(response.data.error); + } else if (response.status == 401 && response.data?.error) { + message = getErrMsg(response.data.error); + } else if (response.status == 401 && response.data?.detail) { + message = getErrMsg(response.data.detail); + } else if (response.status == 403 && response.data?.detail == 'Please verify your email!') { + isShowMessage = false; + router.push('/permissionDenied'); + } else if (response.status == 403 && response.data?.error) { + message = getErrMsg(response.data.error); + } else if (response.status == 406 && response.data?.error === 'You are not a participant!') { + isShowMessage = false; + } else if (response.status == 406 && response.data?.error) { + message = getErrMsg(response.data.error); + } else if (response.status == 429 && response.data?.detail) { + message = getErrMsg(response.data.detail); + } else if (message.includes('Request failed with status code')) { + message = i18n.global.t('systemInterface') + ' ' + message.substr(message.length - 3) + ' ' + i18n.global.t('exception'); + } + if (isShowMessage) { + ElMessage({ message: message, type: 'error', duration: 5 * 1000 }); + } + return Promise.reject(error); + } +); + +// 通用下载方法 +export function download(url, params, filename, config) { + downloadLoadingInstance = ElLoading.service({ text: '正在下载数据,请稍候', background: 'rgba(0, 0, 0, 0.7)' }); + return service + .post(url, params, { + headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, + responseType: 'blob', + ...config, + }) + .then(async (data) => { + const isBlob = blobValidate(data); + if (isBlob) { + const blob = new Blob([data]); + // saveAs(blob, filename); + } else { + const resText = await data.text(); + const rspObj = JSON.parse(resText); + const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']; + ElMessage.error(errMsg); + } + downloadLoadingInstance.close(); + }) + .catch((r) => { + console.error(r); + ElMessage.error('下载文件出现错误,请联系管理员!'); + downloadLoadingInstance.close(); + }); +} + +export default service; diff --git a/frontend/src/api/team.js b/frontend/src/api/team.js new file mode 100644 index 0000000000..a273b8f22b --- /dev/null +++ b/frontend/src/api/team.js @@ -0,0 +1,40 @@ +import service from './index'; + +// 创建team +export const createTeam = (data) => + service({ + method: 'post', + url: '/api/participants/participant_team', + data, + }); + +// 查询team +export const getTeam = (params) => + service({ + method: 'get', + url: '/api/participants/participant_team', + params, + }); + +// 更新team +export const updateTeam = (id, data) => + service({ + method: 'PATCH', + url: `/api/participants/participant_team/${id}`, + data, + }); + +// 从队伍中移除自己 +export const removeSelf = (id) => + service({ + method: 'delete', + url: `/api/participants/remove_self_from_participant_team/${id}`, + }); + +// 邀请成员 +export const inviteMember = (id, data) => + service({ + method: 'post', + url: `/api/participants/participant_team/${id}/invite`, + data, + }); diff --git a/frontend/src/api/user.js b/frontend/src/api/user.js new file mode 100644 index 0000000000..d511f9935d --- /dev/null +++ b/frontend/src/api/user.js @@ -0,0 +1,66 @@ +import service from './index'; + +// 用户信息 +export const getUser = () => + service({ + method: 'get', + url: '/api/auth/user/', + }); + +// 更改用户信息 +export const updateUser = (data) => + service({ + method: 'PUT', + url: '/api/auth/user/', + data, + }); + +// 登录 +export const login = (data) => + service({ + method: 'post', + url: '/api/auth/login/', + data, + }); + +// 注册 +export const register = (data) => + service({ + method: 'post', + url: '/api/auth/registration/', + data, + }); + +// 退出登录 +export const logout = () => + service({ + method: 'post', + url: '/api/auth/logout/', + }); + +// 密码重置 +export const passwReset = (data) => + service({ + method: 'post', + url: '/api/auth/password/reset/', + data, + }); + +// 重置密码 +export const resetConfirm = (data) => + service({ + method: 'post', + url: '/api/auth/password/reset/confirm/', + headers: { + isToken: false, + }, + data, + }); + +// 更改密码 +export const updatePassword = (data) => + service({ + method: 'post', + url: '/api/auth/password/change/', + data, + }); diff --git a/frontend/src/assets/iconfont/iconfont.css b/frontend/src/assets/iconfont/iconfont.css new file mode 100644 index 0000000000..6337737e6a --- /dev/null +++ b/frontend/src/assets/iconfont/iconfont.css @@ -0,0 +1,112 @@ +@font-face { + font-family: "iconfont"; /* Project id 4279683 */ + src: url('iconfont.woff2?t=1700037855963') format('woff2'), + url('iconfont.woff?t=1700037855963') format('woff'), + url('iconfont.ttf?t=1700037855963') format('truetype'), + url('iconfont.svg?t=1700037855963#iconfont') format('svg'); +} + +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-Cancel:before { + content: "\e6e4"; +} + +.icon-copy:before { + content: "\e6e5"; +} + +.icon-load:before { + content: "\e6e6"; +} + +.icon-email:before { + content: "\e6cf"; +} + +.icon-Camera:before { + content: "\e6d0"; +} + +.icon-jiantou:before { + content: "\e6cb"; +} + +.icon-bianji:before { + content: "\e6ca"; +} + +.icon-message:before { + content: "\e6c9"; +} + +.icon-chuangjian:before { + content: "\e6c6"; +} + +.icon-Challenge:before { + content: "\e6c3"; +} + +.icon-Team:before { + content: "\e6c4"; +} + +.icon-Back:before { + content: "\e6c5"; +} + +.icon-yaoqing:before { + content: "\e6c7"; +} + +.icon-lishixiaoxi:before { + content: "\e6c8"; +} + +.icon-a-Logout:before { + content: "\e6c0"; +} + +.icon-yuyan1:before { + content: "\e6c1"; +} + +.icon-Profile:before { + content: "\e6c2"; +} + +.icon-xianshi:before { + content: "\e6be"; +} + +.icon-yincang:before { + content: "\e6b9"; +} + +.icon-qingchu:before { + content: "\e6bf"; +} + +.icon-chenggong:before { + content: "\e6bd"; +} + +.icon-shibai:before { + content: "\e6ba"; +} + +.icon-yuyan:before { + content: "\e6bb"; +} + +.icon-xuanzhe:before { + content: "\e6bc"; +} + diff --git a/frontend/src/assets/iconfont/iconfont.js b/frontend/src/assets/iconfont/iconfont.js new file mode 100644 index 0000000000..b6909b91d0 --- /dev/null +++ b/frontend/src/assets/iconfont/iconfont.js @@ -0,0 +1 @@ +window._iconfont_svg_string_4279683='',function(c){var a=(a=document.getElementsByTagName("script"))[a.length-1],t=a.getAttribute("data-injectcss"),a=a.getAttribute("data-disable-injectsvg");if(!a){var o,l,h,i,e,n=function(a,t){t.parentNode.insertBefore(a,t)};if(t&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(a){console&&console.log(a)}}o=function(){var a,t=document.createElement("div");t.innerHTML=c._iconfont_svg_string_4279683,(t=t.getElementsByTagName("svg")[0])&&(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",t=t,(a=document.body).firstChild?n(t,a.firstChild):a.appendChild(t))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(o,0):(l=function(){document.removeEventListener("DOMContentLoaded",l,!1),o()},document.addEventListener("DOMContentLoaded",l,!1)):document.attachEvent&&(h=o,i=c.document,e=!1,s(),i.onreadystatechange=function(){"complete"==i.readyState&&(i.onreadystatechange=null,m())})}function m(){e||(e=!0,h())}function s(){try{i.documentElement.doScroll("left")}catch(a){return void setTimeout(s,50)}m()}}(window); \ No newline at end of file diff --git a/frontend/src/assets/iconfont/iconfont.json b/frontend/src/assets/iconfont/iconfont.json new file mode 100644 index 0000000000..787c36120a --- /dev/null +++ b/frontend/src/assets/iconfont/iconfont.json @@ -0,0 +1,177 @@ +{ + "id": "4279683", + "name": "leaderboard", + "font_family": "iconfont", + "css_prefix_text": "icon-", + "description": "", + "glyphs": [ + { + "icon_id": "38119492", + "name": "Cancel", + "font_class": "Cancel", + "unicode": "e6e4", + "unicode_decimal": 59108 + }, + { + "icon_id": "38119491", + "name": "copy", + "font_class": "copy", + "unicode": "e6e5", + "unicode_decimal": 59109 + }, + { + "icon_id": "38119490", + "name": "load", + "font_class": "load", + "unicode": "e6e6", + "unicode_decimal": 59110 + }, + { + "icon_id": "37999048", + "name": "email", + "font_class": "email", + "unicode": "e6cf", + "unicode_decimal": 59087 + }, + { + "icon_id": "37999047", + "name": "Camera", + "font_class": "Camera", + "unicode": "e6d0", + "unicode_decimal": 59088 + }, + { + "icon_id": "37892034", + "name": "jiantou", + "font_class": "jiantou", + "unicode": "e6cb", + "unicode_decimal": 59083 + }, + { + "icon_id": "37891594", + "name": "bianji", + "font_class": "bianji", + "unicode": "e6ca", + "unicode_decimal": 59082 + }, + { + "icon_id": "37844292", + "name": "message", + "font_class": "message", + "unicode": "e6c9", + "unicode_decimal": 59081 + }, + { + "icon_id": "37843406", + "name": "chuangjian", + "font_class": "chuangjian", + "unicode": "e6c6", + "unicode_decimal": 59078 + }, + { + "icon_id": "37843370", + "name": "Challenge", + "font_class": "Challenge", + "unicode": "e6c3", + "unicode_decimal": 59075 + }, + { + "icon_id": "37843369", + "name": "Team", + "font_class": "Team", + "unicode": "e6c4", + "unicode_decimal": 59076 + }, + { + "icon_id": "37843367", + "name": "Back", + "font_class": "Back", + "unicode": "e6c5", + "unicode_decimal": 59077 + }, + { + "icon_id": "37843366", + "name": "yaoqing", + "font_class": "yaoqing", + "unicode": "e6c7", + "unicode_decimal": 59079 + }, + { + "icon_id": "37843365", + "name": "lishixiaoxi", + "font_class": "lishixiaoxi", + "unicode": "e6c8", + "unicode_decimal": 59080 + }, + { + "icon_id": "37843305", + "name": "Log out", + "font_class": "a-Logout", + "unicode": "e6c0", + "unicode_decimal": 59072 + }, + { + "icon_id": "37843303", + "name": "yuyan", + "font_class": "yuyan1", + "unicode": "e6c1", + "unicode_decimal": 59073 + }, + { + "icon_id": "37843304", + "name": "Profile", + "font_class": "Profile", + "unicode": "e6c2", + "unicode_decimal": 59074 + }, + { + "icon_id": "37620085", + "name": "xianshi", + "font_class": "xianshi", + "unicode": "e6be", + "unicode_decimal": 59070 + }, + { + "icon_id": "37617859", + "name": "yincang", + "font_class": "yincang", + "unicode": "e6b9", + "unicode_decimal": 59065 + }, + { + "icon_id": "37617857", + "name": "qingchu", + "font_class": "qingchu", + "unicode": "e6bf", + "unicode_decimal": 59071 + }, + { + "icon_id": "37617663", + "name": "chenggong", + "font_class": "chenggong", + "unicode": "e6bd", + "unicode_decimal": 59069 + }, + { + "icon_id": "37617666", + "name": "shibai", + "font_class": "shibai", + "unicode": "e6ba", + "unicode_decimal": 59066 + }, + { + "icon_id": "37617665", + "name": "yuyan", + "font_class": "yuyan", + "unicode": "e6bb", + "unicode_decimal": 59067 + }, + { + "icon_id": "37617664", + "name": "xuanzhe", + "font_class": "xuanzhe", + "unicode": "e6bc", + "unicode_decimal": 59068 + } + ] +} diff --git a/frontend/src/assets/iconfont/iconfont.svg b/frontend/src/assets/iconfont/iconfont.svg new file mode 100644 index 0000000000..0ef1b427fe --- /dev/null +++ b/frontend/src/assets/iconfont/iconfont.svg @@ -0,0 +1,67 @@ + + + + Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/src/assets/iconfont/iconfont.ttf b/frontend/src/assets/iconfont/iconfont.ttf new file mode 100644 index 0000000000..5e0f4802da Binary files /dev/null and b/frontend/src/assets/iconfont/iconfont.ttf differ diff --git a/frontend/src/assets/iconfont/iconfont.woff b/frontend/src/assets/iconfont/iconfont.woff new file mode 100644 index 0000000000..720ca55602 Binary files /dev/null and b/frontend/src/assets/iconfont/iconfont.woff differ diff --git a/frontend/src/assets/iconfont/iconfont.woff2 b/frontend/src/assets/iconfont/iconfont.woff2 new file mode 100644 index 0000000000..de1f1c0e56 Binary files /dev/null and b/frontend/src/assets/iconfont/iconfont.woff2 differ diff --git a/frontend/src/assets/images/avatar.png b/frontend/src/assets/images/avatar.png new file mode 100644 index 0000000000..e16488e453 Binary files /dev/null and b/frontend/src/assets/images/avatar.png differ diff --git a/frontend/src/assets/images/banner.png b/frontend/src/assets/images/banner.png new file mode 100644 index 0000000000..2d7ae3538a Binary files /dev/null and b/frontend/src/assets/images/banner.png differ diff --git a/frontend/src/assets/images/fixPop_bg.png b/frontend/src/assets/images/fixPop_bg.png new file mode 100644 index 0000000000..fb4ff12abe Binary files /dev/null and b/frontend/src/assets/images/fixPop_bg.png differ diff --git a/frontend/src/assets/images/login_bg.png b/frontend/src/assets/images/login_bg.png new file mode 100644 index 0000000000..91c471f260 Binary files /dev/null and b/frontend/src/assets/images/login_bg.png differ diff --git a/frontend/src/assets/images/logo.png b/frontend/src/assets/images/logo.png new file mode 100644 index 0000000000..af5ede612b Binary files /dev/null and b/frontend/src/assets/images/logo.png differ diff --git a/frontend/src/assets/images/no_data.png b/frontend/src/assets/images/no_data.png new file mode 100644 index 0000000000..c94d844dbd Binary files /dev/null and b/frontend/src/assets/images/no_data.png differ diff --git a/frontend/src/assets/images/race.png b/frontend/src/assets/images/race.png new file mode 100644 index 0000000000..ef3255fae5 Binary files /dev/null and b/frontend/src/assets/images/race.png differ diff --git a/frontend/src/components/Breadcrumb.vue b/frontend/src/components/Breadcrumb.vue new file mode 100644 index 0000000000..6ef650e643 --- /dev/null +++ b/frontend/src/components/Breadcrumb.vue @@ -0,0 +1,41 @@ + + + + diff --git a/frontend/src/components/LangSelect.vue b/frontend/src/components/LangSelect.vue new file mode 100644 index 0000000000..cab4f137a8 --- /dev/null +++ b/frontend/src/components/LangSelect.vue @@ -0,0 +1,40 @@ + + + diff --git a/frontend/src/components/TopNav.vue b/frontend/src/components/TopNav.vue new file mode 100644 index 0000000000..afa5a3f147 --- /dev/null +++ b/frontend/src/components/TopNav.vue @@ -0,0 +1,121 @@ + + + + diff --git a/frontend/src/css/core/grad-base.scss b/frontend/src/css/core/grad-base.scss deleted file mode 100644 index 692b8922b6..0000000000 --- a/frontend/src/css/core/grad-base.scss +++ /dev/null @@ -1,90 +0,0 @@ -/*grad button style*/ - -.grad-btn { - border-radius: 20px; -} - -.grad-btn-dark { - background: $med-gray; - font-weight: $rob-reg; - color: #fff; - box-shadow: 0px 4px 8px #9d9d9d; - &:hover { - box-shadow: 0px 0px 8px #9d9d9d; - } -} - -.grad-btn-light { - background: $highlight; - font-weight: $rob-reg; - color: #fff; - box-shadow: 0px 4px 8px #9d9d9d; - &:hover { - box-shadow: 0px 0px 8px #9d9d9d; - background: $highlight; - } -} - -.grad-btn-transparent { - background-color: rgba(0,0,0,0); - font-weight: $rob-reg; - color: $med-gray; - border: 1px solid $med-gray; - box-shadow: 0px 4px 8px transparent; - &:hover { - box-shadow: 0px 0px 8px #9d9d9d; - background: $med-gray; - color: #fff; - } -} - - -/*font styles*/ - -.fs-14 { - font-size: 14px; -} - -.fs-15 { - font-size: 15px; -} -/*bg color*/ - -.white-bg { - background-color: #fff; -} - -.view-container { - min-height: 100vh; -} - -.grad-container { - max-width: 1400px; - margin: 0 auto; - padding: 60px 100px 40px 100px; - clear: both; -} - -.rm-grad-pad { - padding: 30px 100px 30px 100px; -} - -.grad-span { - display: inline; -} - - -/*media queries*/ - -@media screen and (max-width: $med-screen) { - .grad-container { - padding:40px; - } -} - - -@media screen and (max-width: $small-screen) { - .grad-container { - text-align: center; - } -} diff --git a/frontend/src/css/main.scss b/frontend/src/css/main.scss deleted file mode 100644 index c80e83bdd5..0000000000 --- a/frontend/src/css/main.scss +++ /dev/null @@ -1,41 +0,0 @@ -/*variable file*/ - -@import "modules/variables.scss"; - -/*base style files*/ - -@import "modules/base.scss"; - -/*core files*/ - -@import "modules/landing.scss"; -@import "modules/analytics.scss"; -@import "modules/auth.scss"; -@import "modules/error_404.scss"; -@import "modules/error_500.scss"; -@import "modules/dyn_header_dropdown.scss"; -@import "modules/header.scss"; -@import "modules/sidebar.scss"; -@import "modules/footer.scss"; -@import "modules/about-us.scss"; -@import "modules/notification.scss"; - -/*web files*/ - -@import "modules/dashboard.scss"; -@import "modules/approval-team.scss"; -@import "modules/web.scss"; -@import "modules/teams.scss"; -@import "modules/challenge.scss"; -@import "modules/submission.scss"; -@import "modules/challenge-create.scss"; -@import "modules/my-challenge-all-submission.scss"; -@import "modules/profile.scss"; -@import "modules/edit-challenge.scss"; -@import "modules/leaderboard.scss"; -@import "modules/challenge-invitation.scss"; - -/*new css files*/ - -@import "core/grad-base.scss"; -@import "modules/main-header.scss"; diff --git a/frontend/src/css/modules/about-us.scss b/frontend/src/css/modules/about-us.scss deleted file mode 100644 index 41eda6123f..0000000000 --- a/frontend/src/css/modules/about-us.scss +++ /dev/null @@ -1,5 +0,0 @@ -/* about-us styles */ - -.ev-about-us { - margin-top: 50px; -} diff --git a/frontend/src/css/modules/analytics.scss b/frontend/src/css/modules/analytics.scss deleted file mode 100644 index 776b186bcb..0000000000 --- a/frontend/src/css/modules/analytics.scss +++ /dev/null @@ -1,38 +0,0 @@ -li.analytics-list { - margin-top: 25px; -} - -.analytics-challenge-title { - margin-bottom: 20px; -} - -.analytics-team-input { - input[type="radio"].selectTeam + label { - padding-left: 0px; - width: 100%; - } -} - -.show-analytics-btn { - margin-top: 30px; -} - -h4.analytics-details-head { - margin-top: 2px; -} - -.analytics-image { - img { - width: 100%; - } -} - -.analytics-card-content { - h3 { - margin-bottom: 2px; - } -} - -.analytics-phases-card { - margin-top: 10px; -} diff --git a/frontend/src/css/modules/approval-team.scss b/frontend/src/css/modules/approval-team.scss deleted file mode 100644 index d35d68fffa..0000000000 --- a/frontend/src/css/modules/approval-team.scss +++ /dev/null @@ -1,55 +0,0 @@ -/* Styles for View all submissions page */ - -.approval-table { - width: 100%; -} - -.approval-table-scroll { - overflow-x: scroll; -} - -.exist-team-card { - ul { - &.collapsible { - border: 0; - box-shadow: none; - li { - box-shadow: 0 0 5px #e0e0e0; - } - } - li { - margin: 20px 0px; - min-height: 40px; - .collapsible-header { - border-bottom: 0; - line-height: initial; - min-height: initial; - padding: 10px 5px; - i { - display: inline-block; - float: none; - font-size: initial; - line-height: 40px; - margin-right: 0; - text-align: center; - width: 2rem; - } - } - .collapsible-body { - background-color: #fafafa; - border-top: 1px solid #e0e0e0; - padding: 10px 40px; - p { - padding: 3px 0; - } - } - } - } - i.list-icon { - line-height: 25px; - } -} - -.approval-button { - padding: 10px; -} diff --git a/frontend/src/css/modules/auth.scss b/frontend/src/css/modules/auth.scss deleted file mode 100644 index 986310179d..0000000000 --- a/frontend/src/css/modules/auth.scss +++ /dev/null @@ -1,230 +0,0 @@ -a.active-auth { - color: $dark-black; -} - -.auth-light-link { - &:hover { - color: $highlight; - } -} - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} - -.fg-pass { - font-size: 0.8em; -} - -.auth-container { - transition: all 0.2s ease-in-out; -} - -.wrn-msg { - font-size: 0.8em; -} - -.reg-control { - margin-top: 15px; -} - -.auth-home { - padding-top: 0px; - margin-top: 5px; -} - -img.auth-logo { - width:90px; -} - -.graphic-cont, -.auth-cont { - display: inline-block; - padding: 40px; - padding-top: 10vh; - width: 70%; - background: #fff; - float: left; - min-height: 100vh; - overflow: hidden; - position: relative; - - input { - margin-bottom: 0px; - } - - .input-field { - height: 72px; - max-height: 72px; - } -} - -.graphic-cont { - background: $dark-gray; - /* For browsers that do not support gradients */ - background: -webkit-linear-gradient($dark-gray, $grad-sec-gray); - /* For Safari 5.1 to 6.0 */ - background: -o-linear-gradient($dark-gray, $grad-sec-gray); - /* For Opera 11.1 to 12.0 */ - background: -moz-linear-gradient($dark-gray, $grad-sec-gray); - /* For Firefox 3.6 to 15 */ - background: linear-gradient($dark-gray, $grad-sec-gray); - /* Standard syntax */ - width: 30%; -} - -.auth-cloud-cont { - position: absolute; - bottom: 0; - height: 30%; - width: 100%; - left: 0; - - img { - width: 120%; - position: absolute; - bottom: 0; - } -} - -.social-auth-group { - margin-top:20px; -} - -.moon { - width: 80px; - position: absolute; - top: 10px; - left: 10px; - - img { - width: 100%; - } - - animation: plane 50s linear infinite; -} - -@keyframes plane { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -.sun { - width: 200px; - position: absolute; - bottom: 15%; - right: -45px; - - img { - width: 100%; - } - - animation: sun 70s linear infinite; -} - -@keyframes sun { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -.star-img { - width: 100%; - position: absolute; - top: 0; - left: 0; -} - -.star1 { - animation: starone 2s alternate linear infinite; -} - -.star2 { - animation: startwo 3s alternate linear infinite; -} - -@keyframes starone { - 0% { - opacity: 1; - } - 50% { - opacity: 0.5; - } - 75% { - opacity: 0.8; - } - 100% { - opacity: 0.2; - } -} - -@keyframes startwo { - 0% { - opacity: 0.7; - } - 50% { - opacity: 0.2; - } - 75% { - opacity: 0.8; - } - 100% { - opacity: 1; - } -} - -.ufo { - width: 120px; - position: absolute; - - img { - width: 100%; - } - - animation: spaceman 14s alternate linear infinite; -} - -@keyframes spaceman { - 0% { - transform: rotate(0deg); - top: 10%; - left: 10%; - } - 50% { - transform: rotate(15deg); - top: 60%; - left: 20%; - } - 75% { - transform: rotate(-10deg); - top: 40%; - left: 60%; - } - 100% { - transform: rotate(0deg); - top: 20%; - left: 20%; - } -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .graphic-cont { - position: absolute; - width: 100%; - opacity: 0.4; - } - .auth-cont { - width: 100%; - background-color: rgba(255,255,255,0.9); - } -} diff --git a/frontend/src/css/modules/base.scss b/frontend/src/css/modules/base.scss deleted file mode 100644 index 85ce19d0bd..0000000000 --- a/frontend/src/css/modules/base.scss +++ /dev/null @@ -1,1044 +0,0 @@ -/*ng cloak default styling*/ - -[ng\:cloak], -[ng-cloak], -[data-ng-cloak], -[x-ng-cloak], -.ng-cloak, -.x-ng-cloak { - display: none !important; -} - -.display-large { - display: block; -} - -.display-small { - display: none; -} - -/* autofill transparent */ - -input:-webkit-autofill, -input:-webkit-autofill:hover, -input:-webkit-autofill:focus, -input:-webkit-autofill:active { - transition: background-color 5000s ease-in-out 0s; - -webkit-text-fill-color: #FFFFFF !important; -} - -input.dark-autofill:-webkit-autofill, -input.dark-autofill:-webkit-autofill:hover, -input.dark-autofill:-webkit-autofill:focus, -input.dark-autofill:-webkit-autofill:active { - transition: background-color 5000s ease-in-out 0s; - -webkit-text-fill-color: #4d4d4d !important; -} - -input[type="radio"].selectTeam+label { - font-size: 15px; - color: $med-black; - vertical-align: middle; -} - -[type="radio"]:checked+label:after, -[type="radio"].with-gap:checked+label:after { - background-color: #252833; -} - -[type="radio"]:checked+label:after, -[type="radio"].with-gap:checked+label:before, -[type="radio"].with-gap:checked+label:after { - border: 2px solid #252833; -} - -body, -html { - font-family: 'Roboto'; -} - -a { - color: $med-gray; -} - -p.no-top-para { - margin-top: 2px; -} - - -/*scrollbar customization*/ - -::-webkit-scrollbar { - width: 4px; - border-radius: 10px; - height: 5px; -} - -::-webkit-scrollbar-track-piece { - background-color: $dark-gray; - border-radius: 10px; -} - -::-webkit-scrollbar-thumb:horizontal { - background-color: $light-gray; - border-radius: 10px; -} - -::-webkit-scrollbar-thumb:vertical { - background-color: $light-gray; - border-radius: 10px; -} -.fs-10 { - font-size: 12px; -} - -.fs-12 { - font-size: 12px; -} - -.fs-14 { - font-size: 14px; -} - -.fs-16 { - font-size: 16px; -} - -.fs-18 { - font-size: 18px; -} - -.fs-20 { - font-size: 20px; -} - -.pointer { - cursor: pointer; -} - -.rm-row-bot { - margin-bottom: 0px; -} - -/*inline list*/ - -ul.inline-list { - li { - display: inline-block; - margin-right: 20px; - } -} - -.trix-container ul:not(.browser-default) li { - list-style-type: disc; -} - -.editor ul:not(.browser-default) li { - list-style-type: disc; -} - -trix-editor ul li { - margin-left: 6%; -} - -.trix-container ul li { - margin-left: 4%; -} - -span.inline { - p { - display: inline; - } -} - -/*clearfix*/ - -.clearfix { - clear: both; - content: ''; -} - -/*position default*/ - -.ev-fixed { - position: fixed; -} - -.ev-absolute { - position: absolute; -} - - - -/*margin for column*/ - -.ev-mt-50 { - margin-top: 50px; -} - -/*bg color*/ - -.ev-dark-bg { - background-color: $dark-gray; -} - -.ev-dust-bg { - background-color: $dust-gray; -} - -.ev-light-bg { - background-color: $light-gray; -} - -.ev-black-bg { - /*background-color: $grad-black;*/ -} - -.ev-super-light-bg { - background-color: $grad-super-light; -} - -/*main intro page*/ - -.ev-md-container { - padding: 40px; -} - -.ev-sm-container { - padding: 10px 20px; -} - -.ev-big-container { - padding: 30px 60px; -} - -.padding-lr-header { - padding: 0px 100px; -} - -.padding-sm-lr-header { - padding: 0px 40px; -} - -a.active { - color: $link-hover-dark; - background-color: rgba(0, 0, 0, 0.1); -} - -.ev-btn-dark:focus { - background-color: $dark-gray !important; -} - -nav { - ul { - li { - a { - transition: all 0.2s ease-in-out; - - &:hover { - background-color: rgba(0, 0, 0, 0); - } - } - } - } -} - -.ev-container { - width: 100%; - padding: 20px 40px; - position: relative; - color: #fff; -} - -.w-200 { - font-weight: 200; -} - -.w-300 { - font-weight: 300; -} - -.w-400 { - font-weight: 400; -} - -.w-500 { - font-weight: 500; -} - -.w-600 { - font-weight: 600; -} - -.text-highlight { - color: $link-hover-dark; -} - -.text-white { - color: #fff; -} - -.text-light-black { - color: $light-black; -} - -.text-med-black { - color: $med-black; -} - -.text-dark-black { - color: $dark-black; -} - -.text-light-gray { - color: $light-gray; -} - -.text-med-gray { - color: #3c3e49; -} - -.text-dark-gray { - color: #252833; -} - -.text-highlight { - color: $highlight; -} - -.ev-btn-scroll { - background: #252833; - border-radius: 50%; - position: fixed; - font-size: 14px; - color: white; - height: 40px; - width: 40px; - text-align: center; - padding: 10px; - z-index: 20; - left: 96%; - cursor: pointer; - box-shadow: 0px 4px 8px #9d9d9d; -} - -.ev-btn-scroll:hover { - box-shadow: 0px 0px 8px #9d9d9d; - background: #3c3e49; -} - -.ev-btn-dark { - background: $dark-gray; -} - -.ev-btn-approval { - padding: 0px; - width: 100%; - background: $dark-gray; -} - -.ev-btn-light { - background: #ffffff; -} - -.ev-btn-dark:hover { - background: $med-gray; -} - -.ev-btn-light:hover { - background: $light-gray; -} - -/*card styles*/ - -.ev-card-panel { - position: relative; - display: block; - background-color: #fff; - width: 100%; - height: auto; - border-radius: 4px; - overflow: hidden; - box-shadow: 0px 0px 12px $shadow-black; -} - -.ev-logs-card{ - height: 600px; - padding: 15px; - color: white; - position: relative; - display: block; - background-color: #262626; - width: 100%; - border-radius: 4px; - overflow-y: scroll; - box-shadow: 0px 0px 12px $shadow-black; -} - -.ev-logs{ - font-family: 'Courier'; - font-weight: bold; - padding: 5px; -} - -.ev-card-content { - padding: 10px; -} - -.ev-card-body { - padding: 10px 30px; -} - -.ev-panel-title { - border-bottom: 1px solid $border-color-light; -} - -.ev-card-image { - background: $dark-gray; - height: 150px; - overflow: hidden; -} - -.ev-card-image { - img.bg-img { - opacity: 0.8; - } -} - -.ev-card-title { - top: 10px; - left: 0px; - position: absolute; - font-size: 14px; - background-color: rgba(23, 24, 29, 0.7); - /* height: 55px; */ - display: inline; - padding: 10px 20px; - border-radius: 0px 2px 2px 0px; - color: #fff; - - span>img { - width: auto !important; - height: 20px; - vertical-align: middle; - float: left; - margin-right: 5px; - } -} - -.ev-card-hover:hover { - box-shadow: 0px 0px 4px $shadow-black; - - .btn-card-detail { - background: $highlight; - color: #fff; - } -} - -.btn-card-detail { - display: block; - width: 100%; - background: $border-color-light; - text-align: center; - padding: 10px 20px; - position: absolute; - bottom: 0; - transition: all 0.2s ease-in-out; -} - -.card-content { - p { - padding-bottom: 10px; - } -} - -.list-icon { - /*float: right;*/ -} - -.ev-z-depth-5 { - box-shadow: 0px 0px 10px $shadow-black; -} - -.ev-z-depth-4 { - box-shadow: 0px 0px 8px $shadow-black; -} - -.ev-z-depth-3 { - box-shadow: 0px 0px 6px $shadow-black; -} - -.ev-z-depth-2 { - box-shadow: 0px 0px 4px $shadow-black; -} - -.ev-z-depth-1 { - box-shadow: 0px 0px 2px $shadow-black; -} - -.ev-view { - padding-top: 20px; - padding-bottom: 20px; -} - -.btn { - text-transform: none; - font-family: 'Roboto'; - - i { - font-size: 14px; - } -} - -.fade { - transition: all linear 500ms; - opacity: 1; -} - -.fade.ng-hide { - opacity: 0; -} - -.fade.ng-show { - opacity: 1; -} - -i.icon { - font-size: 15px; -} - -.side-nav li>a>i { - margin: 0px; -} - -a { - transition: all 0.2s ease-in-out; -} - -a.white-link { - color: $light-link; -} - -a.white-link:hover { - color: $link-hover-dark; -} - -a.highlight-link { - color: $highlight; -} - -a.light-link { - color: $med-link; - - &:hover { - color: $highlight; - } -} - -a.med-link { - color: $med-link; -} - -a.med-link:hover { - color: $dark-link; -} - -a.med-black-link { - color: $med-black; -} - -a.med-black-link:hover { - color: $highlight; -} - -a.dark-link { - color: $dark-link; -} - -a.dark-link:hover { - color: $highlight; -} - -a.text-light-black:hover { - color: $highlight; -} - -.align-left { - text-align: left; -} - -.align-right { - text-align: right; -} - -.align-center { - text-align: center; -} - -/*to remove gutter from col*/ - -.rm-gut { - margin-left: -10px !important; - margin-right: -10px !important; -} - -.form-icon { - i { - position: absolute; - right: 0; - top: 15px; - color: $light-gray; - font-size: 0.9em; - transition: all 0.2s ease-in-out; - } -} - -/*pagination*/ - -.pagination-container { - margin-top: 25px; - - .md-button.md-warn.md-raised { - background-color: $highlight; - } - - .md-button.md-primary, - .md-button.md-primary.md-raised, - .md-button.md-primary.md-raised:not([disabled]):hover, - .md-button.md-primary.md-raised:active { - background-color: $dark-gray; - } -} - -.btn-pagination { - background-color: $highlight; - - i { - font-size: 16px; - } -} - -.btn-pagination:hover { - background-color: $highlight; - - i { - font-size: 16px; - } -} - -/* label color */ - -.input-field label, -input[type=checkbox]+label { - color: $light-gray; - font-size: 0.8em; - font-weight: 400; -} - -input[type="checkbox"].filled-in:checked+label:after { - width: 17px; - height: 17px; - border: 1px solid $link-hover-dark; - background-color: $link-hover-dark; -} - -input[type="checkbox"]+label { - padding-left: 24px; - line-height: 20px; -} - -input[type="checkbox"].filled-in:checked+label:before { - top: 0; - left: 2px; - width: 5px; - height: 11px; -} - -input[type="checkbox"].filled-in:not(:checked)+label:after { - width: 17px; - height: 17px; - border: 1px solid $light-gray; - background-color: transparent; -} - -/* label focus color */ - -.input-field input[type=email]:focus+label, -.input-field input[type=password]:focus+label, -.input-field input[type=text]:focus+label { - color: $light-gray; -} - -/* label underline focus color */ - -.input-field input[type=email]:focus, -.input-field input[type=password]:focus, -.input-field input[type=text]:focus { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 $link-hover-dark; -} - -/* valid color */ - -.input-field input[type=email].valid, -.input-field input[type=password].valid, -.input-field input[type=text].valid { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 #000; -} - -/* invalid color */ - -.input-field input[type=email].invalid, -.input-field input[type=password].invalid, -.input-field input[type=text].invalid { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 #000; -} - -/* icon prefix focus color */ - -.input-field .prefix.active { - color: #000; -} - -input { - font-weight: 300; - border-bottom: 1px solid $light-gray; -} - -.input-field input[type=email]:focus+.form-icon, -.input-field input[type=password]:focus+.form-icon, -.input-field input[type=text]:focus+.form-icon { - i { - color: $light-link; - } -} - -.input-field input[type=email]:focus+.form-icon-dark, -.input-field input[type=password]:focus+.form-icon-dark, -.input-field input[type=text]:focus+.form-icon-dark { - i { - color: $dark-link; - } -} - -.label-radio { - margin-top: 1.0em; - position: relative; - color: $light-gray; - font-size: 0.8em; - font-weight: 400; -} - -.label-checkbox { - margin-top: 1.0em; - position: relative; - color: $light-gray; - font-size: 0.8em; - font-weight: 400; -} - -.ev-spinner-dark { - border-color: $light-link; -} - -.ev-spinner-light { - border-color: $highlight; -} - - - -/*loader*/ - -.show-loader { - display: block; -} - -.hide-loader { - display: none; -} - -.low-screen { - transition: all 0.2s ease-in-out; - opacity: 0.2; -} - -.loader-title { - margin-top: 39vh; -} - -.loader-container { - position: fixed; - width: 100vw; - height: 100vh; - left: 0; - top: 0; - z-index: 5; - background-color: transparent; -} - -.card-loader-container { - position: fixed; - width: 100%; - height: 100%; - left: 0; - top: 0; - z-index: 5; - background-color: transparent; - - .loader-title { - margin-top: 14vh; - } - - .loader { - margin-top: 20%; - top: 0; - } -} - -.loader { - width: $loader-size; - height: $loader-height; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - - >div { - content: " "; - width: $loader-dot-size; - height: $loader-dot-size; - background: $loader-dot-color; - border-radius: 100%; - position: absolute; - animation: shift 2s linear infinite; - - &:nth-of-type(1) { - animation-delay: -.4s; - } - - &:nth-of-type(2) { - animation-delay: -.8s; - } - - &:nth-of-type(3) { - animation-delay: -1.2s; - } - - &:nth-of-type(4) { - animation-delay: -1.6s; - } - } -} - -@keyframes shift { - 0% { - left: -3*$loader-dot-size; - opacity: 0; - background-color: $loader-dot-color; - } - - 10% { - left: 0; - opacity: 1; - } - - 90% { - left: $loader-size; - opacity: 1; - } - - 100% { - left: ($loader-size + 3*$loader-dot-size); - background-color: $light-gray; - opacity: 0; - } -} - -.info { - position: absolute; - bottom: 0; - color: crimson; - - .info-text { - display: none; - } - - input:checked+.info-text { - display: block; - } -} - -.short-hr-line { - display: inline-block; - width: 100px; - height: 1px; - background-color: $highlight; - margin: 7px 0px; -} - - - -/*default margins*/ - -.mt-12 { - margin-top: 12px; -} - -.rm-mt { - margin-top: 0px; -} - -/*flex prop*/ - -.flex-body { - min-height: 100%; - display: flex; - flex-direction: column; -} - -.content { - flex: 1; -} - - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .ev-btn-scroll { - left: 90%; - } - .display-large { - display: none; - } - - .display-small { - display: block; - } - - .padding-lr-header { - padding: 0px 20px; - } - - .ev-container { - padding: 20px; - } - - h4 { - font-size: 1.8em; - } -} - -.mb-5 { - margin-bottom: 5px; -} - -.margin-8 { - margin-left: 8%; - margin-right: 8%; -} - -.font-weight-b { - font-weight: bold; -} - -tr { - border-bottom: 1px solid #d0d0d0; -} - -.color-black { - color: black; -} - -.analytics-challenge-single-line { - margin-bottom: 2.5%; -} - -.fs-30 { - font-size: 30px; -} - -.thumb { - margin: 20px 0; - border: 1px solid #808080; -} - -.participant-download-btn { - margin-left: 1%; - padding: 2px 5px 2px 5px; - height: auto; - line-height: 14px; - text-align: center; - margin-bottom: 0.2%; - border-radius: 5px; -} - -.margin-btm-0 { - margin-bottom: 0 !important; -} - -.margin-0 { - margin: 0 !important; -} - -.padding-0 { - padding: 0 !important; -} - -h4.challenge-step-title { - padding-top: 0; -} - -.display-inline-block { - display: inline-block !important; -} - -.meta-attributes-dialog {} - -.dialog-close-button { - position: absolute; - right: 10%; - bottom: 10%; -} - -.meta_attributes_checkox_list { - display: list-item; - list-style-position: inside; - list-style-type: disc; -} - -@media only screen and (min-width: $xlarge-screen) { - - body, - html { - background: white; - } - - #page-wrap { - width: 1440px !important; - margin: auto !important; - position: relative !important; - background: white; - zoom: 1 !important; - } - - .web-container { - width: calc(1440px - 223px) !important; - } - - .dashboard-flex, - .dashboard-content { - min-height: calc(90vh - 64px) !important; - } - - .grad-vh { - height: 90vh !important; - } - - .ev-footer { - clear: both; - z-index: 10; - position: relative; - } -} diff --git a/frontend/src/css/modules/challenge-create.scss b/frontend/src/css/modules/challenge-create.scss deleted file mode 100644 index 62a16a301a..0000000000 --- a/frontend/src/css/modules/challenge-create.scss +++ /dev/null @@ -1,44 +0,0 @@ -/* Create challenge page styles */ - -.zip-file-title { - margin-bottom: 20px; - margin-left: 11px; -} - -.syntax-wrn-msg { - font-size: 1em; -} - -.hr-line { - line-height: 1em; - position: relative; - outline: 0; - border: 0; - color: black; - text-align: center; - height: 1.5em; - opacity: .5; - &:before { - content: ''; - background: linear-gradient(to right, transparent, #818078, transparent); - position: absolute; - left: 0; - top: 50%; - width: 100%; - height: 1px; - } - &:after { - content: ''; - position: relative; - display: inline-block; - color: black; - padding: 0 .5em; - line-height: 1.5em; - color: #818078; - background-color: #fcfcfa; - } -} - -.create-card { - padding-bottom: 20px; -} diff --git a/frontend/src/css/modules/challenge-invitation.scss b/frontend/src/css/modules/challenge-invitation.scss deleted file mode 100644 index b0819c29ff..0000000000 --- a/frontend/src/css/modules/challenge-invitation.scss +++ /dev/null @@ -1,3 +0,0 @@ -.pd-btm-20 { - padding-bottom: 20px; -} diff --git a/frontend/src/css/modules/challenge.scss b/frontend/src/css/modules/challenge.scss deleted file mode 100644 index 337aa741d6..0000000000 --- a/frontend/src/css/modules/challenge.scss +++ /dev/null @@ -1,373 +0,0 @@ -.challenge-title-container { - padding-bottom: 0px; - ul.inline-list { - margin: 0px; - li { - margin-right: 40px; - min-height: 40px; - } - } -} - -.challenge-description a, -.evaluation-details a, -.terms-and-conditions a, -.phase-description a, -.submission-guidelines a { - color: #2196F3; - cursor: pointer; -} - -a.active-challenge { - color: $dark-black; - display: block; - height: 40px; - box-sizing: border-box; - border-bottom: 2px solid $highlight; -} - -.ev-challenge-view { - margin-top: 0px; - padding-top: 30px; - margin-bottom: 20px; -} - -.ev-challenge-approval-view { - margin-top: 0px; - padding-top: 30px; - padding-bottom: 10px; - margin-bottom: 20px; -} - -.challenge-container { - margin: 0px 10px -30px 10px; -} - -.eval-card { - min-height: 160px; -} - -.phase-card { - padding-bottom: 1px; -} - -.ev-dark-card { - background-color: $light-gray; -} - -.challenge-page-title { - padding-bottom: 10px; -} - -.ev-challenge-card { - height: 425px; -} - -.ev-dashboard-card { - min-height: 190px; -} - -.bg-img { - position: absolute; - object-fit: cover; - height: 100%; -} - -.blue-bg { - background: $med-gray; - padding: 10px 20px !important; - color: #fff; - border-radius: 4px; -} - -.phases-cont { - padding: 10px 0px; -} - -.rm-margin { - margin: 0px; -} - -.result-tag { - margin-top: 20px; - margin-bottom: 10px; -} - -.result-val { - margin-bottom: 20px; - border-bottom: 1px solid #e3e3e3; -} - -.val-style { - margin-bottom: 10px; -} - -.submitted, -.finished { - color: green; -} - -.running, -.submitting { - color: orange; -} - -.partially_evaluated { - color: royalblue; -} - -.failed, -.cancelled { - color: red; -} - -.chip-green { - background-color: #9CCC65; -} - -.chip-red { - background-color: #EF5350; -} - -.result-wrn { - margin-top: 15px; -} - -.capitalize { - text-transform: capitalize; -} - -.update-page { - display: block; - background: $dark-gray; - width: 100%; - overflow: auto; - padding: 10px; - text-align: center; - color: #fff; - position: absolute; - width: auto; - right: 0; - padding: 10px 30px; - box-shadow: 2px 2px 9px #6d6d6d; - border-radius: 3px 0px 0px 3px; - font-weight: 300; - transition: all 0.2s ease-in-out; - &:hover { - box-shadow: -1px 0px 9px #bbbbbb; - } -} - -i.star { - font-size: 1rem; -} - -.margin-top-btm { - margin-top: 10px; - margin-bottom: 25px; -} - -.margin-tb-4 { - margin-top: 4px; - margin-bottom: 4px; -} - -.margin-tb-10 { - margin-top: 10px; - margin-bottom: 10px; -} - -.width-auto { - width: auto !important; -} - -.f-16 { - font-size: 16px !important; -} - -.text-med-red { - color: red; -} - -md-select.md-default-theme .md-select-value span:first-child:after, -md-select .md-select-value span:first-child:after { - color: white; -} - -.md-checkbox-enabled.md-default-theme[selected] .md-icon, -.md-checkbox-enabled[selected] .md-icon { - background-color: #ffaf4b; -} - -.orange-background { - background-color: #ffaf4b !important; -} - -.green-background { - background-color: #28C146 !important; -} - -#option-text-color { - color: #252833; -} - -@-webkit-keyframes spin { - from { - -webkit-transform: rotate(0deg); - } - to { - -webkit-transform: rotate(360deg); - } -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.spin { - -webkit-animation: spin 1s linear infinite; - animation: spin 1s linear infinite; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.progress-indicator { - width: 14px; -} - -.btn-switch { - position: relative; - display: block; - width: 30px; - height: 15px; - cursor: pointer; - background-color: rgb(167, 163, 163); - border: 2px solid rgb(167, 163, 163); - border-radius: 40px; - .btn-switch-circle { - position: absolute; - top: 0; - left: 0; - display: block; - height: 10px; - width: 10px; - background-color: #fff; - border-radius: 40px; - } -} - -.btn-switch--on { - background-color: #ffaf4b; - border: 2px solid #ffaf4b; - ; - .btn-switch-circle--on { - left: auto; - right: 0; - } -} - -.toggle-participation-text { - display: inline-block; - padding-left: 10px; -} - -.ev-challenge-banner { - text-align: justify; - padding: 20px 20px 20px 20px; -} - -.margin-bottom-cancel { - margin-bottom: 0px; -} - -.watermarked { - background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),url(../images/evalai-logo-centered.png); - background-blend-mode: lighten; - background-size: 50%; - background-position: top; - background-repeat: no-repeat; -} - -.scale-worker-column { - flex: 1 0 auto; - padding-right: 10px; -} - -.text-entry-wrapper { - display: flex; - width: 50%; -} - -.text-entry-content { - width: 100%; -} - -.text-entry-columns { - display: inline-block; -} - -.submit-column { - flex: 0 1 auto; - float: right; - position: relative; -} - -.multiple-columns, .dropdown-menu { - display: flex; - margin: 0 auto; -} - -.scale-worker-button { - flex: 1 0 auto; -} - -.scale-worker-button-div { - top: 50%; - position: absolute; - transform: translateY(-50%); - width: max-content; - display: inline-flex; -} - -.worker-actions-row { - margin-bottom: 10px; -} - -.ev-card-prize { - height: 50px; - overflow: hidden; -} - -.trophy-icon { - padding: 10px; - float: right !important; -} - -.trophy-gold { - color: #FFD700; -} - -.trophy-silver { - color: #C0C0C0; -} - -.trophy-bronze { - color: #CD7F32; -} - -.trophy-blacks { - color: #000000; -} - -.domain-filter { - margin-top: 45px; -} - -.filter-icon { - padding: 10px; -} \ No newline at end of file diff --git a/frontend/src/css/modules/dashboard.scss b/frontend/src/css/modules/dashboard.scss deleted file mode 100644 index 83b1c5d63b..0000000000 --- a/frontend/src/css/modules/dashboard.scss +++ /dev/null @@ -1,11 +0,0 @@ -.launch-card { - /*display: inline-block;*/ -} - -.main-title { - /*font-size: 18px;*/ - margin-bottom: 0px; - background: -webkit-linear-gradient(#f5ac28, #e07e7e); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; -} diff --git a/frontend/src/css/modules/dyn_header_dropdown.scss b/frontend/src/css/modules/dyn_header_dropdown.scss deleted file mode 100644 index 257f7af7e4..0000000000 --- a/frontend/src/css/modules/dyn_header_dropdown.scss +++ /dev/null @@ -1,15 +0,0 @@ -.dropdown-content { - margin-top: 64px; - right: 0; - left: auto !important; - min-width: 160px; - background-color: rgba(0, 0, 0, 0.2); - li { - text-align: right; - } -} - -#ev-dropdown li a:hover { - background-color: white; - color: $dark-gray; -} diff --git a/frontend/src/css/modules/edit-challenge.scss b/frontend/src/css/modules/edit-challenge.scss deleted file mode 100644 index ef42831503..0000000000 --- a/frontend/src/css/modules/edit-challenge.scss +++ /dev/null @@ -1,57 +0,0 @@ -.pd-20 { - padding: 20px; -} - -.width-90 { - width: 90%; -} - -.font-size-16 { - font-size: 18px; -} - -trix-toolbar .trix-button-row { - display: block; -} - -.row .col .pd-0 { - padding: 0px; -} - -/*trix toolbar styling*/ -trix-toolbar .trix-button-group { - display: inline-block !important; - margin-top: 10px; -} - -trix-toolbar .trix-button--icon { - width: 3.0em !important; - height: 2.0em !important; -} - -md-toolbar { - min-height: 40px; -} - -md-toolbar:not(.md-menu-toolbar) { - background-color: #3c3e49 !important; -} - -.attachment--preview img { - display: block; - margin-left: auto; - margin-right: auto; -} - -.attachment__caption { - width: 100px; - display: block; - margin-left: auto; - margin-right: auto; -} - -.trix-toolbar { - text-align: center; - border: 1px solid #D9DEE0; - justify-content: center; -} diff --git a/frontend/src/css/modules/error_404.scss b/frontend/src/css/modules/error_404.scss deleted file mode 100644 index 04e9b15cf3..0000000000 --- a/frontend/src/css/modules/error_404.scss +++ /dev/null @@ -1,206 +0,0 @@ -/* Error-404 styles */ - -.fof-wrapper { - position: absolute; - text-align: center; - width: 100% ; - height: 100%; - left: 0; - background: #202028; - color: #9A958A; - padding-top: 100px; -} - -.fof-error-container { - width: 100% ; - height: 100%; - font-family: "Roboto"; - font-style: normal; -} - -.fof-error { - postion: absolute; - left: 0; - color: #BDB9A8; - font-size: 80px; - text-align: left; - font-weight: bold; - padding-top: 130px; - width: 100%; - height: 50px; -} - -.fof-message { - postion: absolute; - left: 0; - text-align: left; - font-size: 18px; - padding-top: 90px; - width: 100%; -} - -.fof-home { - position: absolute; - left: 0; - right: 0; - bottom: 0; - margin-bottom: 15px; - font-size: 15px; - font-family: "Roboto"; - color: #BDB9A8; -} - -.home-link{ - color: #FFFFFF; -} - -.owl-pic{ - position: absolute; - right: 10%; - width: 200px; - height: 200px; - top: 20%; - background: url('../images/owl.png'); -} - -.fof-stars{ - position: absolute; - width: 3px; - height: 3px; - border-radius: 50%; - background: #ffffff; - margin-top: 100px; -} - -.fof-grad { - margin: 0 auto; - position: relative; - overflow: hidden; - height: 450px; - width: 450px; - border: none; - border-radius: 50%; - background: #202028; - background: -webkit-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%,#212129 60%,#202028 100%,#202028 100%); /* For Safari 5.1 to 6.0 */ - background: -o-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); /* For Opera 11.6 to 12.0 */ - background: -moz-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); /* For Fx 3.6 to 15 */ - background: radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); -} - -/* div Stars */ - -#star-1{ - right: 30%; -} - -#star-2{ - left: 20%; - top: 5%; -} - -#star-3{ - right: 20%; - bottom: 40%; -} - -#star-4{ - right: 60%; - bottom: 25%; -} - -#star-5{ - right: 50%; - bottom: 45%; -} - -#star-6{ - left: 40%; - top: 10%; -} - -#star-7{ - left: 30%; - bottom: 50%; -} - -#star-8{ - left: 25%; - bottom: 15%; -} - -#star-9{ - left: 60%; - bottom: 25%; -} - -#star-10{ - right: 40%; - top: 6%; -} - -#star-11{ - left: 30%; - top: 3%; -} - -#star-12{ - left: 20%; - bottom: 30%; -} - -/* Media Queries */ - -@media only screen and(min-width: 768px) and(max-width: $med-screen){ - .fof-wrapper{ - padding-top: 200px; - } -} - -@media only screen and(min-width: 569px) and(max-width: 767px){ - .fof-wrapper{ - padding-top: 150px; - } - .fof-grad{ - margin: 0 auto; - position: relative; - overflow: hidden; - height: 360px; - width: 360px; - } - .fof-home{ - font-size: 12px; - } - .fof-message{ - font-size: 14px; - padding-top: 70px; - padding-left: 5px; - } - .fof-error{ - font-size: 60px; - padding-top: 130px; - } -} - -@media only screen and(min-width:320px) and(max-width:568px){ - .fof-wrapper{ - padding-top: 150px; - } - .fof-grad{ - margin: 0 auto; - position: relative; - overflow: hidden; - height: 320px; - width: 320px; - } - .fof-home{ - font-size: 12px; - } - .fof-message{ - font-size: 12px; - padding-top: 60px; - } - .fof-error{ - font-size: 50px; - padding-top: 110px; - } -} diff --git a/frontend/src/css/modules/error_500.scss b/frontend/src/css/modules/error_500.scss deleted file mode 100644 index 85521e281a..0000000000 --- a/frontend/src/css/modules/error_500.scss +++ /dev/null @@ -1,31 +0,0 @@ -/* Error-500 styles */ - -.ise-wrapper { - position: absolute; - text-align: center; - width:100% ; - left: 0; - margin-top: 100px; - -} - -.ise-error-container { - font-family: "Roboto"; - font-style: normal; -} - -.ise-error { - font-size: 100px; - font-weight: bold; -} - -.ise-message { - margin-top: 10px; - font-size: 20px; -} - -.ise-home { - margin-top: 50px; - font-size: 30px; - font-family: "Roboto"; -} diff --git a/frontend/src/css/modules/footer.scss b/frontend/src/css/modules/footer.scss deleted file mode 100644 index 038e240db6..0000000000 --- a/frontend/src/css/modules/footer.scss +++ /dev/null @@ -1,24 +0,0 @@ -/* footer styles */ - -.ev-footer { - position: relative; - width: 100%; - bottom: 0; - left: 0; -} - -.dashboard-footer { - width: 100%; - bottom: 0; - left: 0; -} - - -/* media queries */ - -@media only screen and(min-width:768px) and(max-width:$med-screen) { - .dashboard-footer { - width: 100%; - padding-left: 220px; - } -} diff --git a/frontend/src/css/modules/header.scss b/frontend/src/css/modules/header.scss deleted file mode 100644 index 0552add78f..0000000000 --- a/frontend/src/css/modules/header.scss +++ /dev/null @@ -1,33 +0,0 @@ -/* header styles */ - -.ev-header-overflow { - margin-top: -2px; -} - -.med-link { - i { - height: auto; - } -} - - -/*landing page logo*/ - -a.evalai-logo { - width: 60px; - img { - width: 100%; - vertical-align: middle; - } -} - - -/*dashboard logo*/ - -a.dashboard-evailai-logo { - width: 110px; - img { - width: 100%; - vertical-align: middle; - } -} diff --git a/frontend/src/css/modules/landing.scss b/frontend/src/css/modules/landing.scss deleted file mode 100644 index e5874b4c3c..0000000000 --- a/frontend/src/css/modules/landing.scss +++ /dev/null @@ -1,610 +0,0 @@ -/*dynamic header style*/ - -.dyn-header { - position: relative; - z-index: 999; - nav { - background-color: rgba(0, 0, 0, 0); - box-shadow: 0 0 0 0 #000; - a { - color: $light-link; - font-weight: $rob-med; - img.cloudcv-logo { - height: 50px; - width: 50px; - vertical-align: middle; - } - } - a:hover { - color: $link-hover-dark; - } - a.light-link { - color: $med-link; - transition: all 0.2s ease-in-out; - } - a.light-link:hover { - color: $light-link; - } - a.active { - color: $link-hover-dark; - background-color: rgba(0, 0, 0, 0.1); - } - } -} - - -/*main intor*/ - -section.bg-section { - width: 100%; - height: 100vh; - position: fixed; - top: 0px; - left: 0px; - background-color: $med-gray; - .bg-image { - width: 100%; - height: 100%; - opacity: 0.2; - background-image: url('../images/background.png'); - background-size: cover; - background-repeat: no-repeat; - background-position: right; - } -} - -.ev-head { - margin-top: 100px; -} - -.ev-head-small { - margin-top: 80px; -} - -.ev-intro { - margin-top: -10px; -} - -.ev-insight { - position: absolute; - bottom: 0px; - color: $light-gray; - width: 75%; - right: 0; - height: 70vh; - overflow: hidden; - direction: ltr; -} - -#mobile-demo { - li { - a { - color: $med-black; - } - } -} - -.background { - background-color: $dark-gray; -} - -.ev-details, -.ev-reverse-details { - position: relative; - box-shadow: 6px -1px 9px $super-light-shadow; - padding: 0; -} - -.ev-reverse-details { - box-shadow: none; -} - -.full-view { - min-height: 100vh; -} - - -/*simple header*/ - -.sim-header { - font-size: 18px; - top: 0; - left: 0; - z-index: 999; - width: 100%; - position: relative; - nav { - background-color: rgba(255, 255, 255, 0.9); - box-shadow: 0 0 0 0 #000; - position: fixed; - top: 0; - left: 0; - padding: 0 100px; - transition: all 0.1s ease-in-out; - a.sim-header-link { - color: #4d4d4d; - font-weight: 400; - transition: all 0.2s ease-in-out; - &:hover { - color: #ffaf4b; - background-color: rgba(0, 0, 0, 0); - } - } - a.light-link { - color: #9ca3be; - transition: all 0.2s ease-in-out; - &:hover { - color: #fff; - } - } - a.active { - color: #ffaf4b; - background-color: rgba(0, 0, 0, 0); - } - nav.grad-shadow-1 { - box-shadow: 0 0 10px #9d9d9d; - } - } -} - -@media only screen and (max-width: 992px) { - .sim-header nav { - padding: 0px 30px; - } -} - -.grad-head { - padding-top: 10vh; -} - -.landing-buttons { - margin-top: 35px; - position: relative; - z-index: 3; -} - -.rocket-anim { - width: 150px; - padding-right: 50px; - position: absolute; - left: 62%; - z-index: 0; - /* margin: auto; */ - margin-top: 21vh; - animation: rocket 3s alternate infinite; - img { - width: 100%; - } -} - -.insight-text { - color: $light-black; - &:hover { - color: $highlight; - } -} - -.rocket-container { - position: relative; -} - -.small-cloud { - z-index: 0; -} - -.cloud-1 { - width: 80px; - position: absolute; - right: 0; - top: -1-0px; - animation: cloud-one 7s linear infinite; - img { - width: 100%; - } -} - -@keyframes rocket { - 0% { - transform: rotate(4deg); - } - 100% { - transform: rotate(-4deg); - } -} - -@keyframes cloud-one { - 0% { - top: -100px; - } - 100% { - top: 100vh; - } -} - -.cloud-2 { - width: 100px; - position: absolute; - right: 150px; - top: -140px; - animation: cloud-two 10s linear infinite; - animation-delay: 5s; - img { - width: 100%; - } -} - -@keyframes cloud-two { - 0% { - top: -140px; - } - 100% { - top: 100vh; - } -} - -.cloud-3 { - width: 100px; - position: absolute; - right: -60px; - top: -120px; - animation: cloud-three 8s linear infinite; - img { - width: 100%; - } -} - -@keyframes cloud-three { - 0% { - top: -120px; - } - 100% { - top: 100vh; - } -} - -.cloud-4 { - width: 100px; - position: absolute; - right: 120px; - top: -120px; - animation: cloud-four 14s linear infinite; - img { - width: 100%; - } -} - -@keyframes cloud-four { - 0% { - top: -80px; - } - 100% { - top: 100vh; - } -} - -.bird-anim { - width: 200px; - position: absolute; - right: 0px; - top: -300px; - animation: bird 15s linear infinite; - animation-delay: 4s; - img { - width: 100%; - } -} - -@keyframes bird { - 0% { - top: -300px; - } - 100% { - top: 100vh; - } -} - -.cloud-big { - position: absolute; - display: inline-block; - right: 0; - bottom: 0; - z-index: 1; - height: 100%; - img { - height: 100%; - } -} - -.cloud-big-2 { - right: 0px; - z-index: 0; - bottom: 4px; - transform: rotate(-4deg); -} - -.grad-vh { - min-height: 100vh; -} - -.landing-is { - font-size: 126px; - margin-top: 34px; -} - -.is-line, -.big-line { - display: block; - height: 2px; - width: 50px; - background: $highlight; - margin-top: 22px; -} - -.big-line { - width: 100px; - height: 1px; - margin: 8px 0px 12px 0px; - background: $light-black; -} - - -/*space man*/ - -.spaceman { - width: 200px; - position: absolute; - right: 0px; - top: 100px; - animation: spaceman-anim 4s alternate linear infinite; - img { - width: 100%; - } -} - -@keyframes spaceman-anim { - 0% { - transform: rotate(0deg); - top: 100px; - } - 30% { - transform: rotate(20deg); - top: 150px; - } - 70% { - transform: rotate(0deg); - top: 190px; - } - 100% { - transform: rotate(-10deg); - top: 240px; - } -} - -.challenge-logo { - img { - width: 80px; - vertical-align: middle; - } -} - -a.view-more { - color: $highlight; - &:hover { - color: $highlight-dark; - } -} - -.org-logo { - max-width: 100%; - height: 120px; - text-align: center; - img { - height: 75%; - max-width: 100%; - width: auto; - transition: all 0.2s ease-in-out; - display: block; - margin-left: auto; - margin-right: auto; - margin-top: auto; - margin-bottom: auto; - } - &:hover { - img { - -webkit-filter: grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: grayscale(100%); - } - } -} - - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .rocket-container { - display: none; - } - .dyn-header { - nav { - a.org-link { - float: right; - padding-right: 20px; - } - } - } - .head { - margin-top: 40px; - } - .ev-head-small { - margin-top: 20px; - } - .ev-insight { - bottom: 0px; - width: 100%; - } - .sim-header { - width: 100%; - } -} - -@media only screen and (max-width: $small-screen) { - .org-logo { - height: auto; - width: 100%; - img { - width: 100%; - height: auto; - } - } -} - -#aptiv-logo { - height: 35%; - padding-top: 5%; -} - -#argoai-logo { - height: 50%; - padding-bottom: 7%; -} - -#cmu-logo { - height: 50%; -} - -#draper-logo { - height: 50%; - padding-bottom: 7%; -} - -#ebay-logo { - height: 35%; - padding-top: 3%; -} - -#fb-logo { - height: 30%; - padding-top: 7%; -} - -#gt-logo { - height: 40%; -} - -#google-logo { - height: 40%; -} - -#ibm-logo { - height: 35%; - padding-top: 5%; -} - -#uiuc-logo { - height: 25%; - padding-top: 5%; -} - -#iitm-logo { - height: 50%; -} - -#intel-logo { - height: 45%; -} - -#ju-logo { - height: 50%; -} - -#mapillary-logo { - height: 40%; - padding-top: 7%; -} - -#mit-logo { - height: 35%; - padding-top: 7%; -} - -#nu-logo { - height: 50%; -} - -#siop-logo { - height: 50%; -} - -#stanford-logo { - height: 50%; -} - -#adelaide-logo { - height: 50%; - padding-top: 5%; -} - -#umbc-logo { - height: 45%; - padding-top: 5%; -} - -#pitt-logo { - height: 50%; - padding-top: 5%; -} - -#vt-logo { - height: 45%; -} - -#iowa-state { - height: 50%; - padding-top: 5%; -} - -#motional { - height: 5%; -} - -#uau { - height: 40%; -} - -#upisa { - height: 50%; -} - -.evalai-sponsor-logo { - max-width: 100%; - height: 300px; - text-align: center; - img { - height: 55%; - max-width: 100%; - width: auto; - transition: all 0.2s ease-in-out; - display: block; - margin-left: auto; - margin-right: auto; - margin-top: auto; - margin-bottom: auto; - } - &:hover { - img { - -webkit-filter: grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: grayscale(100%); - } - } -} - -#gsoc { - height: 55%; - margin-left: 16.667%; -} - -#aws { - margin-top: 2%; -} diff --git a/frontend/src/css/modules/leaderboard.scss b/frontend/src/css/modules/leaderboard.scss deleted file mode 100644 index 48a6e0c765..0000000000 --- a/frontend/src/css/modules/leaderboard.scss +++ /dev/null @@ -1,90 +0,0 @@ -/* Styles for leaderboard page */ - -.horizontal-scroll { - overflow-x: auto; -} - - -#baseline-badge { - font-weight: 300; - min-width: 0rem; - font-size: 16px; - float: right; - margin-left: 5px; -} - -#baseline-badge-desc { - font-weight: 300; - min-width: 0rem; - font-size: 16px; - margin-left: 0px; - float: none; - -} - -#verified-badge { - font-weight: 300; - min-width: 0rem; - font-size: 16px; - float: right; - margin-left: 5px; -} - -#verified-badge-desc { - font-weight: 300; - min-width: 0rem; - font-size: 16px; - margin-left: 0px; - float: none; -} - -.highlightLeaderboard { - border-color: #fff3e0; - box-shadow: 0 0 0 0.2em #ffcc80 !important; - border: 1px solid #d1d5da; - border-radius: 3px; - background-color: #f2f2f2; -} - -.sort-leaderboard-switch { - vertical-align: middle; - display: inline-block; -} - -.baseline-tag { - margin-right: 4%; -} -.complete-leaderboard { - vertical-align:top; -} - -span.badge.partial-evaluation { - min-width: 3rem; - padding: 0 6px; - text-align: center; - font-size: 1rem; - line-height: inherit; - float: left; - box-sizing: border-box; -} - -.leaderboard-label .description { - visibility: hidden; - width: auto; - max-width: 250px; - height: auto; - background-color: #f2f2f2; - color: #000000; - text-align: center; - border-radius: 6px; - padding: 10px 10px 10px 10px; - font-size: 1.05rem; - - /* Position the tooltip */ - position: absolute; - z-index: 1; -} - -.leaderboard-label:hover .description { - visibility: visible; -} diff --git a/frontend/src/css/modules/main-header.scss b/frontend/src/css/modules/main-header.scss deleted file mode 100644 index b9f7571d18..0000000000 --- a/frontend/src/css/modules/main-header.scss +++ /dev/null @@ -1,52 +0,0 @@ -.org-link { - margin-right: 30px; -} - -.main-header { - position: relative; - z-index: 999; - width: 100%; - nav { - background-color: rgba(255, 255, 255, 0.9); - box-shadow: 0 0 0 0 #000; - position: fixed; - top: 0; - left: 0; - padding: 0 100px; - transition: all 0.1s ease-in-out; - a.main-header-link { - color: $med-black; - font-weight: $rob-reg; - transition: all 0.2s ease-in-out; - } - a.main-header-link:hover { - color: $link-hover-dark; - background-color: rgba(0, 0, 0, 0); - } - a.light-link { - color: $med-link; - transition: all 0.2s ease-in-out; - } - a.light-link:hover { - color: $light-link; - } - a.active { - color: $highlight; - background-color: rgba(0, 0, 0, 0); - } - } - nav.grad-shadow-1 { - box-shadow: 0 0 10px $light-black; - } -} - -@media only screen and (max-width: $med-screen) { - .main-header { - nav { - padding: 0px 30px; - } - } - .side-nav .userView{ - padding: 28px; - } -} diff --git a/frontend/src/css/modules/my-challenge-all-submission.scss b/frontend/src/css/modules/my-challenge-all-submission.scss deleted file mode 100644 index 51198a5aa8..0000000000 --- a/frontend/src/css/modules/my-challenge-all-submission.scss +++ /dev/null @@ -1,9 +0,0 @@ -/* Styles for View all submissions page */ - -.all-submission-table { - width: 160%; -} - -.all-submission-table-scroll { - overflow-x: scroll; -} diff --git a/frontend/src/css/modules/notification.scss b/frontend/src/css/modules/notification.scss deleted file mode 100644 index 4ecf4fcdcb..0000000000 --- a/frontend/src/css/modules/notification.scss +++ /dev/null @@ -1,64 +0,0 @@ -// notification override -#toast-container { - top: 64px; - right: 0; - box-shadow: none; - &>:hover { - box-shadow: none; - } -} - -.toast-message { - font-size: 14px; - font-weight: bold; - a { - color: $light-link; - &:hover { - text-decoration: none; - } - } -} - -.toast { - word-break: initial; - &.toast-success { - background-color: $med-green; - &:hover { - background-color: $med-green; - } - } - &.toast-error { - background-color: $med-red; - &:hover { - background-color: $med-red; - } - } - - &.toast-info { - background-color: $blue; - &:hover { - background-color: $blue; - } - } - - &.toast-wait { - background-color: $wait-blue; - &:hover { - background-color: $wait-blue; - } - } - - &.toast-warning { - background-color: $med-orange; - &:hover { - background-color: $hover-orange; - } - } -} - -//Hide it on small devices -@media only screen and (max-width: 992px) { - #toast-container { - bottom: unset; - } -} diff --git a/frontend/src/css/modules/profile.scss b/frontend/src/css/modules/profile.scss deleted file mode 100644 index 980dfe7481..0000000000 --- a/frontend/src/css/modules/profile.scss +++ /dev/null @@ -1,74 +0,0 @@ -.profile-sidebar { - position: fixed; - z-index: 9; - font-size: 14px; - /*padding:0px 30px;*/ - min-width: 200px; - min-height: 100vh; - background-color: $dust-gray; - top: 0; - left: -200px; - text-align: center; - color: #fff; - /*transition:all 0.2s ease-in-out;*/ - ul { - margin-top: 20px; - text-align: left; - li { - padding: 10px 0px; - } - } - input[type="checkbox"] + label { - font-size: 12px; - } -} - -.token-width { - width: 500px; -} - -.profile-edit-group { - margin-top: 60px; -} - -.pass-title { - margin-bottom: 30px; -} - -.back-profile-group { - margin-top: 60px; -} - -img.profile-pic { - height: 80px; -} - -.user-info { - li { - margin-bottom: 36px; - } - margin-bottom: 20px; -} - -.user-urls { - li { - margin-bottom: 33px; - } - margin-bottom: 20px; -} - -.w-content { - width: fit-content; -} - -.ev-md-container-custom { - padding: 20px 30px 0px 30px; -} - -.ev-md-container-ui { - padding: 0px 40px 40px 40px; -} - -.ev-md-container { - padding: 40px 40px 10px 40px; -} diff --git a/frontend/src/css/modules/sidebar.scss b/frontend/src/css/modules/sidebar.scss deleted file mode 100644 index 4e86ea230b..0000000000 --- a/frontend/src/css/modules/sidebar.scss +++ /dev/null @@ -1,64 +0,0 @@ -.ev-sidebar { - display: block; - height: calc(100vh - 120px); - width: 220px; - border-right: 1px solid $grad-light-black; - background-color: $transparent; - color: #fff; - z-index: 10; - top: 98px; - text-align: center; -} - -.side-logo { - font-size: 20px; -} - -.side-intro { - /*border-bottom: 1px solid $med-gray;*/ -} - -.links-section-outer { - overflow: auto; - height: 100%; -} - -.links-section { - ul { - margin: 0px; - } - li { - a { - padding: 20px 30px 20px 30px; - word-wrap: break-word; - position: relative; - display: block; - width: 100%; - height: 100%; - font-size: 14px; - transition: all 0.2s ease-in-out; - border-right: 1px solid transparent; - &:hover { - color: $highlight; - } - &.side-active-link { - /*background-color: $dust-gray;*/ - color: $med-black; - border-right: 1px solid $highlight; - } - } - } -} - -.side-link-icon { - font-size: 30px; -} - -.side-title { - padding: 20px 20px 10px 30px; - font-size: 12px; -} - -.sidebar-title { - font-size: 14px; -} diff --git a/frontend/src/css/modules/submission.scss b/frontend/src/css/modules/submission.scss deleted file mode 100644 index a6384156c5..0000000000 --- a/frontend/src/css/modules/submission.scss +++ /dev/null @@ -1,124 +0,0 @@ -/* Styles for Submission page */ -@import './variables.scss'; - -.remaining-submission-clock { - padding-top: 55px; -} - -.time { - position: static; -} - -.rm-overflow-y { - overflow-y: hidden; -} - -.show-count { - background: $dark-gray; - text-align: center; - color: white; - padding: 2px 5px 2px 5px; - border-radius: 3px 3px 3px 3px; - font-weight: 300; - transition: all 0.2s ease-in-out; -} - -.padding-10 { - padding: 10px; -} - -.add-line-height { - line-height: 36px; -} - -.phase-container ul:not(.browser-default) li { - list-style-type: none; -} - -li { - margin-bottom: 1.5%; - } - - li:last-child { - margin-bottom: 0px; - } - -code { - font-family: "Roboto"; - display: inline-block; - font-size: 14px; - font-weight: 300; - background:#eff0f1; border:#eff0f1 dashed 1px; padding:6px; - border-radius: 10px; - max-width: 90%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.code-btn { - height: 100% !important; - padding: 0 0.5rem !important; - line-height: 200% !important; - margin-top: -25px; -} - -.dashed-link { - border-bottom: 1px orange dashed; -} - -.update-submission-visibility-card { - padding: 20px 20px 0px 20px; -} - -.submission-options { - margin-bottom: 10px; -} - -md-radio-button.md-default-theme .md-on, md-radio-button .md-on { - background-color: black; -} - -md-radio-button.md-default-theme.md-checked .md-off, md-radio-button.md-checked .md-off { - border-color: black; -} - -md-radio-button .md-off { - width: 16px; - height: 16px; -} - -md-radio-button .md-on { - width: 16px; - height: 16px; -} - -[type="checkbox"] + label:before, [type="checkbox"]:not(.filled-in) + label:after { - width: 16px; - height: 16px; -} - -.color-orange { - color: $highlight; -} - -.no-top-margin-p { - margin-top: 0px; -} - -.submission-instructions { - padding-top: 0px; - padding-right: 30px; - padding-left: 30px; -} - -.center-content { - display: flex; - flex-direction: row; - align-items: center; -} - -.btn-custom { - padding: 0 1rem; - font-size: 0.8rem; -} diff --git a/frontend/src/css/modules/teams.scss b/frontend/src/css/modules/teams.scss deleted file mode 100644 index 0241d65bfc..0000000000 --- a/frontend/src/css/modules/teams.scss +++ /dev/null @@ -1,161 +0,0 @@ -.exist-team-card { - ul { - &.collapsible { - border: 0; - box-shadow: none; - li { - box-shadow: 0 0 5px #e0e0e0; - } - } - li { - margin: 20px 0px; - min-height: 40px; - .collapsible-header { - border-bottom: 0; - line-height: initial; - min-height: initial; - padding: 10px 5px; - i { - display: inline-block; - float: none; - font-size: initial; - line-height: 40px; - margin-right: 0; - text-align: center; - width: 2rem; - } - } - .collapsible-body { - background-color: #fafafa; - border-top: 1px solid #e0e0e0; - padding: 10px 40px; - p { - padding: 3px 0; - } - } - } - } - i.list-icon { - line-height: 25px; - } -} - -.new-team-card { - padding-bottom: 40px; -} - -.pagination { - margin-top: 20px; -} - -.pagination-title { - padding: 0px 10px; -} - -div.show-member-title { - width: calc(100% - 35px); - float: right; -} - -.page-msg { - margin-top: 16px; -} - -.team-card { - position: relative; - background: $dark-gray; - max-width: 235px; - height: 270px; - border-radius: 6px; - box-shadow: 0px 4px 24px #797979; - overflow: hidden; - margin-bottom: 30px; - margin-left: auto; - margin-right: auto; - transition: all 0.2s ease-in-out; - &:hover { - box-shadow: 0px 0px 10px #797979; - } -} - -.team-bg { - position: absolute; - top: -40px; - left: -50px; - img { - width: 130%; - opacity: 0.15; - } -} - -.team-bg-over { - position: absolute; - bottom: -7px; - width: 100%; - img { - width: 100%; - } -} - -.team-profile { - display: block; - width: 60px; - height: 60px; - border-radius: 50%; - overflow: hidden; - position: absolute; - bottom: 25px; - left: 15px; - box-shadow: 0px 4px 8px #989898; - img { - width: 100%; - } -} - -.team-player { - position: absolute; - bottom: 14px; - text-align: right; - padding-left: 50px; - right: 15px; - h4 { - font-size: 16px; - } -} - -.team-link-head { - padding: 10px 15px; - position: absolute; - width: 100%; - top: 0; - left: 0; - z-index: 10; - span { - padding-right: 10px; - a { - color: $light-gray; - &:hover { - color: #fff; - } - } - font-size: 14px; - transition: all 0.2s ease-in-out; - } -} - -span.link-team-user { - padding-right: 0px; - font-size: 12px; - line-height: 25px; -} - -.team-heading { - margin-bottom: 30px; - color: #9d9d9d; -} - -@media only screen and (max-width: 992px) and (min-width: 601px) { - .team-heading { - margin-top: 30px; - } -} diff --git a/frontend/src/css/modules/variables.scss b/frontend/src/css/modules/variables.scss deleted file mode 100644 index 19b8e460a2..0000000000 --- a/frontend/src/css/modules/variables.scss +++ /dev/null @@ -1,79 +0,0 @@ -/*font variable*/ - -$rob-light: 200; -$rob-med: 300; -$rob-reg: 400; -$rob-bold: 600; - -/*blue shades*/ - -$light-gray: #adb4d0; -$med-gray: #3c3e49; -$dark-gray: #252833; -$dust-gray: #1a1b1f; -$blue: #3B9EB9; -$wait-blue:#5843A3; - -/*green shades*/ - -$med-green: rgb(8, 160, 3); - -/*red shades*/ -$med-red: #DB3232; - -/*black shades*/ - -$shadow-black: #dedede; -$light-black: #9d9d9d; -$med-black: #4d4d4d; -$dark-black: #4d4d4d; - -/*orange shades*/ - -$highlight: #ffaf4b; -$highlight-dark: #ff7b2e; -$med-orange: #DF9C3E; -$hover-orange: #DA8F27; - -/*transparent*/ - -$transparent: rgba(0, 0, 0, 0); - -/*link colors*/ - -$light-link: #fff; -$med-link: #9ca3be; -$dark-link: #252833; - -/*link hover colors*/ - -$link-hover-dark: #ffaf4b; -$link-hover-light: #fff; - -/*loader variable*/ - -$loader-size: 70px; -$loader-dot-size: ($loader-size / 5); -$loader-height: $loader-dot-size; -$loader-dot-color: #ffaf4b; - -/*border color*/ - -$border-color-light: #e3e3e3; - -/*Screen Size Variables*/ - -$small-screen: 600px; -$med-screen: 992px; -$large-screen: 1280px; -$xlarge-screen: 1441px; - -/*grad new variables*/ - -$grad-super-light: #fafafa; -$grad-light-black: #dcdcdc; -$grad-sec-gray: #45334e; - -/*shadow colors*/ - -$super-light-shadow: #ececec; diff --git a/frontend/src/css/modules/web.scss b/frontend/src/css/modules/web.scss deleted file mode 100644 index 0f28bab325..0000000000 --- a/frontend/src/css/modules/web.scss +++ /dev/null @@ -1,46 +0,0 @@ -/*main container style*/ - -.dashboard-flex { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.dashboard-content { - flex: 1; - min-height: 100vh; -} - -.web-container { - width: calc(100vw - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -#sidenav-overlay { - z-index: 1; -} - -.light-dark-container { - .loader-title { - color: $med-gray; - font-size: 18px; - font-weight: 500; - } -} - - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} diff --git a/frontend/src/directives/copyText.js b/frontend/src/directives/copyText.js new file mode 100644 index 0000000000..5b4981b48d --- /dev/null +++ b/frontend/src/directives/copyText.js @@ -0,0 +1,61 @@ +/** + * v-copyText 复制文本内容 + * Copyright (c) 2023 oasis + */ + +export default { + beforeMount(el, { value, arg }) { + el.$copyValue = value.txt; + el.$resMessage = value.msg; + const handler = () => { + copyTextToClipboard(el.$copyValue); + ElMessage.success(el.$resMessage); + }; + el.addEventListener('click', handler); + el.$destroyCopy = () => el.removeEventListener('click', handler); + }, +}; + +function copyTextToClipboard(input, { target = document.body } = {}) { + const element = document.createElement('textarea'); + const previouslyFocusedElement = document.activeElement; + + element.value = input; + + // Prevent keyboard from showing on mobile + element.setAttribute('readonly', ''); + + element.style.contain = 'strict'; + element.style.position = 'absolute'; + element.style.left = '-9999px'; + element.style.fontSize = '12pt'; // Prevent zooming on iOS + + const selection = document.getSelection(); + const originalRange = selection.rangeCount > 0 && selection.getRangeAt(0); + + target.append(element); + element.select(); + + // Explicit selection workaround for iOS + element.selectionStart = 0; + element.selectionEnd = input.length; + + let isSuccess = false; + try { + isSuccess = document.execCommand('copy'); + } catch {} + + element.remove(); + + if (originalRange) { + selection.removeAllRanges(); + selection.addRange(originalRange); + } + + // Get the focus back on the previously focused element, if any + if (previouslyFocusedElement) { + previouslyFocusedElement.focus(); + } + + return isSuccess; +} diff --git a/frontend/src/directives/index.js b/frontend/src/directives/index.js new file mode 100644 index 0000000000..5a32e7bb40 --- /dev/null +++ b/frontend/src/directives/index.js @@ -0,0 +1,7 @@ +import copyText from './copyText'; + +export default { + install(app) { + app.directive('copyText', copyText); + }, +}; diff --git a/frontend/src/fonts/Geometos.ttf b/frontend/src/fonts/Geometos.ttf deleted file mode 100644 index 72a027de3b..0000000000 Binary files a/frontend/src/fonts/Geometos.ttf and /dev/null differ diff --git a/frontend/src/fonts/Montserrat-Bold.ttf b/frontend/src/fonts/Montserrat-Bold.ttf deleted file mode 100644 index 8e9a5f3f98..0000000000 Binary files a/frontend/src/fonts/Montserrat-Bold.ttf and /dev/null differ diff --git a/frontend/src/fonts/Montserrat-Light.ttf b/frontend/src/fonts/Montserrat-Light.ttf deleted file mode 100644 index e66dc5bf05..0000000000 Binary files a/frontend/src/fonts/Montserrat-Light.ttf and /dev/null differ diff --git a/frontend/src/fonts/Montserrat-Medium.ttf b/frontend/src/fonts/Montserrat-Medium.ttf deleted file mode 100644 index 88d70b89c3..0000000000 Binary files a/frontend/src/fonts/Montserrat-Medium.ttf and /dev/null differ diff --git a/frontend/src/fonts/Montserrat-Regular.ttf b/frontend/src/fonts/Montserrat-Regular.ttf deleted file mode 100644 index 626355a2c7..0000000000 Binary files a/frontend/src/fonts/Montserrat-Regular.ttf and /dev/null differ diff --git a/frontend/src/fonts/Montserrat-SemiBold.ttf b/frontend/src/fonts/Montserrat-SemiBold.ttf deleted file mode 100644 index 615704508b..0000000000 Binary files a/frontend/src/fonts/Montserrat-SemiBold.ttf and /dev/null differ diff --git a/frontend/src/images/auth-cloud.png b/frontend/src/images/auth-cloud.png deleted file mode 100644 index e8d2faf923..0000000000 Binary files a/frontend/src/images/auth-cloud.png and /dev/null differ diff --git a/frontend/src/images/bird.gif b/frontend/src/images/bird.gif deleted file mode 100644 index 8c433901d2..0000000000 Binary files a/frontend/src/images/bird.gif and /dev/null differ diff --git a/frontend/src/images/challenge_preview.png b/frontend/src/images/challenge_preview.png deleted file mode 100644 index be508797a5..0000000000 Binary files a/frontend/src/images/challenge_preview.png and /dev/null differ diff --git a/frontend/src/images/cloud-1.png b/frontend/src/images/cloud-1.png deleted file mode 100644 index 1eaff344e5..0000000000 Binary files a/frontend/src/images/cloud-1.png and /dev/null differ diff --git a/frontend/src/images/cloud-2.png b/frontend/src/images/cloud-2.png deleted file mode 100644 index 5eff0cf49c..0000000000 Binary files a/frontend/src/images/cloud-2.png and /dev/null differ diff --git a/frontend/src/images/cloud-4.png b/frontend/src/images/cloud-4.png deleted file mode 100644 index 2d1bfb3a93..0000000000 Binary files a/frontend/src/images/cloud-4.png and /dev/null differ diff --git a/frontend/src/images/cloud1.png b/frontend/src/images/cloud1.png deleted file mode 100644 index 3116d34cfb..0000000000 Binary files a/frontend/src/images/cloud1.png and /dev/null differ diff --git a/frontend/src/images/cloud2.png b/frontend/src/images/cloud2.png deleted file mode 100644 index 592fd6b100..0000000000 Binary files a/frontend/src/images/cloud2.png and /dev/null differ diff --git a/frontend/src/images/cloud3.png b/frontend/src/images/cloud3.png deleted file mode 100644 index 7f3498f9de..0000000000 Binary files a/frontend/src/images/cloud3.png and /dev/null differ diff --git a/frontend/src/images/dash-challenge.png b/frontend/src/images/dash-challenge.png deleted file mode 100644 index 8b08c97839..0000000000 Binary files a/frontend/src/images/dash-challenge.png and /dev/null differ diff --git a/frontend/src/images/email.png b/frontend/src/images/email.png deleted file mode 100644 index 3bfb32e770..0000000000 Binary files a/frontend/src/images/email.png and /dev/null differ diff --git a/frontend/src/images/evalai-cover.png b/frontend/src/images/evalai-cover.png deleted file mode 100644 index 0c2e875815..0000000000 Binary files a/frontend/src/images/evalai-cover.png and /dev/null differ diff --git a/frontend/src/images/evalai-logo-background.png b/frontend/src/images/evalai-logo-background.png deleted file mode 100644 index e9e7295b56..0000000000 Binary files a/frontend/src/images/evalai-logo-background.png and /dev/null differ diff --git a/frontend/src/images/evalai-logo-centered.png b/frontend/src/images/evalai-logo-centered.png deleted file mode 100644 index 7e723a8870..0000000000 Binary files a/frontend/src/images/evalai-logo-centered.png and /dev/null differ diff --git a/frontend/src/images/evalai-logo-single.png b/frontend/src/images/evalai-logo-single.png deleted file mode 100644 index 6351d4788b..0000000000 Binary files a/frontend/src/images/evalai-logo-single.png and /dev/null differ diff --git a/frontend/src/images/evalai-logo.png b/frontend/src/images/evalai-logo.png deleted file mode 100644 index 1644bd6d22..0000000000 Binary files a/frontend/src/images/evalai-logo.png and /dev/null differ diff --git a/frontend/src/images/evalai-paper.jpg b/frontend/src/images/evalai-paper.jpg deleted file mode 100644 index a1df7d8c00..0000000000 Binary files a/frontend/src/images/evalai-paper.jpg and /dev/null differ diff --git a/frontend/src/images/favicon.ico b/frontend/src/images/favicon.ico deleted file mode 100644 index 4a8cece4bb..0000000000 Binary files a/frontend/src/images/favicon.ico and /dev/null differ diff --git a/frontend/src/images/fb.png b/frontend/src/images/fb.png deleted file mode 100644 index 72be762ff6..0000000000 Binary files a/frontend/src/images/fb.png and /dev/null differ diff --git a/frontend/src/images/features/cli.png b/frontend/src/images/features/cli.png deleted file mode 100644 index a3cbf9f4b6..0000000000 Binary files a/frontend/src/images/features/cli.png and /dev/null differ diff --git a/frontend/src/images/features/docker.png b/frontend/src/images/features/docker.png deleted file mode 100644 index 4e19f08c3f..0000000000 Binary files a/frontend/src/images/features/docker.png and /dev/null differ diff --git a/frontend/src/images/features/faster-eval.png b/frontend/src/images/features/faster-eval.png deleted file mode 100644 index d035cba84b..0000000000 Binary files a/frontend/src/images/features/faster-eval.png and /dev/null differ diff --git a/frontend/src/images/features/portability.png b/frontend/src/images/features/portability.png deleted file mode 100644 index eb7250f58a..0000000000 Binary files a/frontend/src/images/features/portability.png and /dev/null differ diff --git a/frontend/src/images/features/protocols.png b/frontend/src/images/features/protocols.png deleted file mode 100644 index 41203a0f19..0000000000 Binary files a/frontend/src/images/features/protocols.png and /dev/null differ diff --git a/frontend/src/images/features/remote.png b/frontend/src/images/features/remote.png deleted file mode 100644 index 4bb4975763..0000000000 Binary files a/frontend/src/images/features/remote.png and /dev/null differ diff --git a/frontend/src/images/logo.png b/frontend/src/images/logo.png deleted file mode 100644 index 259b600ba0..0000000000 Binary files a/frontend/src/images/logo.png and /dev/null differ diff --git a/frontend/src/images/moon.png b/frontend/src/images/moon.png deleted file mode 100644 index 067cecc631..0000000000 Binary files a/frontend/src/images/moon.png and /dev/null differ diff --git a/frontend/src/images/organizations/adelaide.png b/frontend/src/images/organizations/adelaide.png deleted file mode 100644 index 5444f8e935..0000000000 Binary files a/frontend/src/images/organizations/adelaide.png and /dev/null differ diff --git a/frontend/src/images/organizations/aptiv.png b/frontend/src/images/organizations/aptiv.png deleted file mode 100644 index 5b140ed3e6..0000000000 Binary files a/frontend/src/images/organizations/aptiv.png and /dev/null differ diff --git a/frontend/src/images/organizations/argoai.png b/frontend/src/images/organizations/argoai.png deleted file mode 100644 index 83df7c6377..0000000000 Binary files a/frontend/src/images/organizations/argoai.png and /dev/null differ diff --git a/frontend/src/images/organizations/cmu.png b/frontend/src/images/organizations/cmu.png deleted file mode 100644 index 5351b21aff..0000000000 Binary files a/frontend/src/images/organizations/cmu.png and /dev/null differ diff --git a/frontend/src/images/organizations/draper.png b/frontend/src/images/organizations/draper.png deleted file mode 100644 index 5741b0c5ba..0000000000 Binary files a/frontend/src/images/organizations/draper.png and /dev/null differ diff --git a/frontend/src/images/organizations/ebay.png b/frontend/src/images/organizations/ebay.png deleted file mode 100644 index a758367fe7..0000000000 Binary files a/frontend/src/images/organizations/ebay.png and /dev/null differ diff --git a/frontend/src/images/organizations/fb.png b/frontend/src/images/organizations/fb.png deleted file mode 100644 index 1ab485b594..0000000000 Binary files a/frontend/src/images/organizations/fb.png and /dev/null differ diff --git a/frontend/src/images/organizations/google.png b/frontend/src/images/organizations/google.png deleted file mode 100644 index 1ce3510d70..0000000000 Binary files a/frontend/src/images/organizations/google.png and /dev/null differ diff --git a/frontend/src/images/organizations/gt.png b/frontend/src/images/organizations/gt.png deleted file mode 100644 index b0df47f5e8..0000000000 Binary files a/frontend/src/images/organizations/gt.png and /dev/null differ diff --git a/frontend/src/images/organizations/ibm.png b/frontend/src/images/organizations/ibm.png deleted file mode 100644 index 77e98dd42f..0000000000 Binary files a/frontend/src/images/organizations/ibm.png and /dev/null differ diff --git a/frontend/src/images/organizations/iitm.png b/frontend/src/images/organizations/iitm.png deleted file mode 100644 index b451de11ce..0000000000 Binary files a/frontend/src/images/organizations/iitm.png and /dev/null differ diff --git a/frontend/src/images/organizations/illinois.png b/frontend/src/images/organizations/illinois.png deleted file mode 100644 index a77ad32767..0000000000 Binary files a/frontend/src/images/organizations/illinois.png and /dev/null differ diff --git a/frontend/src/images/organizations/intel.png b/frontend/src/images/organizations/intel.png deleted file mode 100644 index 9f71c8240e..0000000000 Binary files a/frontend/src/images/organizations/intel.png and /dev/null differ diff --git a/frontend/src/images/organizations/iowa.png b/frontend/src/images/organizations/iowa.png deleted file mode 100644 index 24b108b35e..0000000000 Binary files a/frontend/src/images/organizations/iowa.png and /dev/null differ diff --git a/frontend/src/images/organizations/ju.png b/frontend/src/images/organizations/ju.png deleted file mode 100644 index a1d9b8c3e1..0000000000 Binary files a/frontend/src/images/organizations/ju.png and /dev/null differ diff --git a/frontend/src/images/organizations/mapillary.png b/frontend/src/images/organizations/mapillary.png deleted file mode 100644 index a114993df1..0000000000 Binary files a/frontend/src/images/organizations/mapillary.png and /dev/null differ diff --git a/frontend/src/images/organizations/mit.png b/frontend/src/images/organizations/mit.png deleted file mode 100644 index dc4d0c2adc..0000000000 Binary files a/frontend/src/images/organizations/mit.png and /dev/null differ diff --git a/frontend/src/images/organizations/motional.png b/frontend/src/images/organizations/motional.png deleted file mode 100644 index f877d81378..0000000000 Binary files a/frontend/src/images/organizations/motional.png and /dev/null differ diff --git a/frontend/src/images/organizations/nu.png b/frontend/src/images/organizations/nu.png deleted file mode 100644 index 080f8716ec..0000000000 Binary files a/frontend/src/images/organizations/nu.png and /dev/null differ diff --git a/frontend/src/images/organizations/pitt.png b/frontend/src/images/organizations/pitt.png deleted file mode 100644 index 48cc7ab938..0000000000 Binary files a/frontend/src/images/organizations/pitt.png and /dev/null differ diff --git a/frontend/src/images/organizations/siop.png b/frontend/src/images/organizations/siop.png deleted file mode 100644 index b3ccad470a..0000000000 Binary files a/frontend/src/images/organizations/siop.png and /dev/null differ diff --git a/frontend/src/images/organizations/stanford.png b/frontend/src/images/organizations/stanford.png deleted file mode 100644 index 1bd1225693..0000000000 Binary files a/frontend/src/images/organizations/stanford.png and /dev/null differ diff --git a/frontend/src/images/organizations/uau.png b/frontend/src/images/organizations/uau.png deleted file mode 100644 index 01b98a6d68..0000000000 Binary files a/frontend/src/images/organizations/uau.png and /dev/null differ diff --git a/frontend/src/images/organizations/uiuc.png b/frontend/src/images/organizations/uiuc.png deleted file mode 100644 index 067c81f369..0000000000 Binary files a/frontend/src/images/organizations/uiuc.png and /dev/null differ diff --git a/frontend/src/images/organizations/umbc.png b/frontend/src/images/organizations/umbc.png deleted file mode 100644 index f93dda3dbf..0000000000 Binary files a/frontend/src/images/organizations/umbc.png and /dev/null differ diff --git a/frontend/src/images/organizations/upisa.png b/frontend/src/images/organizations/upisa.png deleted file mode 100644 index 096415dc83..0000000000 Binary files a/frontend/src/images/organizations/upisa.png and /dev/null differ diff --git a/frontend/src/images/organizations/vt.png b/frontend/src/images/organizations/vt.png deleted file mode 100644 index 6a300a1e17..0000000000 Binary files a/frontend/src/images/organizations/vt.png and /dev/null differ diff --git a/frontend/src/images/overview.jpg b/frontend/src/images/overview.jpg deleted file mode 100644 index 8e4010ba11..0000000000 Binary files a/frontend/src/images/overview.jpg and /dev/null differ diff --git a/frontend/src/images/owl.png b/frontend/src/images/owl.png deleted file mode 100644 index 0ccc675eaf..0000000000 Binary files a/frontend/src/images/owl.png and /dev/null differ diff --git a/frontend/src/images/plane.png b/frontend/src/images/plane.png deleted file mode 100644 index 776df6db5d..0000000000 Binary files a/frontend/src/images/plane.png and /dev/null differ diff --git a/frontend/src/images/pro-pic.png b/frontend/src/images/pro-pic.png deleted file mode 100644 index 0de2b618d1..0000000000 Binary files a/frontend/src/images/pro-pic.png and /dev/null differ diff --git a/frontend/src/images/roc.jpg b/frontend/src/images/roc.jpg deleted file mode 100644 index b82f31f80a..0000000000 Binary files a/frontend/src/images/roc.jpg and /dev/null differ diff --git a/frontend/src/images/rocket.gif b/frontend/src/images/rocket.gif deleted file mode 100644 index c2d4d23bb6..0000000000 Binary files a/frontend/src/images/rocket.gif and /dev/null differ diff --git a/frontend/src/images/rocket.png b/frontend/src/images/rocket.png deleted file mode 100644 index 014d1fbf8e..0000000000 Binary files a/frontend/src/images/rocket.png and /dev/null differ diff --git a/frontend/src/images/sat.jpg b/frontend/src/images/sat.jpg deleted file mode 100644 index 8444d57c01..0000000000 Binary files a/frontend/src/images/sat.jpg and /dev/null differ diff --git a/frontend/src/images/sate.jpg b/frontend/src/images/sate.jpg deleted file mode 100644 index 94b9bfde52..0000000000 Binary files a/frontend/src/images/sate.jpg and /dev/null differ diff --git a/frontend/src/images/spaceman.png b/frontend/src/images/spaceman.png deleted file mode 100644 index ce00aaaf1b..0000000000 Binary files a/frontend/src/images/spaceman.png and /dev/null differ diff --git a/frontend/src/images/sponsors/aws.png b/frontend/src/images/sponsors/aws.png deleted file mode 100644 index e495c14f94..0000000000 Binary files a/frontend/src/images/sponsors/aws.png and /dev/null differ diff --git a/frontend/src/images/sponsors/gsoc.png b/frontend/src/images/sponsors/gsoc.png deleted file mode 100644 index bdefed69df..0000000000 Binary files a/frontend/src/images/sponsors/gsoc.png and /dev/null differ diff --git a/frontend/src/images/star.gif b/frontend/src/images/star.gif deleted file mode 100644 index fd342b388e..0000000000 Binary files a/frontend/src/images/star.gif and /dev/null differ diff --git a/frontend/src/images/star.png b/frontend/src/images/star.png deleted file mode 100644 index 8c0fd34021..0000000000 Binary files a/frontend/src/images/star.png and /dev/null differ diff --git a/frontend/src/images/star1.png b/frontend/src/images/star1.png deleted file mode 100644 index ce4b24625a..0000000000 Binary files a/frontend/src/images/star1.png and /dev/null differ diff --git a/frontend/src/images/star2.png b/frontend/src/images/star2.png deleted file mode 100644 index 834b683cd2..0000000000 Binary files a/frontend/src/images/star2.png and /dev/null differ diff --git a/frontend/src/images/sun.png b/frontend/src/images/sun.png deleted file mode 100644 index cc84bddd32..0000000000 Binary files a/frontend/src/images/sun.png and /dev/null differ diff --git a/frontend/src/images/team-over.png b/frontend/src/images/team-over.png deleted file mode 100644 index cfb790dd5d..0000000000 Binary files a/frontend/src/images/team-over.png and /dev/null differ diff --git a/frontend/src/images/teaser.png b/frontend/src/images/teaser.png deleted file mode 100644 index a53a6f3e56..0000000000 Binary files a/frontend/src/images/teaser.png and /dev/null differ diff --git a/frontend/src/images/vqa.png b/frontend/src/images/vqa.png deleted file mode 100644 index fffd938e6c..0000000000 Binary files a/frontend/src/images/vqa.png and /dev/null differ diff --git a/frontend/src/js/app.js b/frontend/src/js/app.js deleted file mode 100644 index c63a8d1d3f..0000000000 --- a/frontend/src/js/app.js +++ /dev/null @@ -1,39 +0,0 @@ -// declare app and related dependencies here -angular - .module('evalai', [ - 'ui.router', - 'ngMaterial', - 'ngAnimate', - 'ngMessages', - 'evalai-config', - 'smoothScroll', - 'focus-if', - 'ngSanitize', - 'ngFileUpload', - 'toaster', - 'angularTrix', - 'angularMoment', - 'ngclipboard', - 'moment-picker' - ]) - .service('preventTemplateCache', [function() { - var service = this; - service.request = function(config) { - var urlSegments = config.url.split('/'); - // Check each segment for "/dist/" - var isDistUrl = urlSegments.some(function(segment) { - return segment === 'dist'; - }); - if (isDistUrl) { - config.url = config.url + '?t=___REPLACE_IN_GULP___'; - - } - return config; - }; - }]) - .config(['$httpProvider',function ($httpProvider) { - $httpProvider.interceptors.push('preventTemplateCache'); - }]) - .config(['$compileProvider', function($compileProvider) { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|file|tel|javascript):/); - }]); diff --git a/frontend/src/js/config.json b/frontend/src/js/config.json deleted file mode 100644 index d52baffff1..0000000000 --- a/frontend/src/js/config.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "local": { - "EnvironmentConfig": { - "API": "http://localhost:8000/api/" - } - }, - "staging": { - "EnvironmentConfig": { - "API": "https://staging.eval.ai/api/" - } - }, - "production": { - "EnvironmentConfig": { - "API": "https://eval.ai/api/" - } - } -} diff --git a/frontend/src/js/config.sample.js b/frontend/src/js/config.sample.js deleted file mode 100644 index 4fe046de52..0000000000 --- a/frontend/src/js/config.sample.js +++ /dev/null @@ -1,2 +0,0 @@ -angular.module("moduleName", []) -.constant("constantName", {"configKey": "configValue"}); diff --git a/frontend/src/js/controllers/ChallengeInviteCtrl.js b/frontend/src/js/controllers/ChallengeInviteCtrl.js deleted file mode 100644 index 2d05469e7d..0000000000 --- a/frontend/src/js/controllers/ChallengeInviteCtrl.js +++ /dev/null @@ -1,68 +0,0 @@ -// Invoking IIFE -(function () { - - 'use strict'; - - angular - .module('evalai') - .controller('ChallengeInviteCtrl', ChallengeInviteCtrl); - - ChallengeInviteCtrl.$inject = ['utilities', '$state', '$rootScope', '$stateParams']; - - function ChallengeInviteCtrl(utilities, $state, $rootScope, $stateParams) { - - var vm = this; - vm.invitationKey = $stateParams.invitationKey; - - vm.registerChallengeParticipant = function () { - var parameters = {}; - parameters.url = 'challenges/' + vm.invitationKey + '/accept-invitation/'; - parameters.method = 'PATCH'; - parameters.token = null; - parameters.data = { - "first_name": vm.first_name, - "last_name": vm.last_name, - "password": vm.password, - }; - parameters.callback = { - onSuccess: function (response) { - var status = response.status; - if (status == 200) { - $state.go('auth.login'); - $rootScope.notify("success", "You've successfully accepted the challenge invitation."); - } - }, - onError: function (response) { - var error = response.error; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }; - - var parameters = {}; - parameters.url = 'challenges/' + vm.invitationKey + '/accept-invitation/'; - parameters.method = 'GET'; - parameters.token = null; - parameters.callback = { - onSuccess: function (response) { - vm.data = response.data; - var status = response.status; - if (status === 200) { - vm.challengeTitle = vm.data.challenge_title; - vm.host = vm.data.challenge_host_team_name; - vm.email = vm.data.email; - vm.userDetails = vm.data.user_details; - } else { - $state.go('error-404'); - } - }, - onError: function (response) { - vm.data = response.data; - $state.go('error-404'); - $rootScope.notify('error', vm.data.error); - } - }; - utilities.sendRequest(parameters); - } -})(); diff --git a/frontend/src/js/controllers/SubmissionFilesCtrl.js b/frontend/src/js/controllers/SubmissionFilesCtrl.js deleted file mode 100644 index 78221ebe6c..0000000000 --- a/frontend/src/js/controllers/SubmissionFilesCtrl.js +++ /dev/null @@ -1,40 +0,0 @@ -// Invoking IIFE -(function () { - - 'use strict'; - - angular - .module('evalai') - .controller('SubmissionFilesCtrl', SubmissionFilesCtrl); - - SubmissionFilesCtrl.$inject = ['utilities', '$rootScope', '$state', '$stateParams']; - - function SubmissionFilesCtrl(utilities, $rootScope, $state, $stateParams) { - - var vm = this; - vm.bucket = $stateParams.bucket; - vm.key = $stateParams.key; - var userKey = utilities.getData('userKey'); - var parameters = {}; - parameters.url = 'jobs/submission_files/?bucket=' + vm.bucket + '&key=' + vm.key; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function (response) { - vm.data = response.data; - var status = response.status; - if (status === 200) { - window.location.href = vm.data.signed_url; - } else { - $state.go('error-404'); - } - }, - onError: function (response) { - vm.data = response.data; - $state.go('error-404'); - $rootScope.notify('error', vm.data.error); - } - }; - utilities.sendRequest(parameters); - } -})(); diff --git a/frontend/src/js/controllers/analyticsCtrl.js b/frontend/src/js/controllers/analyticsCtrl.js deleted file mode 100644 index 78a3b610c2..0000000000 --- a/frontend/src/js/controllers/analyticsCtrl.js +++ /dev/null @@ -1,270 +0,0 @@ -// Invoking IIFE for dashboard -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('AnalyticsCtrl', AnalyticsCtrl); - - AnalyticsCtrl.$inject = ['utilities', '$state', '$rootScope']; - - function AnalyticsCtrl(utilities, $state, $rootScope) { - var vm = this; - - vm.hostTeam = {}; - vm.teamId = null; - vm.currentTeamName = null; - vm.challengeListCount = 0; - vm.challengeList = {}; - vm.challengeAnalysisDetail = {}; - vm.isTeamSelected = false; - vm.challengeId = null; - vm.currentChallengeDetails = {}; - vm.currentPhase = []; - vm.totalSubmission = {}; - vm.totalParticipatedTeams = {}; - vm.lastSubmissionTime = {}; - - var userKey = utilities.getData('userKey'); - - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.hostTeam = details.results; - - } - }, - onError: function(response) { - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - - // navigate to permissions denied page - $state.go('web.permission-denied'); - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - utilities.sendRequest(parameters); - - - parameters.url = 'challenges/challenge?mode=host'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.challengeList = details.results; - vm.challengeListCount = details.count; - } - }, - onError: function(response) { - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - - // navigate to permissions denied page - $state.go('web.permission-denied'); - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - utilities.sendRequest(parameters); - - vm.showChallengeAnalysis = function() { - if (vm.challengeId != null) { - parameters.url = 'challenges/challenge/' + vm.challengeId + '/challenge_phase'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - parameters.url = 'analytics/challenge/' + vm.challengeId + '/team/count'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.totalChallengeTeams = details.participant_team_count; - } - }, - onError: function(response) { - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - - // navigate to permissions denied page - $state.go('web.permission-denied'); - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - utilities.sendRequest(parameters); - - if (status === 200) { - vm.currentPhase = details.results; - var challengePhaseId = []; - for (var phaseCount = 0; phaseCount < vm.currentPhase.length; phaseCount++) { - parameters.url = 'analytics/challenge/' + vm.challengeId + '/challenge_phase/' + vm.currentPhase[phaseCount].id + '/analytics'; - parameters.method = 'GET'; - parameters.token = userKey; - challengePhaseId.push(vm.currentPhase[phaseCount].id); - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - for(var i=0; i'); - anchor.attr({ - href: 'data:attachment/csv;charset=utf-8,' + encodeURIComponent(details), - download: 'participant_teams_' + vm.challengeId + '.csv' - })[0].click(); - }, - onError: function(response) { - var details = response.data; - $rootScope.notify('error', details.error); - } - }; - utilities.sendRequest(parameters); - }; - } - -})(); diff --git a/frontend/src/js/controllers/authCtrl.js b/frontend/src/js/controllers/authCtrl.js deleted file mode 100644 index 89f6f8489a..0000000000 --- a/frontend/src/js/controllers/authCtrl.js +++ /dev/null @@ -1,387 +0,0 @@ -// Invoking IIFE for auth -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('AuthCtrl', AuthCtrl); - - AuthCtrl.$inject = ['utilities', '$state', '$rootScope']; - - function AuthCtrl(utilities, $state, $rootScope) { - var vm = this; - // condition for showing password strength - vm.showPasswordStrength = false; - vm.isRem = false; - vm.isAuth = false; - vm.isMail = true; - vm.userMail = ''; - // getUser for signup - vm.regUser = {}; - // useDetails for login - vm.getUser = {}; - // color to show password strength - vm.color = {}; - vm.isResetPassword = false; - // form error - vm.isFormError = false; - vm.FormError = {}; - // to store the next redirect route - vm.redirectUrl = {}; - - // default parameters - vm.isLoader = false; - vm.isPassConf = true; - vm.wrnMsg = {}; - vm.isValid = {}; - vm.confirmMsg = ''; - $rootScope.loaderTitle = ''; - $rootScope.canShowPassword = false; - $rootScope.canShowConfirmPassword = false; - vm.loginContainer = angular.element('.auth-container'); - - // show loader - vm.startLoader = function(msg) { - $rootScope.isLoader = true; - $rootScope.loaderTitle = msg; - vm.loginContainer.addClass('low-screen'); - }; - - // stop loader - vm.stopLoader = function() { - $rootScope.isLoader = false; - $rootScope.loaderTitle = ''; - vm.loginContainer.removeClass('low-screen'); - }; - - // toggle password visibility - vm.togglePasswordVisibility = function() { - $rootScope.canShowPassword = !$rootScope.canShowPassword; - }; - - // toggle confirm password visibility - vm.toggleConfirmPasswordVisibility = function() { - $rootScope.canShowConfirmPassword = !$rootScope.canShowConfirmPassword; - }; - - vm.resetForm = function() { - // getUser for signup - vm.regUser = {}; - // useDetails for login - vm.getUser = {}; - - //reset error msg - vm.wrnMsg = {}; - - //switch off form errors - vm.isFormError = false; - - //reset form when link sent for reset password - vm.isMail = true; - - // reset the eye icon and type to password - $rootScope.canShowPassword = false; - $rootScope.canShowConfirmPassword = false; - }; - - // Function to signup - vm.userSignUp = function(signupFormValid) { - if (signupFormValid) { - vm.startLoader("Setting up your details!"); - // call utility service - var parameters = {}; - parameters.url = 'auth/registration/'; - parameters.method = 'POST'; - parameters.data = { - "username": vm.regUser.name, - "password1": vm.regUser.password, - "password2": vm.regUser.confirm_password, - "email": vm.regUser.email - }; - parameters.callback = { - onSuccess: function(response) { - if (response.status == 201) { - vm.isFormError = false; - // Redirecting to Dashboard on Signup with limited privilege - $rootScope.notify("success", "Registered successfully. Please verify your email address!"); - vm.startLoader("Taking you to EvalAI!"); - // call utility service - var loginParameters = {}; - loginParameters.url = 'auth/login/'; - loginParameters.method = 'POST'; - loginParameters.data = { - "username": vm.regUser.name, - "password": vm.regUser.password, - }; - loginParameters.callback = { - onSuccess: function(response) { - if (response.status == 200) { - utilities.storeData('userKey', response.data.token); - if ($rootScope.previousState) { - $state.go($rootScope.previousState); - vm.stopLoader(); - } else { - $state.go('web.dashboard'); - } - } else { - alert("Something went wrong"); - } - }, - onError: function(response) { - if (response.status == 400) { - vm.isFormError = true; - var non_field_errors; - try { - non_field_errors = typeof(response.data.non_field_errors) !== 'undefined' ? true : false; - if (non_field_errors) { - vm.FormError = response.data.non_field_errors[0]; - } - } catch (error) { - $rootScope.notify("error", error); - } - } - vm.stopLoader(); - } - }; - utilities.sendRequest(loginParameters, "no-header"); - } - vm.stopLoader(); - }, - onError: function(response) { - if (response.status == 400) { - vm.stopLoader(); - vm.isFormError = true; - var non_field_errors, isUsername_valid, isEmail_valid, isPassword1_valid, isPassword2_valid; - try { - non_field_errors = typeof(response.data.non_field_errors) !== 'undefined' ? true : false; - isUsername_valid = typeof(response.data.username) !== 'undefined' ? true : false; - isEmail_valid = typeof(response.data.email) !== 'undefined' ? true : false; - isPassword1_valid = typeof(response.data.password1) !== 'undefined' ? true : false; - isPassword2_valid = typeof(response.data.password2) !== 'undefined' ? true : false; - if (non_field_errors) { - vm.FormError = response.data.non_field_errors[0]; - } else if (isUsername_valid) { - vm.FormError = response.data.username[0]; - } else if (isEmail_valid) { - vm.FormError = response.data.email[0]; - } else if (isPassword1_valid) { - vm.FormError = response.data.password1[0]; - } else if (isPassword2_valid) { - vm.FormError = response.data.password2[0]; - - } - - } catch (error) { - $rootScope.notify("error", error); - } - } - - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters, "no-header"); - } else { - vm.stopLoader(); - } - }; - - // Function to fetch and set refreshJWT - vm.setRefreshJWT = function () { - var parameters = {}; - parameters.url = 'accounts/user/get_auth_token'; - parameters.method = 'GET'; - parameters.token = utilities.getData('userKey'); - parameters.callback = { - onSuccess: function (response) { - if (response.status == 200) { - utilities.storeData('refreshJWT', response.data.token); - } else { - alert("Could not fetch Auth Token"); - } - }, - onError: function (response) { - if (response.status == 400) { - vm.isFormError = true; - var non_field_errors; - try { - non_field_errors = typeof (response.data.non_field_errors) !== 'undefined' ? true : false; - if (non_field_errors) { - vm.FormError = response.data.non_field_errors[0]; - } - } catch (error) { - $rootScope.notify("error", error); - } - } - } - }; - utilities.sendRequest(parameters, "header"); - }; - - // Function to login - vm.userLogin = function(loginFormValid) { - if (loginFormValid) { - vm.startLoader("Taking you to EvalAI!"); - // call utility service - var parameters = {}; - parameters.url = 'auth/login/'; - parameters.method = 'POST'; - parameters.data = { - "username": vm.getUser.name, - "password": vm.getUser.password, - }; - parameters.callback = { - onSuccess: function(response) { - if (response.status == 200) { - utilities.storeData('userKey', response.data.token); - vm.setRefreshJWT(); - if ($rootScope.previousState) { - $state.go($rootScope.previousState); - vm.stopLoader(); - } else { - $state.go('web.dashboard'); - } - } else { - alert("Something went wrong"); - } - }, - onError: function(response) { - if (response.status == 400) { - vm.isFormError = true; - var non_field_errors; - try { - non_field_errors = typeof(response.data.non_field_errors) !== 'undefined' ? true : false; - if (non_field_errors) { - vm.FormError = response.data.non_field_errors[0]; - } - } catch (error) { - $rootScope.notify("error", error); - } - } - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters, "no-header"); - } else { - vm.stopLoader(); - } - }; - - - // function to check password strength - vm.checkStrength = function(password) { - if(password) { - vm.showPasswordStrength = true; - } - else { - vm.showPasswordStrength = false; - } - var passwordStrength = utilities.passwordStrength(password); - vm.message = passwordStrength[0]; - vm.color = passwordStrength[1]; - }; - - // function to Verify Email - vm.verifyEmail = function() { - vm.startLoader("Verifying Your Email"); - var parameters = {}; - parameters.url = 'auth/registration/account-confirm-email/' + $state.params.email_conf_key + '/'; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function() { - vm.email_verify_msg = "Your email has been verified successfully"; - vm.stopLoader(); - }, - onError: function() { - vm.email_verify_msg = "Something went wrong!! Please try again."; - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters, "no-header"); - }; - - // function to reset password - vm.resetPassword = function(resetPassFormValid) { - if (resetPassFormValid) { - vm.startLoader("Sending Mail"); - var parameters = {}; - parameters.url = 'auth/password/reset/'; - parameters.method = 'POST'; - parameters.data = { - "email": vm.getUser.email, - }; - parameters.callback = { - onSuccess: function(response) { - vm.isMail = false; - vm.getUser.error = false; - vm.isFormError = false; - vm.deliveredMsg = response.data.success; - vm.getUser.email = ''; - vm.stopLoader(); - }, - onError: function(response) { - vm.isFormError = true; - vm.FormError = (response.status == 400) ? response.data.details : "Something went wrong. Please try again"; - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters, "no-header"); - } else { - vm.stopLoader(); - } - }; - - // function to reset password confirm - vm.resetPasswordConfirm = function(resetconfirmFormValid) { - if (resetconfirmFormValid) { - vm.startLoader("Resetting Your Password"); - var parameters = {}; - parameters.url = 'auth/password/reset/confirm/'; - parameters.method = 'POST'; - parameters.data = { - "new_password1": vm.getUser.new_password1, - "new_password2": vm.getUser.new_password2, - "uid": $state.params.user_id, - "token": $state.params.reset_token, - }; - - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.isResetPassword = true; - vm.deliveredMsg = details.detail; - vm.stopLoader(); - }, - onError: function(response) { - var token_valid, password1_valid, password2_valid; - vm.isFormError = true; - try { - token_valid = typeof(response.data.token) !== 'undefined' ? true : false; - password1_valid = typeof(response.data.new_password1) !== 'undefined' ? true : false; - password2_valid = typeof(response.data.new_password2) !== 'undefined' ? true : false; - if (token_valid) { - vm.FormError = "this link has been already used or expired."; - } else if (password1_valid) { - vm.FormError = Object.values(response.data.new_password1).join(" "); - } else if (password2_valid) { - vm.FormError = Object.values(response.data.new_password2).join(" "); - } - } catch (error) { - vm.FormError = "Something went wrong! Please refresh the page and try again."; - } - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters, "no-header"); - } else { - vm.stopLoader(); - } - }; - - $rootScope.$on('$stateChangeStart', function() { - vm.resetForm(); - }); - } -})(); diff --git a/frontend/src/js/controllers/challengeCreate.js b/frontend/src/js/controllers/challengeCreate.js deleted file mode 100644 index bda1413224..0000000000 --- a/frontend/src/js/controllers/challengeCreate.js +++ /dev/null @@ -1,98 +0,0 @@ -// Invoking IIFE for create challenge page -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('ChallengeCreateCtrl', ChallengeCreateCtrl); - - ChallengeCreateCtrl.$inject = ['utilities', 'loaderService', '$rootScope', '$state']; - - function ChallengeCreateCtrl(utilities, loaderService, $rootScope, $state) { - var vm = this; - var userKey = utilities.getData('userKey'); - vm.hostTeamId = utilities.getData('challengeHostTeamId'); - vm.wrnMsg = {}; - vm.isValid = {}; - vm.isFormError = false; - vm.isSyntaxErrorInYamlFile = false; - vm.input_file = null; - vm.formError = {}; - vm.syntaxErrorInYamlFile = {}; - - vm.isExistLoader = false; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - // start loader - vm.startLoader = loaderService.startLoader; - - // stop loader - vm.stopLoader = loaderService.stopLoader; - - // function to create a challenge using zip file. - vm.challengeCreate = function() { - if (vm.hostTeamId) { - var fileVal = angular.element(".file-path").val(); - - if (fileVal === null || fileVal === "") { - vm.isFormError = true; - vm.formError = "Please upload file!"; - vm.stopLoader(); - - } - if (vm.input_file) { - vm.startLoader('create challenge'); - - var parameters = {}; - parameters.url = 'challenges/challenge/challenge_host_team/' + vm.hostTeamId + '/zip_upload/'; - parameters.method = 'POST'; - var formData = new FormData(); - formData.append("zip_configuration", vm.input_file); - - parameters.data = formData; - - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - utilities.hideLoader(); - var status = response.status; - var details = response.data; - if (status === 201) { - var inputTypeFile = "input[type='file']"; - angular.forEach( - angular.element(inputTypeFile), - function(inputElem) { - angular.element(inputElem).val(null); - } - ); - - angular.element(".file-path").val(null); - $rootScope.notify("success", details.success); - localStorage.removeItem('challengeHostTeamId'); - $state.go('home'); - } - }, - onError: function(response) { - utilities.hideLoader(); - var error = response.data; - angular.element(".file-path").val(null); - vm.isSyntaxErrorInYamlFile = true; - vm.syntaxErrorInYamlFile = error.error; - vm.stopLoader(); - } - }; - } - utilities.showLoader(); - utilities.sendRequest(parameters, 'header', 'upload'); - } - else { - angular.element(".file-path").val(null); - vm.infoMsg = "Please select a challenge host team!"; - $rootScope.notify("info", vm.infoMsg); - } - }; - } -})(); - diff --git a/frontend/src/js/controllers/challengeCtrl.js b/frontend/src/js/controllers/challengeCtrl.js deleted file mode 100644 index c8bf18a82b..0000000000 --- a/frontend/src/js/controllers/challengeCtrl.js +++ /dev/null @@ -1,3126 +0,0 @@ -// Invoking IIFE for challenge page -(function() { - - 'use strict'; - angular - .module('evalai') - .controller('ChallengeCtrl', ChallengeCtrl); - - ChallengeCtrl.$inject = ['utilities', 'loaderService', '$scope', '$state', '$http', '$stateParams', '$rootScope', '$interval', '$mdDialog', 'moment', '$location', '$anchorScroll', '$timeout']; - - function ChallengeCtrl(utilities, loaderService, $scope, $state, $http, $stateParams, $rootScope, $interval, $mdDialog, moment, $location, $anchorScroll, $timeout) { - var vm = this; - vm.areSubmissionsFailing = false; - vm.getAllEntriesTestOption = "Include private submissions"; - vm.showPrivateIds = []; - vm.showLeaderboardToggle = true; - vm.challengeId = $stateParams.challengeId; - vm.phaseId = null; - vm.phaseSplitId = $stateParams.phaseSplitId; - vm.input_file = null; - vm.fileUrl = ""; - vm.methodName = ""; - vm.methodDesc = ""; - vm.projectUrl = ""; - vm.publicationUrl = ""; - vm.isPublicSubmission = null; - vm.isMultiMetricLeaderboardEnabled = {}; - vm.wrnMsg = {}; - vm.page = {}; - vm.isParticipated = false; - vm.isActive = false; - vm.phases = {}; - vm.phaseSplits = {}; - vm.hasPrizes = false; - vm.has_sponsors = false; - vm.orderLeaderboardBy = decodeURIComponent($stateParams.metric); - vm.phaseSplitLeaderboardSchema = {}; - vm.submissionMetaAttributes = []; // Stores the attributes format and phase ID for all the phases of a challenge. - vm.metaAttributesforCurrentSubmission = null; // Stores the attributes while making a submission for a selected phase. - vm.selectedPhaseSplit = {}; - vm.phaseRemainingSubmissions = {}; - vm.phaseRemainingSubmissionsFlags = {}; - vm.phaseRemainingSubmissionsCountdown = {}; - vm.isValid = {}; - vm.submissionVisibility = {}; - vm.baselineStatus = {}; - vm.verifiedStatus = {}; - vm.showUpdate = false; - vm.showLeaderboardUpdate = false; - vm.poller = null; - vm.isChallengeHost = false; - vm.isDockerBased = false; - vm.stopLeaderboard = function() {}; - vm.stopFetchingSubmissions = function() {}; - vm.currentDate = null; - vm.isPublished = false; - vm.approved_by_admin = false; - vm.sortColumn = 'rank'; - vm.reverseSort = false; - vm.columnIndexSort = 0; - vm.disableSubmit = true; - // save initial ranking - vm.initial_ranking = {}; - // loader for existing teams - vm.isExistLoader = false; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - vm.termsAndConditions = false; - vm.team = {}; - vm.isSubmissionUsingUrl = null; - vm.isSubmissionUsingCli = null; - vm.isSubmissionUsingFile = null; - vm.isRemoteChallenge = false; - vm.allowResumingSubmisisons = false; - vm.allowCancelRunningSubmissions = false; - vm.allowedSubmissionFileTypes = []; - vm.currentPhaseAllowedSubmissionFileTypes = ''; - vm.defaultSubmissionMetaAttributes = []; - vm.currentSubmissionMetaData = null; - vm.currentPhaseMetaAttributesVisibility = {}; - vm.phaseLeaderboardPublic = []; - vm.currentPhaseLeaderboardPublic = false; - vm.eligible_to_submit = false; - vm.evaluation_module_error = null; - - vm.filter_all_submission_by_team_name = ''; - vm.filter_my_submission_by_team_name = ''; - // show loader - vm.startLoader = loaderService.startLoader; - // stop loader - vm.stopLoader = loaderService.stopLoader; - - var userKey = utilities.getData('userKey'); - vm.authToken = userKey; - - vm.refreshJWT = utilities.getData('refreshJWT'); - - vm.subErrors = {}; - vm.currentHighlightedLeaderboardEntry = null; - - vm.isChallengeLeaderboardPrivate = false; - vm.previousPublicSubmissionId = null; - vm.queueName = null; - - vm.workerLogs = []; - var timezone = moment.tz.guess(); - var gmtOffset = moment().utcOffset(); - var gmtSign = gmtOffset >= 0 ? '+' : '-'; - var gmtHours = Math.abs(Math.floor(gmtOffset / 60)); - var gmtMinutes = Math.abs(gmtOffset % 60); - var gmtZone = 'GMT ' + gmtSign + ' ' + gmtHours + ':' + (gmtMinutes < 10 ? '0' : '') + gmtMinutes; - - vm.isStaticCodeUploadChallenge = false; - - // get from backend - vm.selectedWorkerResources = [512, 1024]; - - vm.workerResourceOptions = [[256, 512], [256, 1024], [256, 2048], [512, 1024], [512, 2048], [1024, 2048]]; - - vm.showBackground = (utilities.getEnvironment() == "local") || (utilities.getEnvironment() == "staging"); - - utilities.showLoader(); - - // scroll to the selected entry after page has been rendered - vm.scrollToEntryAfterLeaderboardLoads = function () { - // get unique rank number from the url & if exists hightlight the entry - $timeout(function() { - var elementId = $location.absUrl().split('?')[0].split('#')[1]; - if (elementId) { - $anchorScroll.yOffset = 90; - $anchorScroll(elementId); - $scope.isHighlight = elementId.split("leaderboardrank-")[1]; - } - }, 500); - }; - - // Function to fetch and set refreshJWT - vm.fetchRefreshJWTToken = function () { - if (userKey) { - var parameters = {}; - parameters.url = 'accounts/user/get_auth_token'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function (response) { - if (response.status == 200) { - utilities.storeData('refreshJWT', response.data.token); - vm.refreshJWT = utilities.getData('refreshJWT'); - } else { - alert("Could not fetch Auth Token"); - } - }, - onError: function (response) { - if (response.status == 400) { - vm.isFormError = true; - var non_field_errors; - try { - non_field_errors = typeof (response.data.non_field_errors) !== 'undefined' ? true : false; - if (non_field_errors) { - vm.FormError = response.data.non_field_errors[0]; - } - } catch (error) { - $rootScope.notify("error", error); - } - } - } - }; - utilities.sendRequest(parameters, "header"); - } - }; - - // check if the user is already logged in and jwt token is not set - if (typeof vm.refreshJWT != "string") { - vm.fetchRefreshJWTToken(); - } - - // API call to manage the worker from UI. - // Response data will be like: {action: "Success" or "Failure", error: } - vm.manageWorker = function(action){ - parameters.url = 'challenges/' + vm.challengeId + '/manage_worker/' + action +'/'; - parameters.method = 'PUT'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - if (details.action == "Success"){ - $rootScope.notify("success", "Worker(s) " + action + "ed succesfully."); - } - else { - $rootScope.notify("error", details.error); - } - }, - onError: function(response) { - var error = response.data.error; - if (error == undefined){ - $rootScope.notify("error", "There was an error."); - } - else { - $rootScope.notify("error", "There was an error: " + error); - } - } - }; - utilities.sendRequest(parameters); - }; - - vm.sendApprovalRequest = function() { - parameters.url = 'challenges/' + vm.challengeId + '/request_approval'; - parameters.method = 'GET'; - parameters.data = {}; - - parameters.callback = { - onSuccess: function(response) { - var result = response.data; - if (result.error) { - $rootScope.notify("error", result.error); - } else { - $rootScope.notify("success", "Request sent successfully."); - } - }, - onError: function(response) { - var error = response.data.error; - if (error) { - $rootScope.notify("error", "There was an error: " + error); - } else { - $rootScope.notify("error", "There was an error."); - } - } - }; - - utilities.sendRequest(parameters); - }; - - // Get the logs from worker if submissions are failing. - vm.startLoadingLogs = function () { - vm.logs_poller = $interval(function () { - if (vm.evaluation_module_error) { - vm.workerLogs = []; - vm.workerLogs.push(vm.evaluation_module_error); - } - else { - parameters.url = 'challenges/' + vm.challengeId + '/get_worker_logs/'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function (response) { - var details = response.data; - vm.workerLogs = []; - for (var i = 0; i < details.logs.length; i++) { - var log = details.logs[i]; - var utcTime = log.match(/\[\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\]/); - if (utcTime) { - utcTime = utcTime[0].substring(1, 20); - var date = new Date(utcTime + 'Z'); - var localTime = date.toLocaleString("sv-SE"); - var modifiedLog = log.replace(utcTime, localTime); - vm.workerLogs.push(modifiedLog); - } else { - vm.workerLogs.push(log); - } - } - }, - onError: function (response) { - var error = response.data.error; - vm.workerLogs.push(error); - } - }; - utilities.sendRequest(parameters); - } - }, 5000); - }; - - vm.stopLoadingLogs = function(){ - $interval.cancel(vm.logs_poller); - }; - - // highlight the specific entry of the leaderboard - vm.highlightSpecificLeaderboardEntry = function (key) { - key = '#' + key; - // Remove highlight from previous clicked entry - if (vm.currentHighlightedLeaderboardEntry != null) { - let prevEntry = angular.element(vm.currentHighlightedLeaderboardEntry)[0]; - prevEntry.setAttribute("class", ""); - } - let entry = angular.element(key)[0]; - entry.setAttribute("class", "highlightLeaderboard"); - vm.currentHighlightedLeaderboardEntry = key; - $scope.isHighlight = false; - }; - - // get names of the team that has participated in the current challenge - vm.getTeamName = function(challengeId) { - parameters.url = 'challenges/' + challengeId + '/participant_team/team_detail'; - parameters.method = 'GET'; - parameters.data={}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.participated_team_name = details["team_name"]; - vm.eligible_to_submit = details["approved"]; - }, - }; - utilities.sendRequest(parameters); - }; - - vm.displayDockerSubmissionInstructions = function (isDockerBased, isParticipated) { - // get remaining submission for docker based challenge - if (isDockerBased && isParticipated == true && vm.eligible_to_submit) { - parameters.url = 'jobs/' + vm.challengeId + '/remaining_submissions/'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function (response) { - vm.phaseRemainingSubmissions = response.data; - var details = vm.phaseRemainingSubmissions.phases; - for (var i = 0; i < details.length; i++) { - if (details[i].limits.submission_limit_exceeded === true) { - vm.phaseRemainingSubmissionsFlags[details[i].id] = "maxExceeded"; - } else if (details[i].limits.remaining_submissions_today_count > 0) { - vm.phaseRemainingSubmissionsFlags[details[i].id] = "showSubmissionNumbers"; - } else { - vm.eachPhase = details[i]; - vm.phaseRemainingSubmissionsFlags[details[i].id] = "showClock"; - vm.countDownTimer = function () { - vm.remainingTime = vm.eachPhase.limits.remaining_time; - vm.days = Math.floor(vm.remainingTime / 24 / 60 / 60); - vm.hoursLeft = Math.floor((vm.remainingTime) - (vm.days * 86400)); - vm.hours = Math.floor(vm.hoursLeft / 3600); - vm.minutesLeft = Math.floor((vm.hoursLeft) - (vm.hours * 3600)); - vm.minutes = Math.floor(vm.minutesLeft / 60); - vm.remainingSeconds = Math.floor(vm.remainingTime % 60); - if (vm.remainingSeconds < 10) { - vm.remainingSeconds = "0" + vm.remainingSeconds; - } - vm.phaseRemainingSubmissionsCountdown[details[i].id] = { - "days": vm.days, - "hours": vm.hours, - "minutes": vm.minutes, - "seconds": vm.remainingSeconds - }; - if (vm.remainingTime === 0) { - vm.phaseRemainingSubmissionsFlags[details[i].id] = "showSubmissionNumbers"; - } else { - vm.remainingSeconds--; - } - }; - setInterval(function () { - $rootScope.$apply(vm.countDownTimer); - }, 1000); - vm.countDownTimer(); - } - } - utilities.hideLoader(); - }, - onError: function (response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - } - }; - utilities.sendRequest(parameters); - } - }; - - // get details of the particular challenge - var parameters = {}; - parameters.token = null; - if (userKey) { - parameters.token = userKey; - } - parameters.method = 'GET'; - parameters.url = 'challenges/challenge/' + vm.challengeId + '/'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.page = details; - var offset = new Date(vm.page.start_date).getTimezoneOffset(); - vm.page.time_zone = moment.tz.zone(timezone).abbr(offset); - vm.page.gmt_zone = gmtZone; - vm.isActive = details.is_active; - vm.isPublished = vm.page.published; - vm.isForumEnabled = details.enable_forum; - vm.forumURL = details.forum_url; - vm.cliVersion = details.cli_version; - vm.isRegistrationOpen = details.is_registration_open; - vm.approved_by_admin = details.approved_by_admin; - vm.isRemoteChallenge = details.remote_evaluation; - vm.isStaticCodeUploadChallenge = details.is_static_dataset_code_upload; - vm.allowResumingSubmissions = details.allow_resuming_submissions; - vm.allowHostCancelSubmissions = details.allow_host_cancel_submissions, - vm.allowCancelRunningSubmissions = details.allow_cancel_running_submissions; - vm.allowParticipantsResubmissions = details.allow_participants_resubmissions; - vm.selectedWorkerResources = [details.worker_cpu_cores, details.worker_memory]; - vm.manual_participant_approval = details.manual_participant_approval; - vm.hasPrizes = details.has_prize; - vm.has_sponsors = details.has_sponsors; - vm.queueName = details.queue; - vm.evaluation_module_error = details.evaluation_module_error; - vm.getTeamName(vm.challengeId); - if (vm.page.image === null) { - vm.page.image = "dist/images/logo.png"; - - } - - - // Get challenge prizes - vm.prizes = []; - if (vm.hasPrizes) { - parameters.url = 'challenges/challenge/' + vm.challengeId + '/prizes/'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - vm.prizes = response.data; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - } - - // Get challenge Sponsors - vm.sponsors = {}; - if (vm.has_sponsors) { - parameters.url = 'challenges/challenge/' + vm.challengeId + '/sponsors/'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - vm.sponsors = response.data; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - } - - if (userKey) { - - // get details of challenges corresponding to participant teams of that user - parameters.url = 'participants/participant_teams/challenges/' + vm.challengeId + '/user'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.currentDate = details.datetime_now; - for (var i in details.challenge_participant_team_list) { - if (details.challenge_participant_team_list[i].challenge !== null && details.challenge_participant_team_list[i].challenge.id == vm.challengeId) { - vm.isParticipated = true; - break; - } - } - - vm.isChallengeHost = details.is_challenge_host; - - if (!vm.isParticipated) { - - vm.team = {}; - vm.teamId = null; - vm.existTeam = {}; - vm.currentPage = ''; - vm.isNext = ''; - vm.isPrev = ''; - vm.team.error = false; - - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - - if (vm.existTeam.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No team exists for now. Start by creating a new team!"; - } else { - vm.showPagination = true; - vm.paginationMsg = ""; - } - - // clear error msg from storage - utilities.deleteData('emailError'); - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.existTeam.next !== null) { - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } else { - vm.currentPage = 1; - } - - - // select team from existing list - vm.selectExistTeam = function() { - - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - // show loader - vm.startLoader("Loading Teams"); - // loader end - - parameters.url = 'challenges/challenge/' + vm.challengeId + '/participant_team/' + vm.teamId; - parameters.method = 'POST'; - parameters.callback = { - onSuccess: function() { - vm.isParticipated = true; - $state.go('web.challenge-main.challenge-page.submission'); - vm.displayDockerSubmissionInstructions(vm.page.is_docker_based, vm.isParticipated); - vm.getTeamName(vm.challengeId); - vm.stopLoader(); - }, - onError: function(response) { - if (response.status == 404) { - var error = "Please select a team first!"; - } else { - error = response.data["error"]; - } - $rootScope.notify("error", error); - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }; - - // to load data with pagination - vm.load = function(url) { - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - - vm.startLoader("Loading Teams"); - if (url !== null) { - - //store the header data in a variable - var headers = { - 'Authorization': "Token " + userKey - }; - - //Add headers with in your request - $http.get(url, { headers: headers }).then(function(response) { - // reinitialized data - var details = response.data; - vm.existTeam = details; - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.existTeam.count / 10; - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - vm.stopLoader(); - }); - } - }; - - } - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - } - vm.displayDockerSubmissionInstructions(vm.page.is_docker_based, vm.isParticipated); - utilities.hideLoader(); - }, - onError: function() { - utilities.hideLoader(); - } - }; - utilities.sendRequest(parameters); - } - - utilities.hideLoader(); - - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error.error); - $state.go('web.dashboard'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - vm.toggleParticipation = function (ev, isRegistrationOpen) { - // ev.stopPropagation(); - var participationState; - var participationModalText; - if (isRegistrationOpen) { - participationState = 'closed'; - participationModalText = 'Close participation in the challenge?'; - } else { - participationState = 'opened'; - participationModalText = 'Open participation in the challenge?'; - } - var confirm = $mdDialog.confirm() - .title(participationModalText) - .ariaLabel('') - .targetEvent(ev) - .ok('Yes, I\'m sure') - .cancel('No'); - - $mdDialog.show(confirm).then(function () { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.method = "PATCH"; - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.data = { - "is_registration_open": !isRegistrationOpen - }; - parameters.callback = { - onSuccess: function() { - vm.isRegistrationOpen = !vm.isRegistrationOpen; - $rootScope.notify('success', 'Participation is ' + participationState + ' successfully'); - }, - onError: function(response) { - var details = response.data; - $rootScope.notify('error', details.error); - } - }; - utilities.sendRequest(parameters); - }, function() {}); - }; - - vm.makeSubmission = function() { - if (vm.isParticipated && vm.eligible_to_submit) { - var fileVal = angular.element(".file-path").val(); - if ((fileVal === null || fileVal === "") && (vm.fileUrl === null || vm.fileUrl === "")) { - vm.subErrors.msg = "Please upload file or enter submission URL!"; - } else { - if (vm.isCurrentSubmissionMetaAttributeValid() !== true) { - vm.subErrors.msg = "Please provide input for meta attributes!"; - return false; - } - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - - vm.startLoader("Making Submission"); - if (vm.input_file) { - // vm.upload(vm.input_file); - } - parameters.url = 'jobs/challenge/' + vm.challengeId + '/challenge_phase/' + vm.phaseId + '/submission/'; - parameters.method = 'POST'; - var formData = new FormData(); - if (vm.isSubmissionUsingUrl) { - var urlRegex = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-/]))?/; - var validExtensions = vm.currentPhaseAllowedSubmissionFileTypes; - var isUrlValid = urlRegex.test(vm.fileUrl); - var extension = vm.fileUrl.split(".").pop(); - if (isUrlValid && validExtensions.includes(extension)) { - formData.append("file_url", vm.fileUrl); - } else { - vm.stopLoader(); - vm.subErrors.msg = "Please enter a valid URL which ends in " + validExtensions + " file extension!"; - return false; - } - } else { - formData.append("input_file", vm.input_file); - } - formData.append("status", "submitting"); - formData.append("method_name", vm.methodName); - formData.append("method_description", vm.methodDesc); - formData.append("project_url", vm.projectUrl); - formData.append("publication_url", vm.publicationUrl); - formData.append("submission_metadata", JSON.stringify(vm.metaAttributesforCurrentSubmission)); - if (vm.isPublicSubmission !== null) { - formData.append("is_public", vm.isPublicSubmission); - } - - parameters.data = formData; - - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - // vm.input_file.name = ''; - - angular.forEach( - angular.element("input[type='file']"), - function(inputElem) { - angular.element(inputElem).val(null); - } - ); - - angular.element(".file-path").val(null); - - - // Reset the value of fields related to a submission - vm.phaseId = null; - vm.fileUrl = ""; - vm.methodName = ""; - vm.methodDesc = ""; - vm.projectUrl = ""; - vm.publicationUrl = ""; - vm.isPublicSubmission = null; - $rootScope.notify("success", "Your submission has been recorded succesfully!"); - vm.disableSubmit = true; - vm.showSubmissionNumbers = false; - vm.metaAttributesforCurrentSubmission = null; - vm.stopLoader(); - }, - onError: function(response) { - var status = response.status; - var error = response.data; - - vm.phaseId = null; - vm.fileUrl = null; - vm.methodName = null; - vm.methodDesc = null; - vm.projectUrl = null; - vm.publicationUrl = null; - vm.isPublicSubmission = null; - if (status == 404) { - vm.subErrors.msg = "Please select phase!"; - } else { - if (error.error){ - vm.subErrors.msg = error.error; - } else { - vm.subErrors.msg = error.input_file[0]; - } - } - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters, 'header', 'upload'); - } - } - }; - - // get details of the particular challenge phase - parameters.url = 'challenges/challenge/' + vm.challengeId + '/challenge_phase'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.phases = details; - for (var i=0; i -1) { - attribute.values.splice(idx, 1); - } - else { - attribute.values.push(value); - } - }; - - var challengePhaseVisibility = { - owner_and_host: 1, - host: 2, - public: 3, - }; - - // get details of the particular challenge phase split - parameters.url = 'challenges/' + vm.challengeId + '/challenge_phase_split'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.phaseSplits = details; - if (details.length == 0) { - vm.isChallengeLeaderboardPrivate = true; - } - for(var i=0; i label === vm.orderLeaderboardBy); - vm.chosenMetrics = index !== -1 ? [index.toString()]: undefined; - vm.leaderboard[i]['submission__submitted_at_formatted'] = vm.leaderboard[i]['submission__submitted_at']; - vm.initial_ranking[vm.leaderboard[i].id] = i+1; - var dateTimeNow = moment(new Date()); - var submissionTime = moment(vm.leaderboard[i].submission__submitted_at); - var duration = moment.duration(dateTimeNow.diff(submissionTime)); - if (duration._data.years != 0) { - var years = duration.asYears(); - vm.leaderboard[i].submission__submitted_at = years; - if (years.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'year'; - } else { - vm.leaderboard[i].timeSpan= 'years'; - } - } - else if (duration._data.months !=0) { - var months = duration.months(); - vm.leaderboard[i].submission__submitted_at = months; - if (months.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'month'; - } else { - vm.leaderboard[i].timeSpan = 'months'; - } - } - else if (duration._data.days !=0) { - var days = duration.asDays(); - vm.leaderboard[i].submission__submitted_at = days; - if (days.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'day'; - } else { - vm.leaderboard[i].timeSpan = 'days'; - } - } - else if (duration._data.hours !=0) { - var hours = duration.asHours(); - vm.leaderboard[i].submission__submitted_at = hours; - if (hours.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'hour'; - } else { - vm.leaderboard[i].timeSpan = 'hours'; - } - } - else if (duration._data.minutes !=0) { - var minutes = duration.asMinutes(); - vm.leaderboard[i].submission__submitted_at = minutes; - if (minutes.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'minute'; - } else { - vm.leaderboard[i].timeSpan = 'minutes'; - } - } - else if (duration._data.seconds != 0) { - var second = duration.asSeconds(); - vm.leaderboard[i].submission__submitted_at = second; - if (second.toFixed(0)==1) { - vm.leaderboard[i].timeSpan = 'second'; - } else { - vm.leaderboard[i].timeSpan = 'seconds'; - } - } - } - vm.phaseName = vm.phaseSplitId; - vm.startLeaderboard(); - vm.stopLoader(); - vm.scrollToEntryAfterLeaderboardLoads(); - }, - onError: function(response) { - var error = response.data; - vm.leaderboard.error = error; - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.showMetaAttributesDialog = function(ev, attributes){ - if (attributes != false){ - vm.metaAttributesData = []; - attributes.forEach(function(attribute){ - if (attribute.type != "checkbox") { - vm.metaAttributesData.push({"name": attribute.name, "value": attribute.value}); - } - else { - vm.metaAttributesData.push({"name": attribute.name, "values": attribute.values}); - } - }); - - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'src/views/web/challenge/submission-meta-attributes-dialog.html', - clickOutsideToClose: true - }); - } - else { - $mdDialog.hide(); - } - }; - - vm.getResults = function(phaseId) { - // long polling (5s) for leaderboard - vm.start = function() { - vm.stopFetchingSubmissions(); - vm.poller = $interval(function() { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/?page=" + Math.ceil(vm.currentPage); - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - - // Set the is_public flag corresponding to each submission - for (var i = 0; i < details.results.length; i++) { - vm.submissionVisibility[details.results[i].id] = details.results[i].is_public; - vm.baselineStatus[details.results[i].id] = details.results[i].is_baseline; - vm.verifiedStatus[details.results[i].id] = details.results[i].is_verified_by_host; - } - - if (vm.submissionResult.results.length !== details.results.length) { - vm.showUpdate = true; - } else { - for (i = 0; i < details.results.length; i++) { - if (details.results[i].status !== vm.submissionResult.results[i].status) { - vm.showUpdate = true; - break; - } - } - } - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }, 10000); - }; - - vm.stopFetchingSubmissions = function() { - $interval.cancel(vm.poller); - }; - vm.stopFetchingSubmissions(); - vm.isResult = true; - if (phaseId !== undefined) { - vm.phaseId = phaseId; - } - - var all_phases = vm.phases.results; - for (var i = 0; i < vm.phases.results.length; i++) { - if (all_phases[i].id == phaseId) { - vm.currentPhaseLeaderboardPublic = all_phases[i].leaderboard_public; - vm.isCurrentPhaseRestrictedToSelectOneSubmission = all_phases[i].is_restricted_to_select_one_submission; - - var attributes = all_phases[i].default_submission_meta_attributes; - var defaultMetaAttributes = vm.getDefaultMetaAttributesDict(attributes); - vm.currentPhaseMetaAttributesVisibility = defaultMetaAttributes; - break; - } - } - - parameters.url = "analytics/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/count"; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.submissionCount = details.participant_team_submission_count; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - vm.startLoader("Loading Submissions"); - - // get submissions of a particular challenge phase - vm.isNext = ''; - vm.isPrev = ''; - vm.currentPage = ''; - vm.showPagination = false; - - if (vm.filter_my_submission_by_team_name === '') { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + - vm.phaseId + "/submission/"; - } else { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + - vm.phaseId + "/submission?participant_team__team_name=" + vm.filter_my_submission_by_team_name; - } - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - - for (var i = 0; i < details.results.length; i++) { - vm.submissionVisibility[details.results[i].id] = details.results[i].is_public; - vm.baselineStatus[details.results[i].id] = details.results[i].is_baseline; - vm.verifiedStatus[details.results[i].id] = details.results[i].is_verified_by_host; - // Set previous public submission id for phases with one public submission restriction - if (details.results[i].is_public) { - vm.previousPublicSubmissionId = details.results[i].id; - } - } - - vm.submissionResult = details; - - vm.start(); - - if (vm.submissionResult.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No results found"; - } else { - - vm.showPagination = true; - vm.paginationMsg = ""; - } - - if (vm.submissionResult.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - - } - if (vm.submissionResult.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.submissionResult.next !== null) { - vm.currentPage = vm.submissionResult.next.split('page=')[1] - 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } else { - vm.currentPage = 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } - - vm.load = function(url) { - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - vm.startLoader("Loading Submissions"); - if (url !== null) { - - //store the header data in a variable - var headers = { - 'Authorization': "Token " + userKey - }; - - //Add headers with in your request - $http.get(url, { headers: headers }).then(function(response) { - // reinitialized data - var details = response.data; - vm.submissionResult = details; - - // condition for pagination - if (vm.submissionResult.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.submissionResult.count / 150; - vm.currentRefPage = Math.ceil(vm.currentPage); - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.submissionResult.next.split('page=')[1] - 1); - vm.currentRefPage = Math.ceil(vm.currentPage); - } - - if (vm.submissionResult.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - vm.stopLoader(); - }); - } else { - vm.stopLoader(); - } - }; - vm.stopLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.refreshSubmissionData = function() { - - // get submissions of a particular challenge phase - - if (!vm.isResult) { - - vm.isNext = ''; - vm.isPrev = ''; - vm.currentPage = ''; - vm.currentRefPage = ''; - vm.showPagination = false; - } - - vm.startLoader("Loading Submissions"); - vm.submissionResult = {}; - - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/?page=" + Math.ceil(vm.currentPage); - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.submissionResult = details; - - if (vm.submissionResult.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No results found"; - } else { - - vm.showPagination = true; - vm.paginationMsg = ""; - } - - if (vm.submissionResult.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - - } - if (vm.submissionResult.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.submissionResult.next !== null) { - vm.currentPage = vm.submissionResult.next.split('page=')[1] - 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } else { - vm.currentPage = 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } - - - // Set the is_public flag corresponding to each submission - for (var i = 0; i < details.results.length; i++) { - vm.submissionVisibility[details.results[i].id] = details.results[i].is_public; - vm.baselineStatus[details.results[i].id] = details.results[i].is_baseline; - vm.verifiedStatus[details.results[i].id] = details.results[i].is_verified_by_host; - } - - vm.submissionResult = details; - vm.showUpdate = false; - vm.stopLoader(); - }, - onError: function() { - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.reRunSubmission = function(submissionObject) { - submissionObject.classList = ['spin', 'progress-indicator']; - parameters.url = 'jobs/submissions/' + submissionObject.id + '/re-run/'; - parameters.method = 'POST'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - $rootScope.notify("success", response.data.success); - submissionObject.classList = ['']; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - submissionObject.classList = ['']; - } - }; - utilities.sendRequest(parameters); - }; - - vm.resumeSubmission = function(submissionObject) { - submissionObject.classList2 = ['progress-indicator']; - parameters.url = 'jobs/submissions/' + submissionObject.id + '/resume/'; - parameters.method = 'POST'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - $rootScope.notify("success", response.data.success); - submissionObject.classList2 = ['']; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - submissionObject.classList2 = ['']; - } - }; - utilities.sendRequest(parameters); - }; - - vm.refreshLeaderboard = function() { - vm.startLoader("Loading Leaderboard Items"); - vm.leaderboard = {}; - parameters.url = "jobs/" + "challenge_phase_split/" + vm.phaseSplitId + "/leaderboard/?page_size=1000&order_by=" + vm.orderLeaderboardBy; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.leaderboard = details.results; - vm.startLeaderboard(); - vm.stopLoader(); - }, - onError: function(response) { - var error = response.data; - vm.leaderboard.error = error; - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.toggleShowLeaderboardByLatest = function() { - parameters.url = "challenges/challenge/create/challenge_phase_split/" + vm.phaseSplitId + "/"; - parameters.method = "PATCH"; - parameters.data = { - "show_leaderboard_by_latest_submission": !vm.selectedPhaseSplit.show_leaderboard_by_latest_submission - }; - parameters.callback = { - onSuccess: function (response) { - vm.selectedPhaseSplit = response.data; - vm.getLeaderboard(vm.selectedPhaseSplit.id); - vm.sortLeaderboardTextOption = (vm.selectedPhaseSplit.show_leaderboard_by_latest_submission) ? - "Sort by best":"Sort by latest"; - }, - onError: function (response) { - var error = response.data; - vm.stopLoader(); - $rootScope.notify("error", error); - return false; - } - }; - utilities.sendRequest(parameters); - }; - - // function for getting all submissions on leaderboard public/private - vm.getAllEntriesOnPublicLeaderboard = function(phaseSplitId) { - vm.stopLeaderboard = function() { - $interval.cancel(vm.poller); - }; - vm.stopLeaderboard(); - - vm.isResult = true; - vm.phaseSplitId = phaseSplitId; - // loader for exisiting teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - vm.startLoader("Loading Leaderboard Items"); - - // Show leaderboard - vm.leaderboard = {}; - parameters.url = "jobs/" + "phase_split/" + vm.phaseSplitId + "/public_leaderboard_all_entries/?page_size=1000&order_by=" + vm.orderLeaderboardBy; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.leaderboard = details.results; - - // setting last_submission time - for (var i = 0; i < vm.leaderboard.length; i++) { - vm.leaderboard[i]['submission__submitted_at_formatted'] = vm.leaderboard[i]['submission__submitted_at']; - vm.initial_ranking[vm.leaderboard[i].id] = i + 1; - var dateTimeNow = moment(new Date()); - var submissionTime = moment(vm.leaderboard[i].submission__submitted_at); - var duration = moment.duration(dateTimeNow.diff(submissionTime)); - if (duration._data.years != 0) { - var years = duration.asYears(); - vm.leaderboard[i].submission__submitted_at = years; - if (years.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'year'; - } else { - vm.leaderboard[i].timeSpan = 'years'; - } - } else if (duration._data.months != 0) { - var months = duration.months(); - vm.leaderboard[i].submission__submitted_at = months; - if (months.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'month'; - } else { - vm.leaderboard[i].timeSpan = 'months'; - } - } else if (duration._data.days != 0) { - var days = duration.asDays(); - vm.leaderboard[i].submission__submitted_at = days; - if (days.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'day'; - } else { - vm.leaderboard[i].timeSpan = 'days'; - } - } else if (duration._data.hours != 0) { - var hours = duration.asHours(); - vm.leaderboard[i].submission__submitted_at = hours; - if (hours.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'hour'; - } else { - vm.leaderboard[i].timeSpan = 'hours'; - } - } else if (duration._data.minutes != 0) { - var minutes = duration.asMinutes(); - vm.leaderboard[i].submission__submitted_at = minutes; - if (minutes.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'minute'; - } else { - vm.leaderboard[i].timeSpan = 'minutes'; - } - } else if (duration._data.seconds != 0) { - var second = duration.asSeconds(); - vm.leaderboard[i].submission__submitted_at = second; - if (second.toFixed(0) == 1) { - vm.leaderboard[i].timeSpan = 'second'; - } else { - vm.leaderboard[i].timeSpan = 'seconds'; - } - } - } - vm.phaseName = vm.phaseSplitId; - vm.startLeaderboard(); - vm.stopLoader(); - vm.scrollToEntryAfterLeaderboardLoads(); - }, - onError: function(response) { - var error = response.data; - vm.leaderboard.error = error; - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - if (vm.phaseSplitId) { - vm.getLeaderboard(vm.phaseSplitId); - } - vm.getAllEntries = false; - - // function for toggeling between public leaderboard and complete leaderboard [public/private] - vm.toggleLeaderboard = function(getAllEntries){ - vm.getAllEntries = getAllEntries; - if (vm.phaseSplitId) { - if (vm.getAllEntries){ - vm.getAllEntriesTestOption = "Exclude private submissions"; - vm.getAllEntriesOnPublicLeaderboard(vm.phaseSplitId); - } - else { - vm.getAllEntriesTestOption = "Include private submissions"; - vm.getLeaderboard(vm.phaseSplitId); - } - } - }; - - // function to create new team for participating in challenge - vm.createNewTeam = function() { - vm.isLoader = true; - vm.loaderTitle = ''; - vm.newContainer = angular.element('.new-team-card'); - - vm.startLoader("Loading Teams"); - - parameters.url = 'participants/participant_team'; - parameters.method = 'POST'; - parameters.data = { - "team_name": vm.team.name, - "team_url": vm.team.url - }; - parameters.callback = { - onSuccess: function() { - $rootScope.notify("success", "Team " + vm.team.name + " has been created successfully!"); - vm.team.error = false; - vm.stopLoader(); - vm.team = {}; - - vm.startLoader("Loading Teams"); - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - vm.showPagination = true; - vm.paginationMsg = ''; - - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = 1; - } else { - vm.isNext = ''; - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - - - vm.stopLoader(); - } - }, - onError: function() { - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }, - onError: function(response) { - var error = response.data; - vm.team.error = error.team_name[0]; - vm.stopLoader(); - $rootScope.notify("error", "New team couldn't be created."); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.setWorkerResources = function() { - parameters.url = "challenges/" + vm.challengeId + "/scale_resources/"; - parameters.method = 'PUT'; - parameters.data = { - "worker_cpu_cores": vm.selectedWorkerResources[0], - "worker_memory": vm.selectedWorkerResources[1], - }; - parameters.callback = { - onSuccess: function(response) { - $rootScope.notify("success", response.data["Success"]); - vm.team.error = false; - vm.stopLoader(); - vm.team = {}; - }, - onError: function(response) { - vm.team.error = true; - vm.stopLoader(); - let requestError = ''; - if (typeof(response.data) == 'string') { - requestError = response.data; - } else { - requestError = response.data["error"]; - } - $rootScope.notify("error", "Error scaling evaluation worker resources: " + requestError); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.getAllSubmissionResults = function(phaseId) { - vm.stopFetchingSubmissions = function() { - $interval.cancel(vm.poller); - }; - - vm.stopFetchingSubmissions(); - vm.isResult = true; - if (phaseId !== undefined) { - vm.phaseId = phaseId; - } - - // loader for loading submissions. - vm.startLoader = loaderService.startLoader; - vm.startLoader("Loading Submissions"); - - // get submissions of all the challenge phases - vm.isNext = ''; - vm.isPrev = ''; - vm.currentPage = ''; - vm.showPagination = false; - if (vm.filter_all_submission_by_team_name === '') { - parameters.url = "challenges/" + vm.challengeId + "/challenge_phase/" + - vm.phaseId + "/submissions"; - } else { - parameters.url = "challenges/" + vm.challengeId + "/challenge_phase/" + - vm.phaseId + "/submissions?participant_team__team_name=" + vm.filter_all_submission_by_team_name; - } - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.submissionResult = details; - - if (Array.isArray(vm.submissionResult.results)) { - for (var i = 0; i < details.results.length; i++) { - vm.submissionVisibility[details.results[i].id] = details.results[i].is_public; - vm.verifiedStatus[details.results[i].id] = details.results[i].is_verified_by_host; - } - } - - if (vm.submissionResult.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No results found"; - } else { - vm.showPagination = true; - vm.paginationMsg = ""; - } - - if (vm.submissionResult.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - - } - if (vm.submissionResult.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.submissionResult.next !== null) { - vm.currentPage = vm.submissionResult.next.split('page=')[1] - 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } else { - vm.currentPage = 1; - vm.currentRefPage = Math.ceil(vm.currentPage); - } - - vm.load = function(url) { - // loader for loading submissions - vm.startLoader = loaderService.startLoader; - vm.startLoader("Loading Submissions"); - if (url !== null) { - - //store the header data in a variable - var headers = { - 'Authorization': "Token " + userKey - }; - - //Add headers with in your request - $http.get(url, { headers: headers }).then(function(response) { - // reinitialized data - var details = response.data; - vm.submissionResult = details; - - // condition for pagination - if (vm.submissionResult.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.submissionResult.count / 150; - vm.currentRefPage = Math.ceil(vm.currentPage); - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.submissionResult.next.split('page=')[1] - 1); - vm.currentRefPage = Math.ceil(vm.currentPage); - } - - if (vm.submissionResult.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - vm.stopLoader(); - }); - } else { - vm.stopLoader(); - } - }; - vm.stopLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }; - - vm.changeSubmissionVisibility = function(submission_id, submissionVisibility) { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/" + submission_id; - parameters.method = 'PATCH'; - parameters.data = { - "is_public": submissionVisibility - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var message = ""; - if (status === 200) { - var detail = response.data; - if (detail['is_public'] == true) { - message = "The submission is made public."; - } - else { - message = "The submission is made private."; - } - $rootScope.notify("success", message); - if (vm.isCurrentPhaseRestrictedToSelectOneSubmission) { - $mdDialog.hide(); - if (vm.previousPublicSubmissionId != submission_id) { - vm.submissionVisibility[vm.previousPublicSubmissionId] = false; - vm.previousPublicSubmissionId = submission_id; - } else { - vm.previousPublicSubmissionId = null; - } - vm.submissionVisibility[submission_id] = submissionVisibility; - } - } - }, - onError: function(response) { - var error = response.data; - var status = response.status; - if (status === 400 || status === 403) { - $rootScope.notify("error", error.error); - } - if (vm.isCurrentPhaseRestrictedToSelectOneSubmission) { - $mdDialog.hide(); - vm.submissionVisibility[submission_id] = !vm.submissionVisibility[submission_id]; - } - } - }; - utilities.sendRequest(parameters); - }; - - vm.activateCollapsible = function() { - angular.element('.collapsible').collapsible(); - }; - - vm.team_approval_list = function(){ - var parameters = {}; - parameters.token = utilities.getData('userKey'); - parameters.url = 'challenges/challenge/' + $stateParams.challengeId + '/get_participant_teams'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - vm.approved_teams = response.data; - vm.activateCollapsible(); - }, - onError: function() { - $rootScope.notify("error", "Some error occured.Please try again."); - } - }; - utilities.sendRequest(parameters); - }; - - vm.showapprovalparticipantteamDialog = function(challengeId, participant_team_id, approved_status) { - if (approved_status) { - vm.dialog = {}; - vm.dialog.challengeId = challengeId; - vm.dialog.participant_team_id = participant_team_id; - vm.dialog.approved_status = approved_status; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-approvalConfirm.html', - }); - } - else { - vm.check_approval_status(challengeId, participant_team_id, approved_status, false); - } - }; - - - vm.check_approval_status = function(challengeId, participant_team_id, approved_status, formvalid){ - var parameters = {}; - parameters.token = utilities.getData('userKey'); - parameters.method = 'POST'; - if(approved_status) { - if (formvalid) { - parameters.url = 'challenges/challenge/' + challengeId + '/approve_participant_team/' + participant_team_id; - parameters.callback = { - onSuccess: function(response) { - if(response.status == 201){ - $rootScope.notify("success", "Participant Team Approved successfully."); - } - }, - onError: function(response) { - $rootScope.notify("error", response.data.error); - } - }; - utilities.sendRequest(parameters); - $mdDialog.hide(); - } - else { - $mdDialog.hide(); - $state.reload(); - } - } - else { - parameters.url = 'challenges/challenge/' + challengeId + '/disapprove_participant_team/' + participant_team_id; - parameters.callback = { - onSuccess: function(response) { - if(response.status == 204){ - $rootScope.notify("success", "Participant Team Disapproved successfully."); - } - }, - onError: function(response) { - $rootScope.notify("error", response.data.error); - $state.reload(); - } - }; - utilities.sendRequest(parameters); - } - }; - - - vm.changeBaselineStatus = function(submission_id) { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/" + submission_id; - parameters.method = 'PATCH'; - parameters.data = { - "is_baseline": vm.baselineStatus[submission_id] - }; - parameters.callback = { - onSuccess: function() {}, - onError: function() {} - }; - - utilities.sendRequest(parameters); - }; - - vm.showRemainingSubmissions = function(phaseID) { - vm.remainingSubmissions = {}; - vm.remainingTime = {}; - vm.showClock = false; - vm.showSubmissionNumbers = false; - vm.maxExceeded = false; - parameters.url = "jobs/" + vm.challengeId + "/remaining_submissions/"; - parameters.method = 'GET'; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - for (var phase in response.data.phases) { - if (response.data.phases[phase].id == phaseID) { - var details = response.data.phases[phase].limits; - } - } - if (status === 200) { - if (details.submission_limit_exceeded === true) { - vm.maxExceeded = true; - vm.maxExceededMessage = details.message; - vm.disableSubmit = true; - } - else if (details.remaining_submissions_today_count > 0) { - vm.remainingSubmissions = details; - vm.showSubmissionNumbers = true; - vm.disableSubmit = false; - } else { - vm.message = details; - vm.showClock = true; - vm.disableSubmit = true; - vm.countDownTimer = function() { - vm.remainingTime = vm.message.remaining_time; - vm.days = Math.floor(vm.remainingTime / 24 / 60 / 60); - vm.hoursLeft = Math.floor((vm.remainingTime) - (vm.days * 86400)); - vm.hours = Math.floor(vm.hoursLeft / 3600); - vm.minutesLeft = Math.floor((vm.hoursLeft) - (vm.hours * 3600)); - vm.minutes = Math.floor(vm.minutesLeft / 60); - vm.remainingSeconds = Math.floor(vm.remainingTime % 60); - if (vm.remainingSeconds < 10) { - vm.remainingSeconds = "0" + vm.remainingSeconds; - } - if (vm.remainingTime === 0) { - vm.showSubmissionNumbers = true; - } else { - vm.remainingSeconds--; - } - }; - setInterval(function() { - $rootScope.$apply(vm.countDownTimer); - }, 1000); - vm.countDownTimer(); - } - } - }, - onError: function(response) { - var details = response.data; - vm.stopLoader(); - $rootScope.notify("error", details.error); - } - }; - utilities.sendRequest(parameters); - }; - - vm.fileTypes = [{ 'name': 'csv' }]; - vm.fields = [{ - 'label': 'Team Name', - 'id': 'participant_team' - },{ - 'label': 'Team Members', - 'id': 'participant_team_members' - },{ - 'label': 'Team Members Email Id', - 'id': 'participant_team_members_email' - },{ - 'label': 'Team Members Affiliation', - 'id': 'participant_team_members_affiliation' - },{ - 'label': 'Challenge Phase', - 'id': 'challenge_phase' - },{ - 'label': 'Status', - 'id': 'status' - },{ - 'label': 'Created By', - 'id': 'created_by' - },{ - 'label': 'Execution Time', - 'id': 'execution_time' - },{ - 'label': 'Submission Number', - 'id': 'submission_number' - },{ - 'label': 'Submitted File', - 'id': 'input_file' - },{ - 'label': 'Stdout File', - 'id': 'stdout_file' - },{ - 'label': 'Stderr File', - 'id': 'stderr_file' - },{ - 'label': 'Environment Log File', - 'id': 'environment_log_file' - },{ - 'label': 'Submitted At', - 'id': 'created_at' - },{ - 'label': 'Submission Result File', - 'id': 'submission_result_file' - },{ - 'label': 'Submission Metadata File', - 'id': 'submission_metadata_file' - },{ - 'label': 'Method Name', - 'id': 'method_name' - },{ - 'label': 'Method Description', - 'id': 'method_description' - },{ - 'label': 'Publication URL', - 'id': 'publication_url' - },{ - 'label': 'Project URL', - 'id': 'project_url' - },{ - 'label': 'Submission Meta Attributes', - 'id': 'submission_meta_attributes' - }]; - - vm.downloadChallengeSubmissions = function() { - if (vm.phaseId) { - parameters.url = "challenges/" + vm.challengeId + "/phase/" + vm.phaseId + "/download_all_submissions/" + vm.fileSelected + "/"; - if (vm.fieldsToGet === undefined || vm.fieldsToGet.length === 0) { - parameters.method = "GET"; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - var anchor = angular.element(''); - anchor.attr({ - href: 'data:attachment/csv;charset=utf-8,' + encodeURI(details), - download: 'all_submissions.csv' - })[0].click(); - }, - onError: function(response) { - var details = response.data; - $rootScope.notify('error', details.error); - } - }; - utilities.sendRequest(parameters); - } - else { - parameters.method = "POST"; - var fieldsExport = []; - for(var i = 0 ; i < vm.fields.length ; i++) { - if (vm.fieldsToGet.includes(vm.fields[i].id)) { - fieldsExport.push(vm.fields[i].id); - } - } - parameters.data = fieldsExport; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - var anchor = angular.element(''); - anchor.attr({ - href: 'data:attachment/csv;charset=utf-8,' + encodeURI(details), - download: 'all_submissions.csv' - })[0].click(); - }, - onError: function(response) { - var details = response.data; - $rootScope.notify('error', details.error); - } - }; - utilities.sendRequest(parameters); - } - - } else { - $rootScope.notify("error", "Please select a challenge phase!"); - } - }; - - vm.isOptionChecked = function (option, attribute) { - if( - attribute.values.findIndex((el) => { - return el===option; - }) !== -1 - ) { - return true; - } - return false; - }; - - vm.showMdDialog = function (ev, submissionId) { - for (var i = 0; i < vm.submissionResult.count; i++) { - if (vm.submissionResult.results[i].id === submissionId) { - vm.submissionMetaData = vm.submissionResult.results[i]; - break; - } - } - vm.method_name = vm.submissionMetaData.method_name; - vm.method_description = vm.submissionMetaData.method_description; - vm.project_url = vm.submissionMetaData.project_url; - vm.publication_url = vm.submissionMetaData.publication_url; - vm.submissionId = submissionId; - if (vm.submissionMetaData.submission_metadata != null) { - vm.currentSubmissionMetaData = JSON.parse(JSON.stringify(vm.submissionMetaData.submission_metadata)); - } - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/update-submission-metadata.html', - }); - }; - - vm.showVisibilityDialog = function(submissionId, submissionVisibility) { - vm.submissionId = submissionId; - // Show modal only when submission is being made public - if (submissionVisibility) { - // Show pop up only when there's a submission already selected - if (vm.previousPublicSubmissionId) { - $mdDialog.show({ - scope: $scope, - preserveScope: true, - templateUrl: 'dist/views/web/challenge/update-submission-visibility.html' - }); - } else { - vm.changeSubmissionVisibility(submissionId, submissionVisibility); - } - } else { - // Case when a submission is made private - vm.changeSubmissionVisibility(submissionId, submissionVisibility); - } - }; - - vm.cancelSubmission = function(submissionId) { - parameters.url = "jobs/challenges/" + vm.challengeId + "/submissions/" + submissionId + "/update_submission_meta/"; - parameters.method = 'PATCH'; - parameters.data = { - "status": "cancelled", - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "Submission cancelled successfully!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - }; - - vm.showCancelSubmissionDialog = function(submissionId, status) { - if (!vm.allowCancelRunningSubmissions && status != "submitted") { - $rootScope.notify("error", "Only unproccessed submissions can be cancelled"); - return; - } - vm.submissionId = submissionId; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - templateUrl: 'dist/views/web/challenge/cancel-submission.html' - }); - }; - - vm.hideDialog = function() { - $mdDialog.hide(); - }; - - vm.updateSubmissionMetaData = function(updateSubmissionMetaDataForm) { - if (updateSubmissionMetaDataForm) { - parameters.url = "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/" + vm.submissionId; - parameters.method = 'PATCH'; - parameters.data = { - "method_name": vm.method_name, - "method_description": vm.method_description, - "project_url": vm.project_url, - "publication_url": vm.publication_url, - "submission_metadata": vm.currentSubmissionMetaData - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The data is successfully updated!"); - if(vm.currentSubmissionMetaData != null) { - vm.submissionMetaData.submission_metadata = JSON.parse(JSON.stringify(vm.currentSubmissionMetaData)); - } - } - }, - onError: function(response) { - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - } else { - $mdDialog.hide(); - } - }; - - vm.verifySubmission = function(submissionId, isVerified) { - parameters.url = "jobs/challenges/" + vm.challengeId + "/submissions/" + submissionId + "/update_submission_meta/"; - parameters.method = 'PATCH'; - parameters.data = { - "is_verified_by_host": isVerified, - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $rootScope.notify("success", "Verification status updated successfully!"); - } - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }; - - vm.isStarred = function() { - // Get the stars count and user specific starred or unstarred - parameters.url = "challenges/" + vm.challengeId + "/"; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.count = details['count'] || 0; - vm.is_starred = details['is_starred']; - if (details['is_starred'] === false) { - vm.caption = 'Star'; - } else { - vm.caption = 'Unstar'; - } - }, - onError: function() {} - }; - utilities.sendRequest(parameters); - }; - - vm.starChallenge = function() { - parameters.url = "challenges/" + vm.challengeId + "/"; - parameters.method = 'POST'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.count = details['count']; - vm.is_starred = details['is_starred']; - if (details.is_starred === true) { - vm.caption = 'Unstar'; - } else { - vm.caption = 'Star'; - } - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }; - - // Edit challenge overview - vm.overviewDialog = function(ev) { - vm.tempDesc = vm.page.description; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-overview.html', - escapeToClose: false - }); - }; - - vm.editChallengeOverview = function(editChallengeOverviewForm) { - if (editChallengeOverviewForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = { - "description": vm.page.description - - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The description is successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.description = vm.tempDesc; - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - } else { - vm.page.description = vm.tempDesc; - $mdDialog.hide(); - } - }; - - // Delete challenge - vm.deleteChallengeDialog = function(ev) { - vm.titleInput = ""; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/delete-challenge/delete-challenge.html', - escapeToClose: false - }); - }; - - vm.deleteChallenge = function(deleteChallengeForm) { - if (deleteChallengeForm){ - var parameters = {}; - parameters.url = "challenges/challenge/" + vm.challengeId + "/disable"; - parameters.method = 'POST'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 204){ - $mdDialog.hide(); - $rootScope.notify("success", "The Challenge is successfully deleted!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - } else { - $mdDialog.hide(); - } - }; - - // Edit submission guidelines - vm.submissionGuidelinesDialog = function(ev) { - vm.tempSubmissionGuidelines = vm.page.submission_guidelines; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-submission-guidelines.html', - escapeToClose: false - }); - }; - - vm.editSubmissionGuideline = function(editSubmissionGuidelinesForm) { - if (editSubmissionGuidelinesForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = { - "submission_guidelines": vm.page.submission_guidelines - - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The submission guidelines is successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.submission_guidelines = vm.tempSubmissionGuidelines; - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - } else { - vm.page.submission_guidelines = vm.tempSubmissionGuidelines; - $mdDialog.hide(); - } - }; - - // Edit Evaluation Criteria - vm.evaluationCriteriaDialog = function(ev) { - vm.tempEvaluationCriteria = vm.page.evaluation_details; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-evaluation-criteria.html', - escapeToClose: false - }); - }; - - vm.editEvaluationCriteria = function(editEvaluationCriteriaForm) { - if (editEvaluationCriteriaForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = { - "evaluation_details": vm.page.evaluation_details - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The evaluation details is successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.evaluation_details = vm.tempEvaluationCriteria; - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - - } else { - vm.page.evaluation_details = vm.tempEvaluationCriteria; - $mdDialog.hide(); - } - }; - - - // Edit Evaluation Script - vm.evaluationScriptDialog = function(ev) { - vm.tempEvaluationCriteria = vm.page.evaluation_details; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-evaluation-script.html', - escapeToClose: false - }); - }; - - vm.editEvalScript = function(editEvaluationCriteriaForm) { - if (editEvaluationCriteriaForm) { - if (vm.editEvaluationScript === undefined || vm.editEvaluationScript === null - || vm.editEvaluationScript === "") { - var error = "Please upload a valid evaluation script!"; - $mdDialog.hide(); - $rootScope.notify("error", error); - return; - } - var formData = new FormData(); - formData.append("evaluation_script", vm.editEvaluationScript); - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = formData; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The evaluation script is successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.evaluation_details = vm.tempEvaluationCriteria; - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters, 'header', 'upload'); - - } else { - vm.page.evaluation_details = vm.tempEvaluationCriteria; - $mdDialog.hide(); - } - }; - - - // Edit Terms and Conditions - vm.termsAndConditionsDialog = function(ev) { - vm.tempTermsAndConditions = vm.page.terms_and_conditions; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-terms-and-conditions.html', - escapeToClose: false - }); - }; - - vm.editTermsAndConditions = function(editTermsAndConditionsForm) { - if (editTermsAndConditionsForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = { - "terms_and_conditions": vm.page.terms_and_conditions - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The terms and conditions are successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.terms_and_conditions = vm.tempTermsAndConditions; - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - } else { - vm.page.terms_and_conditions = vm.tempTermsAndConditions; - $mdDialog.hide(); - } - }; - - // Edit Challenge Title - vm.challengeTitleDialog = function(ev) { - vm.tempChallengeTitle = vm.page.title; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-title.html', - escapeToClose: false - }); - }; - - vm.editChallengeTitle = function(editChallengeTitleForm) { - if (editChallengeTitleForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - parameters.data = { - "title": vm.page.title - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The challenge title is successfully updated!"); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.title = vm.tempChallengeTitle; - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - } else { - vm.page.title = vm.tempChallengeTitle; - $mdDialog.hide(); - } - }; - - vm.challengePhaseDialog = function(ev, phase) { - vm.page.challenge_phase = phase; - vm.page.max_submissions_per_day = phase.max_submissions_per_day; - vm.page.max_submissions_per_month = phase.max_submissions_per_month; - vm.phaseStartDate = moment(phase.start_date); - vm.phaseEndDate = moment(phase.end_date); - vm.testAnnotationFile = null; - vm.sanityCheckPass = true; - vm.sanityCheck = ""; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-phase.html', - escapeToClose: false - }); - }; - - vm.editChallengePhase = function(editChallengePhaseForm) { - if (editChallengePhaseForm) { - vm.challengePhaseId = vm.page.challenge_phase.id; - parameters.url = "challenges/challenge/" + vm.challengeId + "/challenge_phase/" + vm.challengePhaseId; - parameters.method = 'PATCH'; - var formData = new FormData(); - formData.append("name", vm.page.challenge_phase.name); - formData.append("description", vm.page.challenge_phase.description); - formData.append("start_date", vm.phaseStartDate.toISOString()); - formData.append("end_date", vm.phaseEndDate.toISOString()); - formData.append("max_submissions_per_day", vm.page.challenge_phase.max_submissions_per_day); - formData.append("max_submissions_per_month", vm.page.challenge_phase.max_submissions_per_month); - formData.append("max_submissions", vm.page.challenge_phase.max_submissions); - formData.append("max_concurrent_submissions_allowed", vm.page.challenge_phase.max_concurrent_submissions_allowed); - if (vm.testAnnotationFile) { - formData.append("test_annotation", vm.testAnnotationFile); - } - parameters.data = formData; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - utilities.hideLoader(); - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The challenge phase details are successfully updated!"); - } - }, - onError: function(response) { - utilities.hideLoader(); - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.showLoader(); - utilities.sendRequest(parameters, 'header', 'upload'); - } else { - parameters.url = 'challenges/challenge/' + vm.challengeId + '/challenge_phase'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.phases = details; - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - utilities.sendRequest(parameters); - $mdDialog.hide(); - } - }; - - vm.publishChallenge = function(ev) { - ev.stopPropagation(); - vm.toggleChallengeState = null; - vm.publishDesc = null; - if (vm.isPublished) - vm.toggleChallengeState = "private"; - else - vm.toggleChallengeState = "public"; - - var confirm = $mdDialog.confirm() - .title('Make this challenge ' + vm.toggleChallengeState + '?') - .ariaLabel('') - .targetEvent(ev) - .ok('Yes') - .cancel('No'); - - $mdDialog.show(confirm).then(function() { - parameters.url = "challenges/challenge_host_team/" + vm.page.creator.id + "/challenge/" + vm.page.id; - parameters.method = 'PATCH'; - parameters.data = { - "published": !vm.isPublished, - }; - vm.isPublished = !vm.isPublished; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $mdDialog.hide(); - $rootScope.notify("success", "The challenge was successfully made " + vm.toggleChallengeState); - } - }, - onError: function(response) { - $mdDialog.hide(); - vm.page.description = vm.tempDesc; - var error = response.data; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - }, function() { - // Nope - }); - }; - - // Edit Challenge Start and End Date - vm.challengeDateDialog = function(ev) { - vm.challengeStartDate = moment(vm.page.start_date); - vm.challengeEndDate = moment(vm.page.end_date); - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-date.html', - escapeToClose: false - }); - }; - - vm.editChallengeDate = function(editChallengeDateForm) { - if (editChallengeDateForm) { - var challengeHostList = utilities.getData("challengeCreator"); - for (var challenge in challengeHostList) { - if (challenge == vm.challengeId) { - vm.challengeHostId = challengeHostList[challenge]; - break; - } - } - parameters.url = "challenges/challenge_host_team/" + vm.challengeHostId + "/challenge/" + vm.challengeId; - parameters.method = 'PATCH'; - if (new Date(vm.challengeStartDate).valueOf() < new Date(vm.challengeEndDate).valueOf()) { - parameters.data = { - "start_date": vm.challengeStartDate, - "end_date": vm.challengeEndDate - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - utilities.hideLoader(); - if (status === 200) { - vm.page.start_date = vm.challengeStartDate.format("MMM D, YYYY h:mm:ss A"); - vm.page.end_date = vm.challengeEndDate.format("MMM D, YYYY h:mm:ss A"); - $mdDialog.hide(); - $rootScope.notify("success", "The challenge start and end date is successfully updated!"); - } - }, - onError: function(response) { - utilities.hideLoader(); - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.showLoader(); - utilities.sendRequest(parameters); - } else { - $rootScope.notify("error", "The challenge start date cannot be same or greater than end date."); - } - } else { - $mdDialog.hide(); - } - }; - - vm.editchallengeTagDialog = function(ev) { - vm.tags = vm.page.list_tags; - vm.domain_choices(); - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-tag.html', - escapeToClose: false - }); - }; - - vm.editChallengeTag = function(editChallengeTagDomainForm) { - var new_tags; - if (!editChallengeTagDomainForm) { - $mdDialog.hide(); - return; - } - new_tags = typeof vm.tags === 'string' - ? vm.tags.split(",").map(item => item.trim()) - : vm.page.list_tags.map(tag => tag); - - if (typeof vm.tags === 'string' && (new_tags.length > 4 || new_tags.some(tag => tag.length > 15))) { - $rootScope.notify("error", "Invalid tags! Maximum 4 tags are allowed, and each tag must be 15 characters or less."); - return; - } - parameters.url = "challenges/challenge/" + vm.challengeId + "/update_challenge_tags_and_domain/"; - parameters.method = 'PATCH'; - parameters.data = { - "list_tags": new_tags, - "domain": vm.domain - }; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - utilities.hideLoader(); - if (status === 200) { - $rootScope.notify("success", "The challenge tags and domain is successfully updated!"); - $state.reload(); - $mdDialog.hide(); - } - }, - onError: function(response) { - utilities.hideLoader(); - $mdDialog.hide(); - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.showLoader(); - utilities.sendRequest(parameters); - }; - - vm.domain_choices = function() { - parameters.url = "challenges/challenge/get_domain_choices/"; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var domain_choices = response.data; - for (var i = 0; i < domain_choices.length; i++) { - if (domain_choices[i][0] == vm.page.domain) { - vm.domain = domain_choices[i][0]; - } - } - vm.domainoptions = domain_choices; - }, - onError: function(response) { - var error = response.data; - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }; - - $scope.$on('$destroy', function() { - vm.stopFetchingSubmissions(); - vm.stopLeaderboard(); - vm.stopLoadingLogs(); - }); - - $rootScope.$on('$stateChangeStart', function() { - vm.phase = {}; - vm.isResult = false; - vm.stopFetchingSubmissions(); - vm.stopLeaderboard(); - }); - - vm.showConfirmation = function(message){ - $rootScope.notify("success", message); - }; - - vm.termsAndConditionDialog = function (ev) { - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/terms-and-conditions.html', - escapeToClose: false - }); - }; - - vm.acceptTermsAndConditions = function (acceptTermsAndConditionsForm) { - if (acceptTermsAndConditionsForm) { - if (vm.termsAndConditions) { - vm.selectExistTeam(); - $mdDialog.hide(); - } - } else { - $mdDialog.hide(); - } - }; - - vm.encodeMetricURI = function(metric) { - return encodeURIComponent(metric); - }; - - vm.deregisterdialog = function(ev) { - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/challenge/edit-challenge/edit-challenge-deregister.html', - escapeToClose: false - }); - }; - - vm.deregister = function(deregisterformvalid) { - if (deregisterformvalid) { - parameters.url = 'challenges/challenge/' + vm.challengeId + '/deregister/'; - parameters.method = 'POST'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status === 200) { - $rootScope.notify("success", "You have successfully deregistered from the challenge."); - $mdDialog.hide(); - $state.go('web.challenge-main.challenge-page.overview'); - setTimeout(function() { - $state.reload(); - }, 100); - } - }, - onError: function(response) { - $rootScope.notify("error", response.data.error); - $mdDialog.hide(); - } - }; - utilities.sendRequest(parameters); - } - else { - $mdDialog.hide(); - } - }; - - vm.openLeaderboardDropdown = function() { - if (vm.chosenMetrics == undefined) { - var index = []; - for (var k = 0; k < vm.leaderboard[0].leaderboard__schema.labels.length; k++) { - var label = vm.leaderboard[0].leaderboard__schema.labels[k].toString().trim(); - index.push(label); - } - vm.chosenMetrics = index; - } - vm.leaderboardDropdown = !vm.leaderboardDropdown; - }; - - vm.getTrophySize = function(rank) { - switch (rank) { - case 1: - return 'trophy-gold'; - case 2: - return 'trophy-silver'; - case 3: - return 'trophy-bronze'; - // Add more cases for other ranks if needed - default: - return 'trophy-black'; // Default size, change this according to your preference - } - }; - - } - -})(); diff --git a/frontend/src/js/controllers/challengeHostTeamsCtrl.js b/frontend/src/js/controllers/challengeHostTeamsCtrl.js deleted file mode 100644 index 64057ec892..0000000000 --- a/frontend/src/js/controllers/challengeHostTeamsCtrl.js +++ /dev/null @@ -1,414 +0,0 @@ -// Invoking IIFE for teams -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('ChallengeHostTeamsCtrl', ChallengeHostTeamsCtrl); - - ChallengeHostTeamsCtrl.$inject = ['utilities', 'loaderService', '$scope', '$state', '$http', '$rootScope', '$mdDialog']; - - function ChallengeHostTeamsCtrl(utilities, loaderService, $scope, $state, $http, $rootScope, $mdDialog) { - var vm = this; - var userKey = utilities.getData('userKey'); - - utilities.showLoader(); - - // default variables/objects - vm.team = {}; - vm.teamId = null; - vm.existTeam = {}; - vm.currentPage = ''; - vm.isNext = ''; - vm.isPrev = ''; - vm.team.error = false; - vm.showPagination = false; - vm.hostTeamId = null; - vm.challengeHostTeamId = null; - - // loader for existing teams - vm.isExistLoader = false; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - // show loader - vm.startLoader = loaderService.startLoader; - - // stop loader - vm.stopLoader = loaderService.stopLoader; - - vm.activateCollapsible = function() { - angular.element('.collapsible').collapsible(); - }; - - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - - if (vm.existTeam.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No team exists for now. Start by creating a new team!"; - } else { - vm.activateCollapsible(); - vm.showPagination = true; - vm.paginationMsg = ""; - } - - // clear error msg from storage - utilities.deleteData('emailError'); - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.existTeam.next !== null) { - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } else { - vm.currentPage = 1; - } - - // to load data with pagination - vm.load = function(url) { - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - vm.startLoader("Loading Teams"); - if (url !== null) { - - //store the header data in a variable - var headers = { - 'Authorization': "Token " + userKey - }; - - //Add headers with in your request - $http.get(url, { headers: headers }).then(function(response) { - // reinitialized data - var details = response.data; - vm.existTeam = details; - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.existTeam.count / 10; - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - vm.stopLoader(); - }); - } else { - vm.stopLoader(); - } - }; - - } - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - vm.showMdDialog = function(ev, hostTeamId) { - vm.hostTeamId = hostTeamId; - parameters.url = 'hosts/challenge_host_team/' + hostTeamId; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - vm.team.TeamName = response.data.team_name; - vm.team.TeamURL = response.data.team_url; - }, - onError: function(response) { - var error = response.data['error']; - vm.stopLoader(); - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/edit-host-teams.html' - }); - }; - - - vm.updateChallengeHostTeamData = function(updateChallengeHostTeamDataForm) { - if (updateChallengeHostTeamDataForm) { - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/' + vm.hostTeamId; - parameters.method = 'PATCH'; - parameters.data = { - "team_name": vm.team.TeamName, - "team_url": vm.team.TeamURL - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - $mdDialog.hide(); - vm.team = {}; - $rootScope.notify("success", "Host team updated!"); - var parameters = {}; - // Retrives the updated lists and displays it. - parameters.url = 'hosts/challenge_host_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - vm.existTeam.results = response.data.results; - }, - onError: function(response) { - var error = response.data['error']; - vm.stopLoader(); - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }, - onError: function(response) { - var error; - if ('team_name' in response.data) { - error = response.data['team_name']; - } - else { - error = response.data['error']; - } - $rootScope.notify("error", error[0]); - } - }; - - utilities.sendRequest(parameters); - } - else { - $mdDialog.hide(); - } - }; - - // function to create new team - vm.createNewTeam = function() { - vm.isExistLoader = true; - vm.loaderTitle = ''; - - vm.startLoader("Loading Teams"); - - var parameters = {}; - parameters.url = 'hosts/create_challenge_host_team'; - parameters.method = 'POST'; - parameters.data = { - "team_name": vm.team.name, - "team_url": vm.team.url - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - $rootScope.notify("success", "New team- '" + vm.team.name + "' has been created"); - var details = response.data; - vm.teamId = details.id; - vm.team.error = false; - vm.team = {}; - vm.stopLoader(); - - vm.startLoader("Loading Teams"); - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - vm.showPagination = true; - vm.paginationMsg = ''; - - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = 1; - } else { - vm.isNext = ''; - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - - - vm.stopLoader(); - } - }, - onError: function() { - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - - }, - onError: function(response) { - var error = response.data; - vm.team.error = error.team_name[0]; - vm.stopLoader(); - $rootScope.notify("error", error.team_name[0]); - } - }; - - utilities.sendRequest(parameters); - - }; - - vm.confirmDelete = function(ev, hostTeamId) { - ev.stopPropagation(); - // Appending dialog to document.body to cover sidenav in docs app - var confirm = $mdDialog.confirm() - .title('Would you like to remove yourself?') - .textContent('Note: This action will remove you from the team.') - .ariaLabel('Lucky day') - .targetEvent(ev) - .ok('Yes') - .cancel("No"); - - $mdDialog.show(confirm).then(function() { - vm.startLoader(); - var parameters = {}; - parameters.url = 'hosts/remove_self_from_challenge_host/' + hostTeamId; - parameters.method = 'DELETE'; - parameters.data = {}; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - vm.team.error = false; - $rootScope.notify("info", "You have removed yourself successfully"); - - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.existTeam.count / 10; - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - - - if (vm.existTeam.count === 0) { - - vm.showPagination = false; - vm.paginationMsg = "No team exists for now, start by creating a new team!"; - } else { - vm.showPagination = true; - vm.paginationMsg = ""; - } - } - - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }, - onError: function() { - vm.stopLoader(); - $rootScope.notify("error", "Couldn't remove you from the challenge"); - } - }; - - utilities.sendRequest(parameters); - - }, function() {}); - }; - - vm.inviteOthers = function(ev, hostTeamId) { - ev.stopPropagation(); - // Appending dialog to document.body - var confirm = $mdDialog.prompt() - .title('Add other members to your team') - .textContent('Enter the email address of the person') - .placeholder('email') - .ariaLabel('') - .targetEvent(ev) - .ok('Add') - .cancel('Cancel'); - - $mdDialog.show(confirm).then(function(result) { - - var parameters = {}; - parameters.url = 'hosts/challenge_host_teams/' + hostTeamId + '/invite'; - parameters.method = 'POST'; - parameters.data = { - "email": result - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - $rootScope.notify("success", parameters.data.email + " has been added successfully"); - }, - onError: function(response) { - var error = response.data.error; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - }); - }; - - vm.storeChallengeHostTeamId = function() { - utilities.storeData('challengeHostTeamId', vm.challengeHostTeamId); - $state.go('web.challenge-create'); - }; - - } - -})(); diff --git a/frontend/src/js/controllers/challengeListCtrl.js b/frontend/src/js/controllers/challengeListCtrl.js deleted file mode 100644 index 6c9db6e240..0000000000 --- a/frontend/src/js/controllers/challengeListCtrl.js +++ /dev/null @@ -1,117 +0,0 @@ -// Invoking IIFE for challenge page -(function() { - - 'use strict'; - angular - .module('evalai') - .controller('ChallengeListCtrl', ChallengeListCtrl); - - ChallengeListCtrl.$inject = ['utilities', '$window', 'moment']; - - function ChallengeListCtrl(utilities, $window, moment) { - var vm = this; - var userKey = utilities.getData('userKey'); - var gmtOffset = moment().utcOffset(); - var gmtSign = gmtOffset >= 0 ? '+' : '-'; - var gmtHours = Math.abs(Math.floor(gmtOffset / 60)); - var gmtMinutes = Math.abs(gmtOffset % 60); - var gmtZone = 'GMT ' + gmtSign + ' ' + gmtHours + ':' + (gmtMinutes < 10 ? '0' : '') + gmtMinutes; - - utilities.showLoader(); - utilities.hideButton(); - - vm.currentList = []; - vm.upcomingList = []; - vm.pastList = []; - - vm.noneCurrentChallenge = false; - vm.noneUpcomingChallenge = false; - vm.nonePastChallenge = false; - vm.getAllResults = function(parameters, resultsArray, typ){ - parameters.callback = { - onSuccess: function(response) { - var data = response.data; - var results = data.results; - - var timezone = moment.tz.guess(); - for (var i in results) { - - var descLength = results[i].description.length; - if (descLength >= 50) { - results[i].isLarge = "..."; - } else { - results[i].isLarge = ""; - } - - var offset = new Date(results[i].start_date).getTimezoneOffset(); - results[i].time_zone = moment.tz.zone(timezone).abbr(offset); - results[i].gmt_zone = gmtZone; - - var id = results[i].id; - vm.challengeCreator[id] = results[i].creator.id; - utilities.storeData("challengeCreator", vm.challengeCreator); - - resultsArray.push(results[i]); - } - - // check for the next page - if (data.next !== null) { - var url = data.next; - var slicedUrl = url.substring(url.indexOf('challenges/challenge'), url.length); - parameters.url = slicedUrl; - vm.getAllResults(parameters, resultsArray); - } else { - utilities.hideLoader(); - if (resultsArray.length === 0) { - vm[typ] = true; - } else { - vm[typ] = false; - } - } - }, - onError: function() { - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - }; - - - vm.challengeCreator = {}; - var parameters = {}; - if (userKey) { - parameters.token = userKey; - } else { - parameters.token = null; - } - - // calls for ongoing challenges - parameters.url = 'challenges/challenge/present/approved/public'; - parameters.method = 'GET'; - - vm.getAllResults(parameters, vm.currentList, "noneCurrentChallenge"); - // calls for upcoming challenges - parameters.url = 'challenges/challenge/future/approved/public'; - parameters.method = 'GET'; - - vm.getAllResults(parameters, vm.upcomingList, "noneUpcomingChallenge"); - - // calls for past challenges - parameters.url = 'challenges/challenge/past/approved/public'; - parameters.method = 'GET'; - - vm.getAllResults(parameters, vm.pastList, "nonePastChallenge"); - - vm.scrollUp = function() { - angular.element($window).bind('scroll', function() { - if (this.pageYOffset >= 100) { - utilities.showButton(); - } else { - utilities.hideButton(); - } - }); - }; - } - -})(); diff --git a/frontend/src/js/controllers/changePwdCtrl.js b/frontend/src/js/controllers/changePwdCtrl.js deleted file mode 100644 index 8878eb6b3f..0000000000 --- a/frontend/src/js/controllers/changePwdCtrl.js +++ /dev/null @@ -1,109 +0,0 @@ -// Invoking IIFE for teams -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('ChangePwdCtrl', ChangePwdCtrl); - - ChangePwdCtrl.$inject = ['utilities', '$state', '$rootScope']; - - function ChangePwdCtrl(utilities, $state, $rootScope) { - var vm = this; - var userKey = utilities.getData('userKey'); - vm.wrnMsg = {}; - vm.isValid = {}; - vm.user = {}; - vm.isFormError = false; - - // default parameters - $rootScope.canShowOldPassword = false; - $rootScope.canShowNewPassword = false; - $rootScope.canShowNewConfirmPassword = false; - - vm.changepassContainer = angular.element('.change-password-card'); - - vm.startLoader = function(msg) { - $rootScope.isLoader = true; - $rootScope.loaderTitle = msg; - vm.changepassContainer.addClass('low-screen'); - }; - - // stop loader - vm.stopLoader = function() { - $rootScope.isLoader = false; - $rootScope.loaderTitle = ''; - vm.changepassContainer.removeClass('low-screen'); - }; - - // toggle old password visibility - vm.toggleOldPasswordVisibility = function() { - $rootScope.canShowOldPassword = !$rootScope.canShowOldPassword; - }; - - // toggle new password visibility - vm.toggleNewPasswordVisibility = function() { - $rootScope.canShowNewPassword = !$rootScope.canShowNewPassword; - }; - - // toggle new password again visibility - vm.toggleNewConfirmVisibility = function() { - $rootScope.canShowNewConfirmPassword = !$rootScope.canShowNewConfirmPassword; - }; - - // function to change password - vm.changePassword = function(resetconfirmFormValid) { - if(resetconfirmFormValid){ - - - vm.startLoader("Changing Your Password"); - var parameters = {}; - parameters.url = 'auth/password/change/'; - parameters.method = 'POST'; - parameters.data = { - "old_password": vm.user.old_password, - "new_password1": vm.user.new_password1, - "new_password2": vm.user.new_password2, - "uid": $state.params.user_id, - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - vm.user.error = false; - $rootScope.notify("success", "Your password has been changed successfully!"); - vm.stopLoader(); - // navigate to challenge page - // $state.go('web.challenge-page.overview'); - }, - onError: function(response) { - vm.user.error = "Failed"; - vm.isFormError = true; - var oldpassword_valid ,password1_valid, password2_valid; - try { - oldpassword_valid = typeof(response.data.old_password) !== 'undefined' ? true : false; - password1_valid = typeof(response.data.new_password1) !== 'undefined' ? true : false; - password2_valid = typeof(response.data.new_password2) !== 'undefined' ? true : false; - if (oldpassword_valid) { - vm.FormError = Object.values(response.data.old_password).join(" "); - }else if (password1_valid) { - vm.FormError = Object.values(response.data.new_password1).join(" "); - } else if (password2_valid) { - vm.FormError = Object.values(response.data.new_password2).join(" "); - } - } catch (error) { - vm.FormError = "Something went wrong! Please refresh the page and try again."; - } - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - - }else { - vm.stopLoader(); - } - }; - } - -})(); diff --git a/frontend/src/js/controllers/contactUsCtrl.js b/frontend/src/js/controllers/contactUsCtrl.js deleted file mode 100644 index 63a145d99f..0000000000 --- a/frontend/src/js/controllers/contactUsCtrl.js +++ /dev/null @@ -1,103 +0,0 @@ -// Invoking IIFE for contact us - -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('contactUsCtrl', contactUsCtrl); - - contactUsCtrl.$inject = ['utilities', 'loaderService', '$state', '$rootScope']; - - function contactUsCtrl(utilities, loaderService, $state, $rootScope) { - var vm = this; - var userKey = utilities.getData('userKey'); - vm.wrnMsg = {}; - vm.isValid = {}; - vm.user = {}; - vm.isFormError = false; - - // start loader - vm.startLoader = loaderService.startLoader; - - // stop loader - vm.stopLoader = loaderService.stopLoader; - - // To get the previous profile data - var parameters = {}; - parameters.url = 'web/contact/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var result = response.data; - if (status == 200) { - vm.user = result; - vm.isDisabled = true; - } - }, - onError: function() { - } - }; - - utilities.sendRequest(parameters); - - // function to post data in contact us form - vm.contactUs = function(resetconfirmFormValid) { - if (resetconfirmFormValid) { - - var parameters = {}; - vm.isDisabled = false; - parameters.url = 'web/contact/'; - parameters.method = 'POST'; - parameters.data = { - "name": vm.user.name, - "email": vm.user.email, - "message": vm.user.message, - }; - parameters.callback = { - onSuccess: function(response) { - if (response.status == 201) { - var message = response.data.message; - $rootScope.notify("success", message); - // navigate to home page - $state.go('home'); - vm.stopLoader(); - } - }, - onError: function(response) { - if (response.status == 400) { - vm.isFormError = true; - var isUsernameValid, isEmailValid, isMessageValid; - try { - isUsernameValid = response.data.name !== undefined ? true : false; - isEmailValid = response.data.email !== undefined ? true : false; - isMessageValid = response.data.message !== undefined ? true : false; - if (isUsernameValid) { - vm.FormError = response.data.name[0]; - } else if (isEmailValid) { - vm.FormError = response.data.email[0]; - } else if (isMessageValid) { - vm.FormError = response.data.message[0]; - - } else { - $rootScope.notify("error", "Some error occured. Please try again!"); - } - - } catch (error) { - $rootScope.notify("error", error); - } - } - - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - } - }; - } - -})(); diff --git a/frontend/src/js/controllers/dashCtrl.js b/frontend/src/js/controllers/dashCtrl.js deleted file mode 100644 index 9faac14101..0000000000 --- a/frontend/src/js/controllers/dashCtrl.js +++ /dev/null @@ -1,175 +0,0 @@ -// Invoking IIFE for dashboard -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('DashCtrl', DashCtrl); - - DashCtrl.$inject = ['utilities', '$state', '$rootScope']; - - function DashCtrl(utilities, $state, $rootScope) { - var vm = this; - - // User has verified email or not - vm.isPrivileged = true; - - vm.challengeCount = 0; - vm.hostTeamCount = 0; - vm.hostTeamExist = false; - vm.participatedTeamCount = 0; - // get token - var userKey = utilities.getData('userKey'); - - utilities.showLoader(); - - // store the next redirect value - vm.redirectUrl = {}; - - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.name = details.username; - } - }, - onError: function(response) { - utilities.hideLoader(); - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - utilities.storeData('emailError', error.detail); - vm.isPrivileged = false; - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - utilities.sendRequest(parameters); - - vm.getAllChallenges = function(parameters, counter){ - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm[counter] += details.results.length; - if (details.next !== null){ - var url = details.next; - var slicedUrl = url.substring(url.indexOf('challenges/challenge'), url.length); - parameters.url = slicedUrl; - vm.getAllChallenges(parameters, counter); - } - } - if (vm.hostTeamCount == 0) { - vm.hostTeamExist = false; - } else { - vm.hostTeamExist = true; - } - }, - onError: function(response) { - utilities.hideLoader(); - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - vm.isPrivileged = false; - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - - utilities.sendRequest(parameters); - }; - - // get all ongoing challenges. - parameters.url = 'challenges/challenge/present/approved/public'; - parameters.method = 'GET'; - parameters.token = userKey; - vm.getAllChallenges(parameters, "challengeCount"); - - //check for host teams. - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.hostTeamCount = details.results.length; - } - }, - onError: function(response) { - utilities.hideLoader(); - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - vm.isPrivileged = false; - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - - utilities.sendRequest(parameters); - - //check for participated teams. - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.participatedTeamCount = details.results.length; - } - utilities.hideLoader(); - }, - onError: function(response) { - utilities.hideLoader(); - var status = response.status; - var error = response.data; - if (status == 403) { - vm.error = error; - vm.isPrivileged = false; - } else if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - - } - } - }; - - utilities.sendRequest(parameters); - - vm.hostChallenge = function() { - $state.go('web.challenge-host-teams'); - }; - } - -})(); diff --git a/frontend/src/js/controllers/featuredChallengeCtrl.js b/frontend/src/js/controllers/featuredChallengeCtrl.js deleted file mode 100644 index 2f74cad87e..0000000000 --- a/frontend/src/js/controllers/featuredChallengeCtrl.js +++ /dev/null @@ -1,209 +0,0 @@ -// Invoking IIFE for challenge page -(function() { - - 'use strict'; - angular - .module('evalai') - .controller('FeaturedChallengeCtrl', FeaturedChallengeCtrl); - - FeaturedChallengeCtrl.$inject = ['utilities', 'loaderService', '$state', '$stateParams', 'moment']; - - function FeaturedChallengeCtrl(utilities, loaderService, $state, $stateParams, moment) { - var vm = this; - vm.challengeId = $stateParams.challengeId; - vm.phaseSplitId = $stateParams.phaseSplitId; - vm.phaseId = null; - vm.wrnMsg = {}; - vm.page = {}; - vm.phases = {}; - vm.phaseSplits = {}; - vm.isValid = {}; - vm.isActive = false; - vm.showUpdate = false; - vm.showLeaderboardUpdate = false; - vm.poller = null; - vm.stopLeaderboard = function() {}; - - // loader for existing teams - vm.isExistLoader = false; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - // show loader - vm.startLoader = loaderService.startLoader; - // stop loader - vm.stopLoader = loaderService.stopLoader; - vm.subErrors = {}; - - utilities.showLoader(); - - // get details of the particular challenge - var parameters = {}; - parameters.url = 'challenges/challenge/' + vm.challengeId + '/'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.page = details; - vm.isActive = details.is_active; - - - if (vm.page.image === null) { - vm.page.image = "dist/images/logo.png"; - - } - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - // get details of the particular challenge phase - parameters = {}; - parameters.url = 'challenges/challenge/' + vm.challengeId + '/challenge_phase'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.phases = details; - // navigate to challenge page - // $state.go('web.challenge-page.overview'); - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - // get details of the particular challenge phase split - parameters = {}; - parameters.url = 'challenges/' + vm.challengeId + '/challenge_phase_split'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.phaseSplits = details; - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - vm.getLeaderboard = function(phaseSplitId) { - vm.isResult = true; - vm.phaseSplitId = phaseSplitId; - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - - vm.startLoader("Loading Leaderboard Items"); - - // Show leaderboard - vm.leaderboard = {}; - var parameters = {}; - parameters.url = "jobs/" + "challenge_phase_split/" + vm.phaseSplitId + "/leaderboard/?page_size=1000"; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - vm.leaderboard = details.results; - for (var i=0; i= 0 ? '+' : '-'; - var gmtHours = Math.abs(Math.floor(gmtOffset / 60)); - var gmtMinutes = Math.abs(gmtOffset % 60); - var gmtZone = 'GMT ' + gmtSign + ' ' + gmtHours + ':' + (gmtMinutes < 10 ? '0' : '') + gmtMinutes; - - vm.challengeList = []; - vm.challengeCreator = {}; - - var parameters = {}; - parameters.url = 'hosts/challenge_host_team/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var host_teams = response["data"]["results"]; - parameters.method = 'GET'; - var timezone = moment.tz.guess(); - for (var i=0; i= 0 ? '+' : '-'; - var gmtHours = Math.abs(Math.floor(gmtOffset / 60)); - var gmtMinutes = Math.abs(gmtOffset % 60); - vm.gmtZone = 'GMT ' + gmtSign + ' ' + gmtHours + ':' + (gmtMinutes < 10 ? '0' : '') + gmtMinutes; - }, - onError: function(response) { - var details = response.data; - $rootScope.notify("error", details['detail']); - } - }; - - utilities.sendRequest(parameters); - - // Hide & show token function - vm.hideShowPassword = function(){ - if (vm.inputType == 'password'){ - vm.inputType = 'text'; - vm.status = 'Hide'; - } - else{ - vm.inputType = 'password'; - vm.status = 'Show'; - } - }; - - // Hide & show token function - vm.showConfirmation = function(){ - $rootScope.notify("success", "Token copied to your clipboard."); - }; - - // Get token - vm.getAuthTokenDialog = function(ev) { - vm.titleInput = ""; - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/auth/get-token.html', - escapeToClose: false - }); - }; - - vm.getAuthToken = function(getTokenForm) { - if(!getTokenForm){ - vm.inputType = 'password'; - vm.status = 'Show'; - $mdDialog.hide(); - } - }; - - vm.downloadToken = function() { - var anchor = angular.element(''); - anchor.attr({ - href: 'data:text/json;charset=utf-8,' + encodeURIComponent(JSON.stringify(vm.jsonResponse)), - download: 'token.json' - }); - - // Create Event - var ev = document.createEvent("MouseEvents"); - ev.initMouseEvent("click", true, false, self, 0, 0, 0, 0, 0, false, false, false, false, 0, null); - // Fire event - anchor[0].dispatchEvent(ev); - - }; - - vm.refreshToken = function() { - parameters.url = 'accounts/user/refresh_auth_token'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - vm.jsonResponse = response.data; - vm.token = response.data['token']; - utilities.storeData('refreshJWT', vm.token); - $rootScope.notify("success", "Token generated successfully."); - }, - onError: function(response) { - var details = response.data; - $rootScope.notify("error", details['detail']); - } - }; - utilities.sendRequest(parameters); - }; - - vm.isURLValid = function(url) { - if (url === undefined || url === null) { - return true; - } - return (url.length <= 200); - }; - - vm.editprofileDialog = function(ev) { - switch (ev.currentTarget.id) { - case "first_name": - vm.titleInput = "First Name"; - vm.editid = "first_name"; - break; - case "last_name": - vm.titleInput = "Last Name"; - vm.editid = "last_name"; - break; - case "affiliation": - vm.titleInput = "Affiliation"; - vm.editid = "affiliation"; - break; - case "github_url": - vm.titleInput = "Github URL"; - vm.editid = "github_url"; - break; - case "google_scholar_url": - vm.titleInput = "Google Scholar URL"; - vm.editid = "google_scholar_url"; - break; - case "linkedin_url": - vm.titleInput = "Linkedin URL"; - vm.editid = "linkedin_url"; - break; - } - - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/profile/edit-profile/edit-profile.html', - escapeToClose: false - }); - }; - - // function to update Profile - vm.updateProfile = function(resetconfirmFormValid, editid) { - if (resetconfirmFormValid) { - vm.user.github_url = vm.user.github_url === null ? "" : vm.user.github_url; - vm.user.google_scholar_url = vm.user.google_scholar_url === null ? "" : vm.user.google_scholar_url; - vm.user.linkedin_url = vm.user.linkedin_url === null ? "" : vm.user.linkedin_url; - - if (!vm.isURLValid(vm.user[editid])) { - vm.isFormError = true; - $rootScope.notify("error", "URL length should not be greater than 200 or is in invalid format!"); - return; - } - - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'PUT'; - parameters.data = { - "first_name": vm.user.first_name, - "last_name": vm.user.last_name, - "affiliation": vm.user.affiliation, - "github_url": vm.user.github_url, - "google_scholar_url": vm.user.google_scholar_url, - "linkedin_url": vm.user.linkedin_url - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - if (response.status == 200) { - $rootScope.notify("success", "Profile updated successfully!"); - $mdDialog.hide(); - // navigate to profile page - $state.reload(); - } - }, - onError: function(response) { - if (response.status == 400) { - vm.errorResponse = response; - - vm.isFormError = true; - var isFirstname_valid, isLastname_valid, isAffiliation_valid; - try { - isFirstname_valid = typeof(response.data.first_name) !== 'undefined' ? true : false; - isLastname_valid = typeof(response.data.last_name) !== 'undefined' ? true : false; - isAffiliation_valid = typeof(response.data.affiliation) !== 'undefined' ? true : false; - if (isFirstname_valid) { - vm.FormError = response.data.first_name[0]; - } else if (isLastname_valid) { - vm.FormError = response.data.last_name[0]; - } else if (isAffiliation_valid) { - vm.FormError = response.data.affiliation[0]; - } else { - $rootScope.notify("error", "Some error have occured . Please try again !"); - } - $rootScope.notify("error", vm.FormError); - - } catch (error) { - $rootScope.notify("error", error); - } - } - - } - }; - - utilities.sendRequest(parameters); - - } else { - $mdDialog.hide(); - $state.reload(); - - } - }; - - // toggle old password visibility - vm.toggleOldPasswordVisibility = function() { - $rootScope.canShowOldPassword = !$rootScope.canShowOldPassword; - }; - - // toggle new password visibility - vm.toggleNewPasswordVisibility = function() { - $rootScope.canShowNewPassword = !$rootScope.canShowNewPassword; - }; - - // toggle new password again visibility - vm.toggleNewConfirmVisibility = function() { - $rootScope.canShowNewConfirmPassword = !$rootScope.canShowNewConfirmPassword; - }; - - // function to change password - vm.changePassword = function(resetconfirmFormValid) { - if(resetconfirmFormValid){ - var parameters = {}; - parameters.url = 'auth/password/change/'; - parameters.method = 'POST'; - parameters.data = { - "old_password": vm.user.old_password, - "new_password1": vm.user.new_password1, - "new_password2": vm.user.new_password2, - "uid": $state.params.user_id, - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - vm.user.error = false; - $rootScope.notify("success", "Your password has been changed successfully!"); - $state.go('web.profile.AuthToken'); - }, - onError: function(response) { - vm.user.error = "Failed"; - vm.isFormError = true; - var oldpassword_valid ,password1_valid, password2_valid; - try { - oldpassword_valid = typeof(response.data.old_password) !== 'undefined' ? true : false; - password1_valid = typeof(response.data.new_password1) !== 'undefined' ? true : false; - password2_valid = typeof(response.data.new_password2) !== 'undefined' ? true : false; - if (oldpassword_valid) { - vm.FormError = Object.values(response.data.old_password).join(" "); - }else if (password1_valid) { - vm.FormError = Object.values(response.data.new_password1).join(" "); - } else if (password2_valid) { - vm.FormError = Object.values(response.data.new_password2).join(" "); - } - } catch (error) { - vm.FormError = "Something went wrong! Please refresh the page and try again."; - } - $rootScope.notify("error", vm.FormError); - } - }; - - utilities.sendRequest(parameters); - - }else { - $rootScope.notify("error", "Something went wrong! Please refresh the page and try again."); - } - }; - - // Deactivate User Account - vm.confirmDeactivateAccount = function(deactivateAccountForm) { - if (deactivateAccountForm) { - parameters.token = userKey; - parameters.method = 'POST'; - parameters.url = 'accounts/user/disable'; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - if (status == 200) { - utilities.resetStorage(); - $rootScope.isLoader = false; - $state.go("home"); - $rootScope.isAuth = false; - $rootScope.notify("success", "Your account has been deactivated successfully."); - } - }, - onError: function(response) { - var details = response.data; - $rootScope.notify("error", details.error); - } - }; - utilities.sendRequest(parameters); - } - }; - } - -})(); diff --git a/frontend/src/js/controllers/teamsCtrl.js b/frontend/src/js/controllers/teamsCtrl.js deleted file mode 100644 index a78119a53e..0000000000 --- a/frontend/src/js/controllers/teamsCtrl.js +++ /dev/null @@ -1,444 +0,0 @@ -// Invoking IIFE for teams -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('TeamsCtrl', TeamsCtrl); - - TeamsCtrl.$inject = ['utilities','loaderService', '$scope', '$state', '$http', '$rootScope', '$mdDialog']; - - function TeamsCtrl(utilities,loaderService, $scope, $state, $http, $rootScope, $mdDialog) { - var vm = this; - var userKey = utilities.getData('userKey'); - var challengePk = 1; - - utilities.showLoader(); - - // default variables/objects - vm.team = {}; - vm.teamId = null; - vm.existTeam = {}; - vm.currentPage = ''; - vm.isNext = ''; - vm.isPrev = ''; - vm.team.error = false; - vm.showPagination = false; - - // loader for existing teams - vm.isExistLoader = false; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - // show loader - vm.startLoader = loaderService.startLoader; - vm.stopLoader = loaderService.stopLoader; - - vm.activateCollapsible = function() { - angular.element('.collapsible').collapsible(); - }; - - var parameters = {}; - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - - if (vm.existTeam.count === 0) { - vm.showPagination = false; - vm.paginationMsg = "No team exists for now. Start by creating a new team!"; - } else { - vm.activateCollapsible(); - vm.showPagination = true; - vm.paginationMsg = ""; - } - // clear error msg from storage - utilities.deleteData('emailError'); - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - } else { - vm.isNext = ''; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - if (vm.existTeam.next !== null) { - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } else { - vm.currentPage = 1; - } - - - // select team from existing list - vm.selectExistTeam = function() { - - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - - vm.startLoader("Loading Teams"); - // loader end - - var parameters = {}; - parameters.url = 'challenges/challenge/' + challengePk + '/participant_team/' + vm.teamId; - parameters.method = 'POST'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - $state.go('web.challenge-page.overview'); - vm.stopLoader(); - }, - onError: function() { - vm.existTeamError = "Please select a team"; - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }; - - // to load data with pagination - vm.load = function(url) { - // loader for existing teams - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.exist-team-card'); - - - vm.startLoader("Loading Teams"); - if (url !== null) { - - //store the header data in a variable - var headers = { - 'Authorization': "Token " + userKey - }; - - //Add headers with in your request - $http.get(url, { headers: headers }).then(function(response) { - // reinitialized data - var details = response.data; - vm.existTeam = details; - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.existTeam.count / 10; - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - vm.stopLoader(); - }); - } else { - vm.stopLoader(); - } - }; - - } - utilities.hideLoader(); - }, - onError: function(response) { - var error = response.data; - utilities.storeData('emailError', error.detail); - $state.go('web.permission-denied'); - utilities.hideLoader(); - } - }; - - utilities.sendRequest(parameters); - - // function to create new team - vm.createNewTeam = function() { - vm.isExistLoader = true; - vm.loaderTitle = ''; - vm.loaderContainer = angular.element('.new-team-card'); - - // show loader - - vm.startLoader("Loading Teams"); - - var parameters = {}; - parameters.url = 'participants/participant_team'; - parameters.method = 'POST'; - parameters.data = { - "team_name": vm.team.name, - "team_url": vm.team.url - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - $rootScope.notify("success", "Team " + vm.team.name + " has been created successfully!"); - vm.team.error = false; - vm.stopLoader(); - // reset the team attributes - vm.team = {}; - - vm.startLoader("Loading Teams"); - var parameters = {}; - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - vm.showPagination = true; - vm.paginationMsg = ''; - - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = 1; - } else { - vm.isNext = ''; - vm.currentPage = vm.existTeam.next.split('page=')[1] - 1; - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - - - vm.stopLoader(); - } - }, - onError: function() { - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }, - onError: function(response) { - var error = response.data; - - vm.team.error = error.team_name[0]; - vm.stopLoader(); - $rootScope.notify("error", error.team_name[0]); - } - }; - - utilities.sendRequest(parameters); - - }; - - vm.confirmDelete = function(ev, participantTeamId) { - ev.stopPropagation(); - // Appending dialog to document.body to cover sidenav in docs app - var confirm = $mdDialog.confirm() - .title('Would you like to remove yourself?') - .textContent('Note: This action will remove you from the team.') - .ariaLabel('Lucky day') - .targetEvent(ev) - .ok('Yes') - .cancel("No"); - - $mdDialog.show(confirm).then(function() { - vm.startLoader(); - var parameters = {}; - parameters.url = 'participants/remove_self_from_participant_team/' + participantTeamId; - parameters.method = 'DELETE'; - parameters.data = {}; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - - vm.team.error = false; - $rootScope.notify("info", "You have removed yourself successfully"); - - var parameters = {}; - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var details = response.data; - if (status == 200) { - vm.existTeam = details; - - - // condition for pagination - if (vm.existTeam.next === null) { - vm.isNext = 'disabled'; - vm.currentPage = vm.existTeam.count / 10; - } else { - vm.isNext = ''; - vm.currentPage = parseInt(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous === null) { - vm.isPrev = 'disabled'; - } else { - vm.isPrev = ''; - } - - - if (vm.existTeam.count === 0) { - - vm.showPagination = false; - vm.paginationMsg = "No team exists for now. Start by creating a new team!"; - } else { - vm.showPagination = true; - vm.paginationMsg = ""; - } - } - - vm.stopLoader(); - } - }; - utilities.sendRequest(parameters); - }, - onError: function(response) { - var error = response.data['error']; - vm.stopLoader(); - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - - }, function() { - }); - }; - - - vm.inviteOthers = function(ev, participantTeamId) { - ev.stopPropagation(); - // Appending dialog to document.body to cover sidenav in docs app - var confirm = $mdDialog.prompt() - .title('Add other members to this Team') - .textContent('Enter the email address of the person') - .placeholder('email') - .ariaLabel('') - .targetEvent(ev) - .ok('Add') - .cancel('Cancel'); - - $mdDialog.show(confirm).then(function(result) { - var parameters = {}; - parameters.url = 'participants/participant_team/' + participantTeamId + '/invite'; - parameters.method = 'POST'; - parameters.data = { - "email": result - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var message = response.data['message']; - $rootScope.notify("success", message); - }, - onError: function(response) { - var error = response.data['error']; - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - }, function() { - }); - }; - - - vm.showMdDialog = function(ev, participantTeamId) { - vm.participantTeamId = participantTeamId; - - parameters.url = 'participants/participant_team/' + vm.participantTeamId; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - vm.team.teamName = response.data.team_name; - vm.team.teamUrl = response.data.team_url; - }, - onError: function(response) { - var error = response.data['error']; - vm.stopLoader(); - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - - $mdDialog.show({ - scope: $scope, - preserveScope: true, - targetEvent: ev, - templateUrl: 'dist/views/web/edit-teams.html' - }); - }; - - vm.updateParticipantTeamData = function(updateParticipantTeamDataForm) { - if (updateParticipantTeamDataForm) { - var parameters = {}; - parameters.url = 'participants/participant_team/' + vm.participantTeamId; - parameters.method = 'PATCH'; - parameters.data = { - "team_name": vm.team.teamName, - "team_url": vm.team.teamUrl - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - $mdDialog.hide(); - vm.team = {}; - $rootScope.notify("success", "Participant Team updated!"); - var parameters = {}; - // Retrives the updated lists and displays it. - parameters.url = 'participants/participant_team'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - vm.existTeam.results = response.data.results; - }, - onError: function(response) { - var error = response.data['error']; - vm.stopLoader(); - $rootScope.notify("error", error); - } - }; - utilities.sendRequest(parameters); - }, - onError: function(response) { - var error; - if ('team_name' in response.data) { - error = response.data['team_name']; - } - else { - error = response.data['error']; - } - $rootScope.notify("error", error); - } - }; - - utilities.sendRequest(parameters); - } - else { - $mdDialog.hide(); - } - }; - } - -})(); diff --git a/frontend/src/js/controllers/updateProfileCtrl.js b/frontend/src/js/controllers/updateProfileCtrl.js deleted file mode 100644 index ba1959ea67..0000000000 --- a/frontend/src/js/controllers/updateProfileCtrl.js +++ /dev/null @@ -1,149 +0,0 @@ -// Invoking IIFE for update profile - -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('updateProfileCtrl', updateProfileCtrl); - - updateProfileCtrl.$inject = ['utilities', '$state', '$rootScope']; - - function updateProfileCtrl(utilities, $state, $rootScope) { - var vm = this; - var userKey = utilities.getData('userKey'); - vm.wrnMsg = {}; - vm.isValid = {}; - vm.user = {}; - vm.isFormError = false; - - vm.updateprofileContainer = angular.element('.update-profile-card'); - - vm.startLoader = function(msg) { - $rootScope.isLoader = true; - $rootScope.loaderTitle = msg; - vm.updateprofileContainer.addClass('low-screen'); - }; - - // stop loader - vm.stopLoader = function() { - $rootScope.isLoader = false; - $rootScope.loaderTitle = ''; - vm.updateprofileContainer.removeClass('low-screen'); - }; - - // To get the previous profile data - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var result = response.data; - if (status == 200) { - vm.user = result; - } - - }, - onError: function() { - $rootScope.notify("error", "Error in loading profile, please try again later !"); - } - }; - - utilities.sendRequest(parameters); - - vm.isURLValid = function(url) { - if (url === undefined || url === null) { - return true; - } - return (url.length <= 200); - }; - - // function to update Profile - vm.updateProfile = function(resetconfirmFormValid) { - if (resetconfirmFormValid) { - vm.user.github_url = vm.user.github_url === null ? "" : vm.user.github_url; - vm.user.google_scholar_url = vm.user.google_scholar_url === null ? "" : vm.user.google_scholar_url; - vm.user.linkedin_url = vm.user.linkedin_url === null ? "" : vm.user.linkedin_url; - - if (!vm.isURLValid(vm.user.github_url)) { - vm.isFormError = true; - vm.FormError = "Github URL length should not be greater than 200!"; - return; - } else if (!vm.isURLValid(vm.user.google_scholar_url)) { - vm.isFormError = true; - vm.FormError = "Google Scholar URL length should not be greater than 200!"; - return; - } else if (!vm.isURLValid(vm.user.linkedin_url)) { - vm.isFormError = true; - vm.FormError = "LinkedIn URL length should not be greater than 200!"; - return; - } - - vm.startLoader("Updating Your Profile"); - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'PUT'; - parameters.data = { - "username": vm.user.username, - "first_name": vm.user.first_name, - "last_name": vm.user.last_name, - "affiliation": vm.user.affiliation, - "github_url": vm.user.github_url, - "google_scholar_url": vm.user.google_scholar_url, - "linkedin_url": vm.user.linkedin_url - }; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - if (response.status == 200) { - $rootScope.notify("success", "Profile updated successfully!"); - // navigate to profile page - $state.go('web.profile'); - vm.stopLoader(); - } - }, - onError: function(response) { - if (response.status == 400) { - vm.errorResponse = response; - vm.stopLoader(); - vm.isFormError = true; - var isUsername_valid, isFirstname_valid, isLastname_valid, isAffiliation_valid; - try { - isUsername_valid = typeof(response.data.username) !== 'undefined' ? true : false; - isFirstname_valid = typeof(response.data.first_name) !== 'undefined' ? true : false; - isLastname_valid = typeof(response.data.last_name) !== 'undefined' ? true : false; - isAffiliation_valid = typeof(response.data.affiliation) !== 'undefined' ? true : false; - if (isUsername_valid) { - vm.FormError = response.data.username[0]; - } else if (isFirstname_valid) { - vm.FormError = response.data.first_name[0]; - } else if (isLastname_valid) { - vm.FormError = response.data.last_name[0]; - }else if (isAffiliation_valid) { - vm.FormError = response.data.affiliation[0]; - } else { - $rootScope.notify("error", "Some error have occured . Please try again !"); - } - - } catch (error) { - $rootScope.notify("error", error); - } - } - - vm.stopLoader(); - } - }; - - utilities.sendRequest(parameters); - - } else { - $rootScope.notify("error", "Form fields are not valid!"); - vm.stopLoader(); - } - }; - } - -})(); diff --git a/frontend/src/js/controllers/webCtrl.js b/frontend/src/js/controllers/webCtrl.js deleted file mode 100644 index e59879c610..0000000000 --- a/frontend/src/js/controllers/webCtrl.js +++ /dev/null @@ -1,47 +0,0 @@ -// Invoking IIFE for dashboard - -(function() { - - 'use strict'; - - angular - .module('evalai') - .controller('WebCtrl', WebCtrl); - - WebCtrl.$inject = ['utilities', '$rootScope']; - - function WebCtrl(utilities, $rootScope) { - var vm = this; - - vm.user = {}; - - utilities.hideLoader(); - - angular.element().find(".side-intro").addClass("z-depth-3"); - - // get token - var userKey = utilities.getData('userKey'); - if (userKey) { - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function(response) { - var status = response.status; - var result = response.data; - if (status == 200) { - vm.name = result.username; - } - }, - onError: function(response) { - var details = response.data; - $rootScope.notify("error", details.error); - } - }; - - utilities.sendRequest(parameters); - } - } - -})(); diff --git a/frontend/src/js/directives/directives.js b/frontend/src/js/directives/directives.js deleted file mode 100644 index f08342d36d..0000000000 --- a/frontend/src/js/directives/directives.js +++ /dev/null @@ -1,359 +0,0 @@ -// define directives here -(function() { - 'use strict'; - // dynamic header directive - angular - .module('evalai') - .directive('dynHeader', dynHeader); - - function dynHeader() { - var directive = { - link: link, - templateUrl: 'dist/views/web/partials/dyn-header.html', - transclude: true, - restrict: 'EA' - }; - return directive; - - function link() { - function headerComp() { - this.init(); - } - headerComp.prototype = { - init: function() { - // initialized mobile sidebar - angular.element(".button-collapse").sideNav({ - menuWidth: 200, - closeOnClick: true, - draggable: true - }); - } - }; - new headerComp(); - } - } -})(); -// define directives here -(function() { - 'use strict'; - // dynamic header directive - angular - .module('evalai') - .directive('mainHeader', dynHeader); - - function dynHeader() { - var directive = { - link: link, - templateUrl: 'dist/views/web/partials/main-header.html', - transclude: true, - restrict: 'EA', - controller: dynHeaderController, - controllerAs: 'header', - bindToController: true - }; - return directive; - - function link(scope) { - function headerComp() { - this.init(); - } - headerComp.prototype = { - init: function() { - // initialized mobile sidebar - angular.element(".button-collapse").sideNav({ - menuWidth: 200, - closeOnClick: true, - draggable: true - }); - - // initialized shadow to main header - angular.element(window).bind('scroll', function() { - - if (this.pageYOffset >= 10) { - angular.element(" nav").addClass('grad-shadow-1'); - } else { - angular.element(" nav").removeClass('grad-shadow-1'); - } - scope.$apply(); - }); - } - }; - new headerComp(); - } - } -})(); -dynHeaderController.$inject = ["utilities"]; - -function dynHeaderController(utilities) { - var vm = this; - - vm.user = {}; - - // get token - var userKey = utilities.getData('userKey'); - - if (userKey) { - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function (response) { - var status = response.status; - var data = response.data; - if (status == 200) { - vm.user.name = data.username; - } - }, - onError: function (response) { - - var status = response.status; - if (status == 401) { - utilities.resetStorage(); - } - } - }; - - utilities.sendRequest(parameters); - } - vm.profileDropdown = function () { - angular.element(".dropdown-button").dropdown(); - - }; - -} -//Landing Footer directive -(function() { - 'use strict'; - angular.module('evalai').directive('landingFooter', landingFooter); - - function landingFooter() { - var directive = { - templateUrl: 'dist/views/web/partials/footer.html', - transclude: true, - restrict: 'EA', - controller: landingFooterController - }; - return directive; - } -})(); -landingFooterController.$inject = ["$scope"]; -function landingFooterController($scope) { - $scope.year = new Date().getFullYear(); - var js = document.createElement("script"); - js.src = (/^http:/.test(document.location) ? "http" : "https") + "://buttons.github.io/buttons.js"; - document.getElementsByTagName("head")[0].appendChild(js); -} -//Dashboard Footer directive -(function() { - 'use strict'; - // dynamic header directive - angular.module('evalai').directive('dashboardFooter', dashboardFooter); - - function dashboardFooter() { - var directive = { - templateUrl: 'dist/views/web/partials/dashboard-footer.html', - transclude: true, - restrict: 'EA', - controller: dashboardFooterController - }; - return directive; - } -})(); -dashboardFooterController.$inject = ["$scope"]; -function dashboardFooterController($scope) { - $scope.year = new Date().getFullYear(); - var js = document.createElement("script"); - js.src = (/^http:/.test(document.location) ? "http" : "https") + "://buttons.github.io/buttons.js"; - document.getElementsByTagName("head")[0].appendChild(js); -} -// loader directive -(function() { - 'use strict'; - angular.module('evalai').directive('evalLoader', evalLoader); - - function evalLoader() { - var directive = { - link: link, - templateUrl: 'dist/views/web/partials/loader.html', - transclude: true, - restrict: 'EA' - }; - return directive; - - function link() { - function evalLoader() { - this.init(); - } - evalLoader.prototype = { - init: function() {} - }; - new evalLoader(); - } - } -})(); -// simple loader directive -(function() { - 'use strict'; - angular.module('evalai').directive('simLoader', simLoader); - - function simLoader() { - var directive = { - link: link, - templateUrl: 'dist/views/web/partials/sim-loader.html', - transclude: true, - restrict: 'EA' - }; - return directive; - - function link() { - function loaderComp() { - this.init(); - } - loaderComp.prototype = { - init: function() { - angular.element("#sim-loader").hide(); - } - }; - new loaderComp(); - } - } -})(); -//Sidebar in Dashboard -(function() { - 'use strict'; - // dynamic header directive - angular.module('evalai').directive('sideBar', sideBar); - - function sideBar() { - var directive = { - link: function() { - //do nothing - }, - templateUrl: 'dist/views/web/partials/sidebar.html', - transclude: true, - restrict: 'EA' - }; - return directive; - } -})(); -//Dashboard header -(function() { - 'use strict'; - // dynamic header directive - angular.module('evalai').directive('simHeader', simHeader); - - function simHeader() { - var directive = { - link: link, - templateUrl: 'dist/views/web/partials/sim-header.html', - transclude: true, - restrict: 'EA' - }; - return directive; - - function link() { - function headerComp() { - this.init(); - } - headerComp.prototype = { - init: function() { - // initialized mobile sidebar - angular.element(".button-collapse").sideNav({ - menuWidth: 200, - closeOnClick: true, - draggable: true - }); - } - }; - new headerComp(); - } - } -})(); -// scroll directive -(function() { - 'use strict'; - // dynamic header directive - angular.module('evalai').directive('scrollShadow', scrollShadow); - - function scrollShadow() { - var directive = { - link: link, - // template : '
{{web.name}}
', - transclude: true, - restrict: 'EA' - }; - return directive; - - function link(scope) { - function shadowComp() { - this.init(); - } - shadowComp.prototype = { - init: function() { - // initialized mobile sidebar - angular.element(".links-section-outer").bind('scroll', function() { - if (this.scrollTop >= 5) { - angular.element(".side-intro").addClass('z-depth-3'); - } else { - angular.element(".side-intro").removeClass('z-depth-3'); - } - scope.$apply(); - }); - } - }; - new shadowComp(); - } - } -})(); -// profile directive slider component -(function() { - 'use strict'; - // dynamic header directive - angular.module('evalai').directive('slideProfile', slideProfile); - - function slideProfile() { - var directive = { - link: link, - transclude: true, - restrict: 'EA' - }; - return directive; - - function link() { - function slideComp() { - this.init(); - } - slideComp.prototype = { - init: function() { - // initialized mobile sidebar - angular.element(".profile-sidebar").animate({ - 'left': '219px' - }, 200); - } - }; - new slideComp(); - } - } -})(); - -(function() { - 'use strict'; - - angular.module('evalai').directive("mathjaxBind", ['$compile', '$timeout', function($compile, $timeout) { - return { - restrict: "A", - link: function(scope, element, attrs) { - scope.$watch(attrs.mathjaxBind, function(texExpression) { - var template = angular.element('
').html(texExpression).contents(); - var compiledTemplate = $compile(template)(scope); - element.empty().append(compiledTemplate); - $timeout(function() { - /* eslint-disable no-undef */ - MathJax.Hub.Queue(["Typeset", MathJax.Hub, element[0]]); - }, 0); - }); - } - }; - }]); - }()); diff --git a/frontend/src/js/directives/validation.directives.js b/frontend/src/js/directives/validation.directives.js deleted file mode 100644 index 6b9bd78a50..0000000000 --- a/frontend/src/js/directives/validation.directives.js +++ /dev/null @@ -1,41 +0,0 @@ -var compareTo = function() { - return { - require: "ngModel", - scope: { - otherModelValue: "=compareTo" - }, - link: function(scope, element, attributes, ngModel) { - - ngModel.$validators.compareTo = function(modelValue) { - return modelValue == scope.otherModelValue; - }; - - scope.$watch("otherModelValue", function() { - ngModel.$validate(); - }); - } - }; -}; -var match = function() { - return { - require: "ngModel", - scope: { - otherModelValue: "=match" - }, - link: function(scope, element, attributes, ngModel) { - - ngModel.$validators.match = function(modelValue) { - return modelValue != scope.otherModelValue; - }; - - scope.$watch("otherModelValue", function() { - ngModel.$validate(); - }); - } - }; -}; - -angular - .module('evalai') - .directive("compareTo", compareTo) - .directive("match", match); diff --git a/frontend/src/js/filters/filters.js b/frontend/src/js/filters/filters.js deleted file mode 100644 index 031356eaeb..0000000000 --- a/frontend/src/js/filters/filters.js +++ /dev/null @@ -1,38 +0,0 @@ -// define filters here - -// filter to get ceiling value -(function() { - - 'use strict'; - - angular - .module('evalai') - .filter('ceil', ceil); - - function ceil() { - return function(input) { - return Math.ceil(input); - }; - } - - angular.module('evalai') - .filter('format_execution_time', format_execution_time); - - function format_execution_time() { - return function (execution_time) { - var executiontime = new Date(execution_time * 1000); - var days = (executiontime.getUTCDate() - 1); - var hours = executiontime.getUTCHours(); - var minutes = executiontime.getUTCMinutes(); - var seconds = executiontime.getSeconds(); - var timeString = (execution_time != 0) ? ( - (days !=0 ? days.toString().padStart(2, '0') + ' day ' : '') + - (hours !=0 ? hours.toString().padStart(2, '0') + ' hr ' : '') + - (minutes != 0 ? minutes.toString().padStart(2, '0') + ' min ' : '') + - (seconds !=0 ? seconds.toString().padStart(2, '0') + ' sec' : '') - ) : (seconds.toString().padStart(2, '0') + ' sec'); - return timeString; - }; - } - -})(); diff --git a/frontend/src/js/route-config/route-config.js b/frontend/src/js/route-config/route-config.js deleted file mode 100644 index cc678f2c82..0000000000 --- a/frontend/src/js/route-config/route-config.js +++ /dev/null @@ -1,805 +0,0 @@ -/** - * Config for the router - */ - -(function () { - 'use strict'; - angular - .module('evalai') - .config(configure); - - var baseUrl = "dist/views"; - - configure.$inject = ['$stateProvider', '$urlRouterProvider', '$locationProvider', '$urlMatcherFactoryProvider']; - - function configure($stateProvider, $urlRouterProvider, $locationProvider, $urlMatcherFactoryProvider) { - - //in order to prevent 404 for trailing '/' in urls - $urlMatcherFactoryProvider.strictMode(false); - - // formating hashed url - $locationProvider.html5Mode({ - enabled: true, - requireBase: true - }); - - // Index url definition - var home = { - name: "home", - url: "/", - templateUrl: baseUrl + "/web/landing.html", - controller: 'MainCtrl', - controllerAs: 'main', - title: "Welcome" - }; - - // Auth related urls - var auth = { - name: "auth", - url: "/auth", - templateUrl: baseUrl + "/web/auth/auth.html", - controller: 'AuthCtrl', - controllerAs: 'auth', - abstract: true, - title: 'Auth' - }; - - var login = { - name: "auth.login", - parent: "auth", - url: "/login", - templateUrl: baseUrl + "/web/auth/login.html", - title: 'Login', - authpage: true - }; - - var signup = { - name: "auth.signup", - parent: "auth", - url: "/signup", - templateUrl: baseUrl + "/web/auth/signup.html", - title: 'SignUp', - authpage: true - }; - - var verify_email = { - name: "auth.verify-email", - parent: "auth", - url: "/api/auth/registration/account-confirm-email/:email_conf_key", - templateUrl: baseUrl + "/web/auth/verify-email.html", - title: "Email Verify", - authpage: true - }; - - var reset_password = { - name: "auth.reset-password", - parent: "auth", - url: "/reset-password", - templateUrl: baseUrl + "/web/auth/reset-password.html", - title: "Reset Password", - authpage: true - }; - - var reset_password_confirm = { - name: "auth.reset-password-confirm", - parent: "auth", - url: "/api/password/reset/confirm/:user_id/:reset_token", - templateUrl: baseUrl + "/web/auth/reset-password-confirm.html", - title: "Reset Password Confirm", - authpage: true - }; - - var logout = { - name: "auth.logout", - parent: "auth", - url: "/logout", - authenticate: true, - title: 'Logout' - }; - - // main app 'web' - var web = { - name: "web", - url: "/web", - templateUrl: baseUrl + "/web/web.html", - controller: 'WebCtrl', - controllerAs: 'web', - abstract: true - }; - - var dashboard = { - name: "web.dashboard", - parent: "web", - url: "/dashboard", - templateUrl: baseUrl + "/web/dashboard.html", - controller: 'DashCtrl', - controllerAs: 'dash', - title: 'Dashboard', - authenticate: true - }; - - var teams = { - name: "web.teams", - parent: "web", - url: "/teams", - templateUrl: baseUrl + "/web/teams.html", - controller: 'TeamsCtrl', - controllerAs: 'teams', - title: 'Participating Teams', - authenticate: true - }; - - var hosted_challenges = { - name: "web.hosted-challenge", - parent: "web", - url: "/hosted-challenges", - templateUrl: baseUrl + "/web/hosted-challenges.html", - controller: 'HostedChallengesCtrl', - controllerAs: 'hostedChallenges', - title: 'Hosted Challenges', - authenticate: true - }; - - var host_analytics = { - name: "web.host-analytics", - parent: "web", - url: "/host-analytics", - templateUrl: baseUrl + "/web/analytics/host-analytics.html", - controller: 'AnalyticsCtrl', - controllerAs: 'analytics', - title: 'Host Challenge Analytics', - authenticate: true - }; - - var challenge_host_teams = { - name: "web.challenge-host-teams", - parent: "web", - url: "/challenge-host-teams", - templateUrl: baseUrl + "/web/challenge-host-teams.html", - controller: 'ChallengeHostTeamsCtrl', - controllerAs: 'challengeHostTeams', - title: 'Host Teams', - authenticate: true - }; - - var challenge_create = { - name: "web.challenge-create", - parent: "web", - url: "/challenge-create", - templateUrl: baseUrl + "/web/challenge-create.html", - title: 'Create Challenge', - controller: 'ChallengeCreateCtrl', - controllerAs: 'challengeCreate', - authenticate: true - }; - - var challenge_main = { - name: "web.challenge-main", - parent: "web", - url: "/challenges", - templateUrl: baseUrl + "/web/challenge-main.html", - redirectTo: "web.challenge-main.challenge-list", - }; - - var challenge_list = { - name: "web.challenge-main.challenge-list", - parent: "web.challenge-main", - url: "/list", - templateUrl: baseUrl + "/web/challenge-list.html", - controller: 'ChallengeListCtrl', - controllerAs: 'challengeList', - title: 'Challenges', - }; - - var challenge_page = { - name: "web.challenge-main.challenge-page", - parent: "web.challenge-main", - url: "/challenge-page/:challengeId", - templateUrl: baseUrl + "/web/challenge/challenge-page.html", - controller: 'ChallengeCtrl', - controllerAs: 'challenge', - redirectTo: "web.challenge-main.challenge-page.overview", - }; - - var overview = { - name: "web.challenge-main.challenge-page.overview", - parent: "web.challenge-main.challenge-page", - url: "/overview", - templateUrl: baseUrl + "/web/challenge/overview.html", - title: 'Overview', - }; - - var evaluation = { - name: "web.challenge-main.challenge-page.evaluation", - parent: "web.challenge-main.challenge-page", - url: "/evaluation", - templateUrl: baseUrl + "/web/challenge/evaluation.html", - title: 'Evaluation', - }; - - var phases = { - name: "web.challenge-main.challenge-page.phases", - parent: "web.challenge-main.challenge-page", - url: "/phases", - templateUrl: baseUrl + "/web/challenge/phases.html", - title: 'Phases', - }; - - var participate = { - name: "web.challenge-main.challenge-page.participate", - parent: "web.challenge-main.challenge-page", - url: "/participate", - templateUrl: baseUrl + "/web/challenge/participate.html", - title: 'Participate', - }; - - var submission = { - name: "web.challenge-main.challenge-page.submission", - parent: "web.challenge-main.challenge-page", - url: "/submission", - templateUrl: baseUrl + "/web/challenge/submission.html", - title: 'Submit', - authenticate: true, - resolve: { - challenge: function(utilities, $state, $stateParams) { - return new Promise(function(resolve) { - var parameters = {}; - parameters.token = utilities.getData('userKey'); - parameters.url = 'challenges/' + $stateParams.challengeId + '/participant_team/team_detail'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - resolve(details); - }, - onError: function() { - $state.go('error-404'); - } - }; - utilities.sendRequest(parameters); - }); - } - }, - }; - - var my_submission = { - name: "web.challenge-main.challenge-page.my-submission", - parent: "web.challenge-main.challenge-page", - url: "/my-submission", - templateUrl: baseUrl + "/web/challenge/my-submission.html", - title: 'My Submissions', - authenticate: true - }; - - var my_challenge_all_submission = { - name: "web.challenge-main.challenge-page.my-challenge-all-submission", - parent: "web.challenge-main.challenge-page", - url: "/my-challenge-all-submission", - templateUrl: baseUrl + "/web/challenge/my-challenge-all-submission.html", - title: 'My Challenge All Submissions', - authenticate: true, - resolve: { - challenge: function(utilities, $state, $stateParams) { - return new Promise(function(resolve, reject) { - var parameters = {}; - parameters.token = utilities.getData('userKey'); - parameters.url = 'participants/participant_teams/challenges/' + $stateParams.challengeId + '/user'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - if (details.is_challenge_host) { - resolve(details); - } else { - $state.go('error-404'); - reject(); - } - }, - onError: function() { - reject(); - } - }; - utilities.sendRequest(parameters); - }); - } - }, - }; - - var approval_team = { - name: "web.challenge-main.challenge-page.approval_team", - parent: "web.challenge-main.challenge-page", - url: "/approval_team", - templateUrl: baseUrl + "/web/challenge/approval-team.html", - title: 'My Challenge Approved Teams', - authenticate: true, - - }; - - var leaderboard = { - name: "web.challenge-main.challenge-page.leaderboard", - parent: "web.challenge-main.challenge-page", - url: "/leaderboard", - templateUrl: baseUrl + "/web/challenge/leaderboard.html", - title: 'Leaderboard', - }; - - var prizes = { - name: "web.challenge-main.challenge-page.prizes", - parent: "web.challenge-main.challenge-page", - url: "/prizes", - templateUrl: baseUrl + "/web/challenge/prizes.html", - title: 'Prizes', - }; - - var sponsors = { - name: "web.challenge-main.challenge-page.sponsors", - parent: "web.challenge-main.challenge-page", - url: "/sponsors", - templateUrl: baseUrl + "/web/challenge/sponsors.html", - title: 'Sponsors', - }; - - var manage = { - name: "web.challenge-main.challenge-page.manage", - parent: "web.challenge-main.challenge-page", - url: "/manage", - templateUrl: baseUrl + "/web/challenge/manage.html", - controller: 'ChallengeCtrl', - controllerAs: 'challenge', - authenticate: true, - resolve: { - challenge: function(utilities, $state, $stateParams) { - return new Promise(function(resolve, reject) { - var parameters = {}; - parameters.token = utilities.getData('userKey'); - parameters.url = 'participants/participant_teams/challenges/' + $stateParams.challengeId + '/user'; - parameters.method = 'GET'; - parameters.data = {}; - parameters.callback = { - onSuccess: function(response) { - var details = response.data; - if (details.is_challenge_host) { - resolve(details); - } else { - $state.go('error-404'); - reject(); - } - }, - onError: function() { - reject(); - } - }; - utilities.sendRequest(parameters); - }); - } - }, - }; - - var challenge_phase_leaderboard = { - name: "web.challenge-main.challenge-page.phase-leaderboard", - url: "/leaderboard/:phaseSplitId", - controller: 'ChallengeCtrl', - controllerAs: 'challenge', - templateUrl: baseUrl + "/web/challenge/leaderboard.html", - title: 'Leaderboard' - }; - - var challenge_phase_metric_leaderboard = { - name: "web.challenge-main.challenge-page.phase-metric-leaderboard", - url: "/leaderboard/:phaseSplitId/:metric", - controller: 'ChallengeCtrl', - controllerAs: 'challenge', - templateUrl: baseUrl + "/web/challenge/leaderboard.html", - title: 'Leaderboard' - }; - - var profile = { - name: "web.profile", - parent: "web", - url: "/profile", - templateUrl: baseUrl + "/web/profile/profile.html", - title: "Profile", - controller: 'profileCtrl', - controllerAs: 'profile', - redirectTo: "web.profile.Updateprofile", - authenticate: true - }; - - var auth_token = { - name: "web.profile.AuthToken", - parent: "web.profile", - url: "/auth-token", - templateUrl: baseUrl + "/web/auth/get-token.html", - title: 'Auth Token', - authenticate: true - }; - - var update_profile = { - name: "web.profile.Updateprofile", - parent: "web.profile", - url: "/update-profile", - templateUrl: baseUrl + "/web/profile/edit-profile/update-profile.html", - title: 'Update profile', - authenticate: true - }; - - var edit_profile = { - name: "web.profile.Editprofile", - parent: "web.profile", - url: "/edit-profile", - templateUrl: baseUrl + "/web/profile/edit-profile/edit-profile.html", - title: 'Edit profile', - authenticate: true - }; - - var deactivate_account = { - name: "web.profile.deactivate-account", - parent: "web.profile", - url: "/deactivate-account", - templateUrl: baseUrl + "/web/profile/edit-profile/deactivate-account.html", - title: 'Deactivate Account', - authenticate: true - }; - - var host_challenge = { - name: "web.host-challenge", - parent: "web", - url: "/host-challenge", - templateUrl: baseUrl + "/web/host-challenge.html", - title: 'Host Competition', - // controller: 'HostCtrl', - // controllerAs: 'host', - authenticate: true - }; - - var permission_denied = { - name: "web.permission-denied", - parent: "web", - url: "/permission-denied", - templateUrl: baseUrl + "/web/permission-denied.html", - title: "Permission Denied", - controller: 'PermCtrl', - controllerAs: 'perm', - authenticate: true - }; - - var change_password = { - name: "web.profile.change-password", - parent: "web.profile", - url: "/change-password", - templateUrl: baseUrl + "/web/change-password.html", - title: "Change Password", - controller: 'ChangePwdCtrl', - controllerAs: 'changepwd', - authenticate: true - }; - - var error_404 = { - name: "error-404", - templateUrl: baseUrl + "/web/error-pages/error-404.html", - title: "Error 404", - }; - - var error_500 = { - name: "error-500", - templateUrl: baseUrl + "/web/error-pages/error-500.html", - title: "Error 500", - }; - - var privacy_policy = { - name: "privacy_policy", - url: "/privacy-policy", - templateUrl: baseUrl + "/web/privacy-policy.html", - title: "Privacy Policy" - }; - - var about_us = { - name: 'about-us', - url: "/about", - templateUrl: baseUrl + "/web/about-us.html", - title: "About Us" - }; - - var our_team = { - name: 'our-team', - url: "/team", - templateUrl: baseUrl + "/web/our-team.html", - controller: 'ourTeamCtrl', - controllerAs: 'ourTeam', - title: "Team" - }; - - var get_involved = { - name: 'get-involved', - url: "/get-involved", - templateUrl: baseUrl + "/web/get-involved.html", - title: "Get Involved" - }; - - var contact_us = { - name: "contact-us", - url: "/contact", - templateUrl: baseUrl + "/web/contact-us.html", - title: "Contact Us", - controller: 'contactUsCtrl', - controllerAs: 'contactUs' - }; - - var featured_challenge_page = { - name: "featured-challenge-page", - url: "/featured-challenges/:challengeId", - templateUrl: baseUrl + "/web/featured-challenge/challenge-page.html", - controller: 'FeaturedChallengeCtrl', - controllerAs: 'featured_challenge', - redirectTo: "featured-challenge-page.overview" - }; - - var featured_challenge_overview = { - name: "featured-challenge-page.overview", - parent: "featured-challenge-page", - url: "/overview", - templateUrl: baseUrl + "/web/featured-challenge/overview.html", - title: 'Overview' - }; - - var featured_challenge_evaluation = { - name: "featured-challenge-page.evaluation", - url: "/evaluation", - templateUrl: baseUrl + "/web/featured-challenge/evaluation.html", - title: 'Evaluation' - }; - - var featured_challenge_phases = { - name: "featured-challenge-page.phases", - url: "/phases", - templateUrl: baseUrl + "/web/featured-challenge/phases.html", - title: 'Phases' - }; - - var featured_challenge_participate = { - name: "featured-challenge-page.participate", - url: "/participate", - templateUrl: baseUrl + "/web/featured-challenge/participate.html", - title: 'Participate' - }; - - var featured_challenge_leaderboard = { - name: "featured-challenge-page.leaderboard", - url: "/leaderboard", - templateUrl: baseUrl + "/web/featured-challenge/leaderboard.html", - title: 'Leaderboard' - }; - - var featured_challenge_phase_leaderboard = { - name: "featured-challenge-page.phase-leaderboard", - url: "/leaderboard/:phaseSplitId", - controller: 'FeaturedChallengeCtrl', - controllerAs: 'featured_challenge', - templateUrl: baseUrl + "/web/featured-challenge/leaderboard.html", - title: 'Leaderboard' - }; - - var challengeInvitation = { - name: "challenge-invitation", - url: "/accept-invitation/:invitationKey", - controller: "ChallengeInviteCtrl", - controllerAs: "challenge_invitation", - templateUrl: baseUrl + "/web/challenge-invite.html", - title: "Accept challenge invitation" - }; - - var get_submission_related_files = { - name: "get-submission-related-files", - url: "/web/submission-files?bucket&key", - controller: "SubmissionFilesCtrl", - controllerAs: "submission_files", - }; - - // call all states here - $stateProvider.state(home); - $stateProvider.state(privacy_policy); - - // auth configs - $stateProvider.state(auth); - $stateProvider.state(login); - $stateProvider.state(signup); - $stateProvider.state(verify_email); - $stateProvider.state(reset_password); - $stateProvider.state(reset_password_confirm); - $stateProvider.state(logout); - - // web main configs. - $stateProvider.state(web); - $stateProvider.state(dashboard); - $stateProvider.state(host_analytics); - $stateProvider.state(teams); - $stateProvider.state(hosted_challenges); - - // challenge host teams - $stateProvider.state(challenge_host_teams); - - // challenges list page - $stateProvider.state(challenge_main); - $stateProvider.state(challenge_list); - - // challenge create page - $stateProvider.state(challenge_create); - - // challenge details - $stateProvider.state(challenge_page); - $stateProvider.state(overview); - $stateProvider.state(evaluation); - $stateProvider.state(phases); - $stateProvider.state(participate); - $stateProvider.state(submission); - $stateProvider.state(my_submission); - $stateProvider.state(my_challenge_all_submission); - $stateProvider.state(approval_team); - $stateProvider.state(leaderboard); - $stateProvider.state(prizes); - $stateProvider.state(sponsors); - $stateProvider.state(challenge_phase_leaderboard); - $stateProvider.state(challenge_phase_metric_leaderboard); - - // featured challenge details - $stateProvider.state(featured_challenge_page); - $stateProvider.state(featured_challenge_overview); - $stateProvider.state(featured_challenge_evaluation); - $stateProvider.state(featured_challenge_phases); - $stateProvider.state(featured_challenge_participate); - $stateProvider.state(featured_challenge_leaderboard); - $stateProvider.state(featured_challenge_phase_leaderboard); - - $stateProvider.state(host_challenge); - - $stateProvider.state(profile); - $stateProvider.state(auth_token); - $stateProvider.state(update_profile); - $stateProvider.state(permission_denied); - $stateProvider.state(change_password); - $stateProvider.state(error_404); - $stateProvider.state(error_500); - $stateProvider.state(about_us); - $stateProvider.state(our_team); - $stateProvider.state(get_involved); - $stateProvider.state(edit_profile); - $stateProvider.state(deactivate_account); - $stateProvider.state(contact_us); - $stateProvider.state(challengeInvitation); - $stateProvider.state(get_submission_related_files); - - $stateProvider.state(manage); - - $urlRouterProvider.otherwise(function($injector, $location) { - var state = $injector.get('$state'); - state.go('error-404'); - return $location.path(); - }); - } - -})(); - -// define run block here -(function () { - - 'use strict'; - - angular - .module('evalai') - .run(runFunc); - - runFunc.$inject = ['$rootScope', '$state', 'utilities', '$window', '$location', 'toaster']; - - function runFunc($rootScope, $state, utilities, $window, $location, toaster) { - // setting timout for token (7days) - // var getTokenTime = utilities.getData('tokenTime'); - // var timeNow = (new Date()).getTime(); - // .getTime() returns milliseconds, so for 7 days 1000 * 60 * 60 * 24 * 7 = 7 days - // var tokenExpTime = 1000 * 60 * 60 * 24 * 7; - // if ((timeNow - getTokenTime) > tokenExpTime) { - // utilities.resetStorage(); - // } - - $rootScope.isAuth = false; - // check for valid user - $rootScope.$on("$stateChangeStart", function(event, to, toParams) { - if (utilities.isAuthenticated()) { - $rootScope.isAuth = true; - if (to.authpage) { - event.preventDefault(); - $state.go("home"); - } - } else { - $rootScope.isAuth = false; - if (to.authenticate) { - event.preventDefault(); - $rootScope.previousState = to; - $rootScope.previousStateParams = toParams; - $state.go("auth.login"); - } - } - - }); - - $rootScope.$on('$stateChangeStart', function(event, to, params) { - if (to.redirectTo) { - event.preventDefault(); - $state.go(to.redirectTo, params, { location: $location.path() }); - } - }); - - $rootScope.$on('$stateChangeSuccess', function() { - // Save the route title - $rootScope.pageTitle = $state.current.title; - // Scroll to top - $window.scrollTo(0, 0); - // Google Analytics Scripts - if ($window.ga) { - $window.ga('create', 'UA-45466017-2', 'auto'); - $window.ga('send', 'pageview', $location.path()); - } - }); - - $rootScope.notify = function(type, message, timeout) { - // function to pic timeout - function pick(arg, def) { - return (typeof arg === undefined ? def : arg); - } - - timeout = pick(timeout, 5000); - toaster.pop({ - type: type, - body: message, - timeout: timeout, - }); - }; - - $rootScope.logout = function() { - var userKey = utilities.getData('userKey'); - var parameters = {}; - parameters.url = 'auth/logout/'; - parameters.method = 'POST'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() { - utilities.resetStorage(); - $rootScope.isLoader = false; - $state.go("home"); - $rootScope.isAuth = false; - $rootScope.notify("info", "Successfully logged out!"); - }, - onError: function() {} - }; - - utilities.sendRequest(parameters); - }; - - $rootScope.checkToken = function() { - var userKey = utilities.getData('userKey'); - var parameters = {}; - parameters.url = 'auth/user/'; - parameters.method = 'GET'; - parameters.token = userKey; - parameters.callback = { - onSuccess: function() {}, - onError: function(response) { - var status = response.status; - if (status == 401) { - alert("Timeout, Please login again to continue!"); - utilities.resetStorage(); - $state.go("auth.login"); - $rootScope.isAuth = false; - } - } - }; - - utilities.sendRequest(parameters); - }; - - if (!$rootScope.isAuth) { - // checkToken(); - } - } -})(); diff --git a/frontend/src/js/services/loaderService.js b/frontend/src/js/services/loaderService.js deleted file mode 100644 index 76b2f78715..0000000000 --- a/frontend/src/js/services/loaderService.js +++ /dev/null @@ -1,25 +0,0 @@ - - angular - .module('evalai') - .service('loaderService', loaderService); - - function loaderService() { - - //start loader - this.startLoader = function(msg) { - this.isExistLoader = true; - this.loaderTitle = msg; - this.loaderContainer.addClass('low-screen'); - }; - - // stop loader - this.stopLoader = function() { - this.isExistLoader = false; - this.loaderTitle = ''; - this.loaderContainer.removeClass('low-screen'); - }; - - return this; - - } - diff --git a/frontend/src/js/services/services.js b/frontend/src/js/services/services.js deleted file mode 100644 index db264f97fe..0000000000 --- a/frontend/src/js/services/services.js +++ /dev/null @@ -1,165 +0,0 @@ -// define services here - -// Basic utilities -(function() { - - 'use strict'; - - angular - .module('evalai') - .service('utilities', utilities); - - utilities.$inject = ['$http', 'EnvironmentConfig']; - - function utilities($http, EnvironmentConfig) { - - // factory for API calls - this.sendRequest = function(parameters, header, type) { - var url = EnvironmentConfig.API + parameters.url; - var data = parameters.data; - var token = parameters.token; - var method = parameters.method; - var successCallback = parameters.callback.onSuccess; - var errorCallback = parameters.callback.onError; - - // check for authenticated calls - if (parameters.token != null) { - var headers = { - 'Authorization': "Token " + token - }; - } - - // function to check for applying header - function pick(arg, def) { - return (typeof arg == 'undefined' ? def : arg); - } - - header = pick(header, 'header'); - var req = { - method: method, - url: url, - }; - if (header == 'header') { - req.headers = headers; - } - if (method == "POST" || method == "PUT" || method == "PATCH") { - req.data = data; - } - - // for file upload - if (method == "POST" || method == "PATCH" || method == "PUT") { - if (type == "upload") { - // alert("") - headers = { - 'Content-Type': undefined, - 'Authorization': "Token " + token - }; - req.transformRequest = function(data) { - return data; - }; - - req.headers = headers; - } - } - - $http(req) - .then(successCallback, errorCallback); - }; - - this.storeData = function(key, value) { - localStorage.setItem(key, JSON.stringify(value)); - }; - - this.getData = function(key) { - if (localStorage.getItem(key) === null) { - return false; - } else { - return JSON.parse(localStorage.getItem(key)); - } - }; - - this.deleteData = function(key) { - localStorage.removeItem(key); - }; - - // user verification auth service - this.isAuthenticated = function() { - if (this.getData('userKey')) { - return true; - } else { - return false; - } - }; - - this.resetStorage = function() { - localStorage.clear(); - }; - - this.showLoader = function() { - angular.element("#sim-loader").show(); - angular.element(".web-container").addClass('low-screen'); - }; - - this.hideLoader = function() { - angular.element("#sim-loader").fadeOut(); - angular.element(".web-container").removeClass('low-screen'); - }; - - this.showButton = function() { - angular.element("#scroll-up").show(); - }; - - this.hideButton = function() { - angular.element("#scroll-up").fadeOut(); - }; - - this.passwordStrength = function(password){ - - //Regular Expressions. - var regex = new Array(); - regex.push("[A-Z]","[a-z]","[0-9]","[$$!%*#?&]"); - - var passed = 0; - //Validate for each Regular Expression. - for (var i = 0; i < regex.length; i++) { - if (new RegExp(regex[i]).test(password)) { - passed++; - } - } - //Validate for length of Password. - if (passed > 2 && password.length > 8) { - passed++; - } - - var color = ""; - var strength = ""; - if (passed == 1) { - strength = "Weak"; - color = "red"; - } else if (passed == 2) { - strength = "Average"; - color = "darkorange"; - } else if (passed == 3) { - strength = "Good"; - color = "green"; - } else if (passed == 4) { - strength = "Strong"; - color = "darkgreen"; - } else if (passed == 5) { - strength = "Very Strong"; - color = "darkgreen"; - } - return [strength, color]; - }; - - this.getEnvironment = function() { - switch (EnvironmentConfig.API) { - case "http://localhost:8000/api/": return "local"; - case "https://staging.eval.ai/api/": return "staging"; - case "https://eval.ai/api/": return "production"; - default: return "other"; - } - }; - } - -})(); diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js new file mode 100644 index 0000000000..2d4d564619 --- /dev/null +++ b/frontend/src/lang/en.js @@ -0,0 +1,266 @@ +// en.js +export default { + basicInfo: 'Basic Info', + saveAs: 'Save as', + save: 'Save', + create: 'Create', + saveFailed: 'Failed', + nonEdit: 'Not Editable', + name: 'Name', + saveOrNot: 'Do you want to save the changes?', + aboutToLeave: 'About to leave', + notSave: "Don't Save", + confirm: 'Confirm', + cancel: 'Cancel', + pleaseInputName: 'Please input name', + note: 'Note', + success: 'Success', + greeting: 'Hello, welcome to use Arena platform!', + yes: 'Yes', + no: 'No', + back: 'Back', + send: 'Send', + submit: 'Submit', + operate: 'Operate', + loadMore: 'Load more', + systemInterface: 'System interface', + exception: 'exception', + interfaceTimeout: 'Interface request timeout', + interfaceException: 'Interface connection exception', + login: { + username: 'User name', + password: 'Password', + usernamePH: 'Please enter user name (no less than 3 characters)', + passwordPH: 'Please enter password(min 8 characters)', + usernameVerify1: 'Username is required', + usernameVerify2: 'Username is too short', + passwordVerify1: 'Passwordis required', + passwordVerify2: 'Password is too short', + login: 'Log In', + goSingup: 'Start with a new account Sign Up', + forgotpw: 'Forgot password or username?', + }, + signup: { + username: 'User name', + email: 'Email', + password: 'Password', + confirmpw: 'Confirm password', + usernamePH: 'Please enter user name (no less than 3 characters)', + emailPH: 'Please enter email', + passwordPH: 'Please enter password(min 8 characters)', + confirmpwPH: 'Please confirm the password again', + usernameVerify1: 'Username is required', + usernameVerify2: 'Username is too short', + passwordVerify1: 'Passwordis required', + passwordVerify2: 'Password is too short', + confirmpwVerify1: 'Passwords do not match', + emailVerify1: 'Email address is required', + emailVerify2: 'Please enter a valid email address', + signup: 'Sign Up', + goLogin: 'Already have an account? Log In', + registerSuccess: 'Registered successfully', + }, + lang: { + chinese: 'Chinese', + english: 'English', + }, + forget: { + title: 'Forgot password?', + prompt: 'You can reset your password by entering your email.', + backlogin: 'Back to login', + email: 'Email', + emailPH: 'Please enter email', + emailVerify1: 'Please enter a valid email address', + submit: 'Submit', + restext: 'Password reset link has been sent to your registered email address. Please check your email inbox.', + backloginTxt: 'Back to Log In', + }, + reset: { + setpw: 'Set new password', + confirmpw: 'Confirm new password', + passwordPH: 'Please enter password(min 8 characters)', + confirmpwPH: 'Please confirm the password again', + passwordVerify1: 'Passwordis required', + passwordVerify2: 'Password is too short', + confirmpwVerify1: 'Passwords do not match', + submit: 'Submit', + goSingup: 'Start with a new account Sign Up', + changeSuccess: 'Password changed successfully', + restext: 'Password has been reset with the new password.', + login: 'Log In', + }, + challenge: { + challenge: 'Challenge', + participate: 'Participate', + ongoing: 'ongoing', + eventDetails: 'Event details', + overview: 'Overview', + leaderboard: 'Leaderboard', + submission: 'Submission', + allSubmission: 'All Submissions', + noTeam: 'No team exists for now.', + startCreate: 'Start by creating a new team!', + approval: 'Team Approval', + please: 'Please', + login: 'log in', + partiChall: 'to participate in this challenge.', + }, + team: { + team: 'Team', + members: 'Members', + createdBy: 'Created by', + createTeam: 'Create Team', + editTeam: 'Update Team', + teamName: 'Team Name', + teamNamePH: 'Please enter Team Name', + url: 'URL', + urlPH: 'Please enter URL', + removeYourself: 'Would you like to remove yourself?', + removeNote: 'Note: This action will remove you from the team.', + intive: 'Intive', + email: 'Email', + emailPH: 'Please enter User Email', + emailNote: 'Batch invitation, intermediate use ; separation', + createSuccess: 'New team has been created', + updateSuccess: 'Host team updated', + removeSuccess: 'You have removed yourself successfully', + intiveSuccess: 'has been added successfully', + }, + user: { + profile: 'Profile', + logout: 'Log out', + modifyPic: 'Modify profile picture', + firstName: 'First Name', + lastName: 'Last Name', + affilliate: 'Affilliate To', + profileCompleted: 'Profile Completed', + password: 'Password', + changePassword: 'Change Password', + oldPassword: 'Old Password', + newPassword: 'New Password', + confirmpw: 'New Password (Again)', + oldPasswordPH: 'Please enter old password', + newPasswordPH: 'Please enter password(min 8 characters)', + confirmpwPH: 'Please confirm the password again', + oldPwVerify1: 'Old password is required', + oldPwVerify2: 'password is less than 8 characters.', + newPwVerify1: 'New password is required', + confirmpwVerify1: 'Passwords do not match', + pwChangeSuccess: 'Your password has been changed successfully!', + profileUpdatedSuccess: 'Profile updated successfully!', + }, + permission: { + verifyEmail: 'Please verify your email to continue.', + getEmailTxt: "Didn't get the email?", + emailVerifiedSuccess: 'Your emails has been verified successfully.', + resendEmail: 'Resend Email', + sentAgain: 'The verification link was sent again.', + continueVerify: 'please verify your email to continue', + hasSent: 'The verification mail has been sent to you.
Please confirm!', + denied: 'permission-denied', + }, + race_93: { + title: 'CARLA Autonomous Driving Challenge 1.0', + describe: + 'CARLA Autonomous Driving Challenge 1.0 encourages the development of state-of-the-art autonomous driving systems to tackle complex traffic scenarios. Autonomous agents will be tested in CARLA — an open source driving simulator.', + }, + race_100: { + title: 'CARLA Autonomous Driving Challenge 2.0', + describe: + 'The main goal of the CARLA Autonomous Driving Challenge 2.0 is to evaluate the driving proficiency of autonomous agents in realistic traffic scenarios. The leaderboard serves as an open platform for the community to perform fair and reproducible evaluations of autonomous vehicle agents, simplifying the comparison between different approaches.', + }, + overview: { + view: { + title: 'Overview', + con1: 'Visually inspecting bridges plays a crucial role in assessing their structural integrity, traffic safety, and long-term durability in order to find the ideal timing for rehabilitation steps or to take immediate actions (e.g. limiting heavy traffic or closing a bridge). The current inspection process can be made more efficient by making use of computer vision models in order to automate the damage recognition. Therefore, we developed "dacl10k", an exceptionally diverse multi-label semantic segmentation dataset comprising 9,920 images derived by real-world bridge inspections. dacl10k distinguishes 13 damage classes as well as 6 bridge components that play a key role in bridge inspections. Thereby, it enables the classification, measurement and localisation of its classes on a pixel level. The challenge is to develop a model that can detect and classify the 19 classes of the dacl10k dataset.', + con2: 'Detailed informations about the dataset can be found in the paper dacl10k: Benchmark for Semantic Bridge Damage Segmentation.', + con3: 'We provide a Python toolkit which should act as a simple entry point for the dataset.', + con4: 'The Development dataset can be downloaded from [GigaMove] and [AWS].', + con5: 'The Tesfinal dataset can be downloaded from [GigaMove] and [AWS].', + }, + eval: { + title: 'Evaluation Criteria', + con1: 'The driving proficiency of an agent can be characterized by multiple metrics. For this leaderboard we have selected a set of metrics that help understand different aspects of driving. While all routes have the same type of metrics, their respective values are calculated separately.', + con2: 'Please refer to the Leaderboard website for more details about the evaluation metrics.', + }, + term: { + title: 'Terms and Conditions', + con1: 'Updated October 5th, 2020.', + con2: 'PLEASE READ THESE TERMS CAREFULLY. SUBMITTING TO THIS LEADERBOARD CONSTITUTES YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT AGREE TO ANY PART OF THESE TERMS, PLEASE DO NOT SUBMIT.', + sub1T: '1. How can I participate in the leaderboard?', + sub1C1: + 'You can participate in the CARLA leaderboard as an individual or as a member of a team. Individuals may form a team with multiple members. The affiliation of each individual must be declared in order to validate and approve your team. Members without a valid affiliation will be banned from the team. The CARLA organization reserves the right to ban team members and even the entire team if any the terms of the leaderboard are violated.', + sub1C2: + 'Teams can make as many submissions as they wish until they reach their allocated simulation budget or their monthly maximum number of submissions. The organization of the CARLA leaderboard reserves the right to provide teams with additional simulation budget and/or number of submissions.', + sub2T: '2. Submissions', + sub2C1: + 'By making a submission to the CARLA leaderboard you and your team grant the CARLA leaderboard organization the rights to review and analyze your submission to verify that it complies with all the rules of this leaderboard. The submitted code (docker image) will be used for evaluation purposes only and will not be disclosed without the consent of the team.', + sub3T: '3. Disqualification', + sub3C1: + 'You are not allowed to make use of any privilege information offered by the CARLA simulator or derivatives, including world coordinates, planners, or any type of ground truth. Submissions using these features will be rejected and teams will be banned from the platform.', + con3: 'If the organization of the CARLA leaderboard detects any infraction of these terms, an attempt to bypass the rules of the leaderboard, or any other behavior that could be perceived as dishonest, the organization reserves the right to disqualify a submission and/or ban you and/or your team members from the participation in the CARLA leaderboard.', + }, + }, + submission: { + guidelines: 'Submission Guidelines', + guideTxt: 'Card quickly that customer can. Indeed beat year news learn. Surface she tend. Account play food claim despite daughter change use.', + submission: 'Make Submission', + selectPhase: 'Selected phase', + startDate: 'Start date', + endDate: 'End date', + todayRemain: 'Today‘s remaining submission', + monthRemain: 'Monthly remaining submission', + totalRemain: 'Total remaining submission', + instruction: 'Submission instructions', + install: 'Install arena-cli', + addToken: 'Add your Arena account token to arena-cli', + copySuccess: 'Command copied to clipboard', + clipboardSuccess: 'Copied to clipboard', + flagTxt: 'Use --private or --public flag in the submission command to make the submission private or public respectively.', + forMore: 'For more commands, please refer to', + referDocument: 'arena-cli documentation.', + deregisterChallenge: 'Clik here to deregister from this challenge', + deregister: 'Deregister', + notApproved: 'Sorry,the participant team is not approved by host yet.', + deregisterSuccess: 'You have successfully deregistered from the challenge.', + list: 'Submission list', + deregisterTeam: 'Deregister Partipant Team', + deregisterConfirm: 'Are you sure you want to deregister team?', + phasePH: 'Select phase', + notCancelled: 'Only unproccessed submissions can be cancelled', + changeMade: 'The submission is made ', + public: 'public', + private: 'private', + team: 'Team', + createdBy: 'Created by', + status: 'Status', + executTime: 'Execution time (sec.)', + submittedFile: 'Submitted file', + resultFile: 'Result file', + stdoutFile: 'Stdout file', + stderrFile: 'Stderr file', + submittedAt: 'Submitted at', + showOnLeaderboard: 'Show on leaderboard', + verifySubmission: 'Verify submission', + sureCancelSubmission: 'Are you sure you want to cancel submission?', + cancelSuccess: 'Submission cancelled successfully!', + }, + leaderboard: { + team: 'Participant team', + score: 'Score', + lastSubmission: 'Last submission at', + rank: 'Rank', + orderScore: 'Order by Score', + }, + approval: { + teamId: 'Team ID', + member: 'Team Member', + state: 'State', + approve: 'Approve', + disagree: 'Disagree', + approveTeam: 'Approve team', + approveNote: 'Note:participant teams with existing submissions cannot be disapproved', + approveSuccess: 'Participant Team Approved successfully.', + disapproveSuccess: 'Participant Team Disapproved successfully.', + }, +}; diff --git a/frontend/src/lang/index.js b/frontend/src/lang/index.js new file mode 100644 index 0000000000..afddc3802f --- /dev/null +++ b/frontend/src/lang/index.js @@ -0,0 +1,37 @@ +import { createI18n } from 'vue-i18n'; +import EN from './en'; +import ZH from './zh'; +import Cookies from 'js-cookie'; + +const messages = { + zh: { + ...ZH, + }, + en: { + ...EN, + }, +}; + +// 获取默认语言 +export function getLanguage() { + const chooseLanguage = Cookies.get('language'); + if (chooseLanguage) return chooseLanguage; + + const language = (navigator.language || navigator.browserLanguage).toLowerCase(); + const locales = Object.keys(messages); + for (const locale of locales) { + if (language.indexOf(locale) > -1) { + return locale; + } + } + return 'en'; +} + +const i18n = createI18n({ + locale: getLanguage(), // 设置当前语言类型 + legacy: false, // 如果要支持compositionAPI,此项必须设置为false; + globalInjection: true, // 全局注册$t方法 + messages, +}); + +export default i18n; diff --git a/frontend/src/lang/zh.js b/frontend/src/lang/zh.js new file mode 100644 index 0000000000..9c26c24f6a --- /dev/null +++ b/frontend/src/lang/zh.js @@ -0,0 +1,264 @@ +// zh.js +export default { + basicInfo: '基本信息', + saveAs: '另存为', + save: '保存', + create: '创建', + saveFailed: '保存失败', + nonEdit: '不可编辑', + name: '名称', + saveOrNot: '是否保存改动内容?', + aboutToLeave: '即将离开', + notSave: '不保存', + confirm: '确定', + cancel: '取消', + pleaseInputName: '请输入名称', + note: '备注', + success: '成功', + greeting: '你好,欢迎使用Arena平台', + yes: '是', + no: '否', + back: '返回', + send: '发送', + submit: '提交', + operate: '操作', + loadMore: '加载更多', + systemInterface: '系统接口', + exception: '异常', + interfaceTimeout: '接口请求超时', + interfaceException: '接口连接异常', + login: { + username: '用户名', + password: '密码', + usernamePH: '请输入用户名 (不少于三个字符)', + passwordPH: '请输入密码(最少8个字符)', + usernameVerify1: '用户名必填', + usernameVerify2: '用户名太短', + passwordVerify1: '密码必填', + passwordVerify2: '密码太短', + login: '登录', + goSingup: '注册一个账号', + forgotpw: '忘记密码或用户名?', + }, + signup: { + username: '用户名', + email: '邮箱', + password: '密码', + confirmpw: '确认密码', + usernamePH: '请输入用户名 (不少于三个字符)', + emailPH: '请输入邮箱', + passwordPH: '请输入密码(最少8个字符)', + confirmpwPH: '请再次确认密码', + usernameVerify1: '用户名必填', + usernameVerify2: '用户名太短', + passwordVerify1: '密码必填', + passwordVerify2: '密码太短', + confirmpwVerify1: '密码不匹配', + emailVerify1: '请输入邮箱地址', + emailVerify2: '请输入一个有效邮箱地址', + signup: '注册', + goLogin: '已有一个账号?去登录', + registerSuccess: '注册成功', + }, + lang: { + chinese: '中文', + english: '英文', + }, + forget: { + title: '忘记密码?', + prompt: '输入注册邮箱可以重置密码', + backlogin: '返回登陆', + email: '邮箱', + emailPH: '请输入邮箱', + emailVerify1: '请输入一个有效邮箱地址', + submit: '提交', + restext: '密码重置链接已发送至您的注册邮箱,请在收件箱中查收。', + backloginTxt: '返回登录', + }, + reset: { + setpw: '设置新密码', + confirmpw: '确认新密码', + passwordPH: '请输入密码(最少8个字符)', + confirmpwPH: '请再次确认密码', + passwordVerify1: '密码必填', + passwordVerify2: '密码太短', + confirmpwVerify1: '密码不匹配', + submit: '提交', + goSingup: '注册一个账号', + changeSuccess: '密码修改成功!', + restext: '密码已被新密码重置', + login: '登录', + }, + challenge: { + challenge: '比赛', + participate: '参加', + ongoing: '进行中', + eventDetails: '比赛详情', + overview: '概述', + leaderboard: '排行榜', + submission: '提交', + allSubmission: '所有提交', + noTeam: '目前不存在任何团队。', + startCreate: '开始创建一个新团队吧!', + approval: '团队审批', + please: '请', + login: '登录', + partiChall: '参与比赛。', + }, + team: { + team: '团队', + members: '成员', + createdBy: '创建者用户名', + createTeam: '创建团队', + editTeam: '编辑团队', + teamName: '团队名称', + teamNamePH: '请输入团队名称', + url: '团队网址', + urlPH: '请输入地址', + removeYourself: '你想要移除你自己么?', + removeNote: '注意:这个操作将使你从团队中删除。', + intive: '邀请', + email: '邮箱', + emailPH: '请输入邮箱', + emailNote: '批量邀请,中间使用;隔开', + createSuccess: '新的团队已创建成功', + updateSuccess: '团队已更新', + removeSuccess: '你已经成功移除了你自己', + intiveSuccess: '已被成功邀请', + }, + user: { + profile: '个人信息', + logout: '退出登录', + modifyPic: '编辑头像', + firstName: '名字', + lastName: '姓氏', + affilliate: '单位', + profileCompleted: '简介完成度', + password: '密码', + changePassword: '更改密码', + oldPassword: '旧密码', + newPassword: '新密码', + confirmpw: '密码确认', + oldPasswordPH: '请输入旧密码', + newPasswordPH: '请输入密码(最少8个字符)', + confirmpwPH: '请再次确认密码', + oldPwVerify1: '旧密码必须填写', + oldPwVerify2: '密码至少8个字符', + newPwVerify1: '新密码必须填写', + confirmpwVerify1: '密码不匹配', + pwChangeSuccess: '您的密码已成功更改!', + profileUpdatedSuccess: '个人信息更改成功!', + }, + permission: { + verifyEmail: '请先校验您的邮箱。', + getEmailTxt: '没有收到电子邮件?', + emailVerifiedSuccess: '您的电子邮件已成功验证。', + resendEmail: '发送邮件', + sentAgain: '验证链接已再次发送。', + continueVerify: '请验证您的电子邮件以继续', + hasSent: '验证邮件已发送给您。
请确认!', + denied: '许可被拒绝', + }, + race_93: { + title: 'CARLA自动驾驶算法挑战赛 1.0', + describe: 'CARLA自动驾驶挑战1.0鼓励开发最优秀的自动驾驶系统,以应对复杂的交通场景。自动驾驶汽车将在CARLA开源的驾驶模拟器中进行测试。', + }, + race_100: { + title: 'CARLA 自动驾驶算法挑战赛 2.0', + describe: + 'CARLA 自动驾驶挑战赛 2.0 的主要目标是评估自动驾驶代理在现实交通场景中的驾驶能力,可以对自动驾驶算法进行公平和可重复的评估,从而简化不同方法之间的比较。', + }, + overview: { + view: { + title: '概述', + con1: '目视检查桥梁在评估其结构完整性、交通安全和长期耐久性方面发挥着至关重要的作用,以便找到修复步骤或立即采取行动(例如限制繁忙交通或关闭桥梁)的理想时机。通过使用计算机视觉模型来自动化损伤识别,可以使当前的检查过程更加高效。因此,我们开发了“dacl10k”,这是一个异常多样化的多标签语义分割数据集,包括9920张通过真实世界桥梁检查获得的图像。dacl10k区分了13个损伤类别以及在桥梁检查中起关键作用的6个桥梁部件。因此,它能够在像素级别上对其类别进行分类、测量和定位。挑战在于开发一种能够检测和分类dacl10k数据集的19类的模型。', + con2: '关于该数据集的详细信息可以在论文dacl10k:语义桥梁损伤分割基准中找到。', + con3: '我们提供了一个Python工具包,它应该作为数据集的简单入口点。', + con4: '开发数据集可以从【gigmove】和【AWS】下载。', + con5: 'Tesfinal数据集可以从【GigaMove】和【AWS】下载。', + }, + eval: { + title: '评估标准', + con1: '智能体的驾驶熟练程度可以用多个指标来表征。对于这个排行榜,我们选择了一组有助于理解驾驶不同方面的指标。虽然所有路由都有相同类型的度量值,但它们各自的值是单独计算的。', + con2: '有关评估指标的更多详细信息,请参阅排行榜网站。', + }, + term: { + title: '条款和条件', + con1: '更新时间:2020年10月5日。', + con2: '请仔细阅读这些条款。提交此排行榜即表示您接受这些条款。如果您不同意这些条款的任何部分,请不要提交。', + sub1T: '1. 我如何参加排行榜?', + sub1C1: + '您可以作为个人或团队成员参加CARLA排行榜。个人可以组成一个由多个成员组成的团队。为了验证和批准您的团队,必须声明每个人的隶属关系。没有有效隶属关系的成员将被禁止加入团队。如果违反排行榜的任何条款,CARLA组织保留禁止团队成员甚至整个团队参赛的权利。', + sub1C2: '团队可以随心所欲地提交,直到达到分配的模拟预算或每月提交的最大数量。CARLA排行榜的组织保留向团队提供额外模拟预算和/或提交数量的权利。', + sub2T: '2. 提交', + sub2C1: + '通过向CARLA排行榜提交,您和您的团队授予CARLA排行板组织审查和分析您提交的内容以验证其是否符合该排行榜的所有规则的权利。提交的代码(docker图像)仅用于评估目的,未经团队同意,不得披露。', + sub3T: '3. 取消资格', + sub3C1: + '您不允许使用CARLA模拟器或衍生物提供的任何特权信息,包括世界坐标、规划者或任何类型的地面实况。使用这些功能的提交将被拒绝,团队将被禁止进入平台。', + con3: '如果CARLA排行榜的组织发现任何违反这些条款的行为、试图绕过排行榜规则的行为或任何其他可能被视为不诚实的行为,该组织保留取消提交资格和/或禁止您和/或您的团队成员参加CARLA排行表的权利。', + }, + }, + submission: { + guidelines: '投稿须知', + guideTxt: '客户可以快速刷卡。确实打败了当年的新闻学习。表面她倾向。账户播放食物索赔,尽管女儿改变了用途。', + submission: '提交', + selectPhase: '选定的阶段', + startDate: '开始时间', + endDate: '结束时间', + todayRemain: '今天剩余提交次数', + monthRemain: '当月剩余提交次数', + totalRemain: '总共剩余提交次数', + instruction: '提交说明', + install: '安装', + addToken: '将您的Eval帐户token添加到EvalAI-cli', + copySuccess: '命令已复制到剪贴板', + clipboardSuccess: '已复制到剪贴板', + flagTxt: '在提交命令中使用 --private 或 --public 标志可分别将提交设为private或public。', + forMore: '有关更多命令,请参阅 ', + referDocument: 'arena cli文档。', + deregisterChallenge: '点击这里退出此比赛', + deregister: '退出比赛', + notApproved: '抱歉,参赛团队还没有得到主持人的批准。', + deregisterSuccess: '您已成功从比赛中退出。', + list: '提交列表', + deregisterTeam: '退出比赛', + deregisterConfirm: '你确定团队要退出比赛吗?', + phasePH: '选择阶段', + notCancelled: '只有未处理的提交才能取消', + changeMade: '提交已被置为', + public: '公开', + private: '非公开', + team: '参赛团队', + createdBy: '创建者', + status: '状态', + executTime: '执行时间(秒)', + submittedFile: '提交文件', + resultFile: '执行结果', + stdoutFile: '标准输出', + stderrFile: '标准错误', + submittedAt: '提交时间', + showOnLeaderboard: '参与排名', + verifySubmission: '验证提交', + sureCancelSubmission: '您确定要取消提交吗?', + cancelSuccess: '提交成功取消!', + }, + leaderboard: { + team: '团队', + score: '得分', + lastSubmission: '上次提交时间', + rank: '排行', + orderScore: '按分数排序', + }, + approval: { + teamId: '团队ID', + member: '团队成员', + state: '状态', + approve: '批准', + disagree: '不同意', + approveTeam: '团队审批', + approveNote: '注意: 已提交作品的参赛团队不能被拒绝', + approveSuccess: '参与者团队批准成功。', + disapproveSuccess: '参与者团队否决成功。', + }, +}; diff --git a/frontend/src/layout/Index.vue b/frontend/src/layout/Index.vue new file mode 100644 index 0000000000..f1c2ae25fa --- /dev/null +++ b/frontend/src/layout/Index.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/frontend/src/main.js b/frontend/src/main.js new file mode 100644 index 0000000000..f9b0523e16 --- /dev/null +++ b/frontend/src/main.js @@ -0,0 +1,16 @@ +import './styles/global.scss'; +import '@/assets/iconfont/iconfont'; +import 'element-plus/theme-chalk/dark/css-vars.css'; +import 'ress/dist/ress.min.css'; + +import { createApp } from 'vue'; +import App from './App.vue'; +import router from './router'; +import i18n from './lang/index'; +import './permission'; +import store from './store'; +import Directive from './directives'; + +const app = createApp(App); + +app.use(store).use(router).use(i18n).use(Directive).mount('#app'); diff --git a/frontend/src/permission.js b/frontend/src/permission.js new file mode 100644 index 0000000000..85a7f02d1d --- /dev/null +++ b/frontend/src/permission.js @@ -0,0 +1,43 @@ +import router from './router'; +import store from './store'; + +const whiteList = ['/auth/verifyEmail', '/challenge/detail/100']; + +// 守卫 +router.beforeEach((to, from, next) => { + if (store.state.token) { + if (to.path === '/auth/verifyEmail') { + next(); + } else if (to.path.startsWith('/auth/')) { + next({ path: '/' }); + } else { + if (!store.state.userInfo.pk) { + store + .dispatch('getUserInfo') + .then((res) => { + next({ ...to, replace: true }); + }) + .catch((err) => { + store + .dispatch('logOut') + .then((res) => { + next({ path: '/' }); + }) + .catch((err) => { + next({ path: '/' }); + }); + }); + } else { + next(); + } + } + } else { + // 没有token + if (to.path.startsWith('/auth/') || whiteList.indexOf(to.path) !== -1) { + // 在免登录白名单,直接进入 + next(); + } else { + next(`/auth/login?redirect=${to.fullPath}`); // 否则全部重定向到登录页 + } + } +}); diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js new file mode 100644 index 0000000000..089a6c6c23 --- /dev/null +++ b/frontend/src/router/index.js @@ -0,0 +1,91 @@ +import { createRouter, createWebHistory } from 'vue-router'; +import Layout from '../layout/Index.vue'; +import i18n from '@/lang/index.js'; +import store from '../store'; +const redirect = store.state.token ? '/challenge' : '/challenge/detail/100'; + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: '', + component: Layout, + redirect: redirect, + children: [ + { + path: '/challenge', + name: 'Challenge', + meta: { title: i18n.global.t('challenge.challenge') }, + children: [ + { + path: '', + name: 'ChallengeIndex', + component: () => import('../views/challenge/Challenge.vue'), + }, + { + path: 'detail/:raceId', + component: () => import('../views/challenge/Detail.vue'), + name: 'EventDetail', + meta: { + title: i18n.global.t('challenge.eventDetails'), + showcrumb: true, + activeMenu: '/challenge', + }, + }, + ], + }, + { + path: '/team', + component: () => import('../views/team/Team.vue'), + name: 'Team', + meta: { title: i18n.global.t('team.team') }, + }, + { + path: '/profile', + component: () => import('../views/user/Profile.vue'), + name: 'User', + meta: { title: i18n.global.t('user.profile') }, + }, + { + path: '/permissionDenied', + component: () => import('../views/permission/Denied.vue'), + name: 'Permission', + meta: { title: i18n.global.t('permission.denied') }, + }, + ], + }, + { + path: '/auth', + component: () => import('../views/auth/Index.vue'), + children: [ + { + path: 'login', + name: 'Login', + component: () => import('../views/auth/Login.vue'), + }, + { + path: 'signup', + name: 'Signup', + component: () => import('../views/auth/Signup.vue'), + }, + { + path: 'forget', + name: 'Forget', + component: () => import('../views/auth/Forget.vue'), + }, + { + path: 'resetcode/:uid/:token', + name: 'Resetcode', + component: () => import('../views/auth/Resetcode.vue'), + }, + { + path: 'verifyEmail', + name: 'VerifyEmail', + component: () => import('../views/auth/VerifyEmail.vue'), + }, + ], + }, + ], +}); + +export default router; diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js new file mode 100644 index 0000000000..0b1a1a9ecf --- /dev/null +++ b/frontend/src/store/index.js @@ -0,0 +1,89 @@ +import { createStore } from 'vuex'; +import { getUser, login, register, logout } from '@/api/user.js'; +import { getToken, setToken, removeToken, removeJwtToken } from '@/utils/auth'; + +export default createStore({ + state: { + userInfo: {}, + token: getToken() || '', + }, + getters: {}, + mutations: { + setUser(state, payload) { + state.userInfo = payload; + }, + setToken(state, payload) { + state.token = payload; + }, + clearStore(state) { + state.userInfo = {}; + state.token = ''; + }, + }, + actions: { + // 登录 + login({ commit }, userInfo) { + return new Promise((resolve, reject) => { + login(userInfo) + .then((res) => { + if (res?.token) { + setToken(res.token); + commit('setToken', res.token); + resolve(); + } else { + reject(new Error('login fail')); + } + }) + .catch((error) => { + reject(error); + }); + }); + }, + + // 注册 + signUp({ commit }, userInfo) { + return new Promise((resolve, reject) => { + register(userInfo) + .then((res) => { + if (res?.key) { + setToken(res.key); + commit('setToken', res.key); + resolve(); + } else { + reject(new Error('sign up fail')); + } + }) + .catch((error) => { + reject(error); + }); + }); + }, + + // 获取当前用户信息 + getUserInfo({ commit }) { + return getUser().then((res) => { + commit('setUser', res); + }); + }, + + // 退出系统 + logOut({ commit }) { + return new Promise((resolve, reject) => { + logout() + .then((res) => { + removeToken(); + removeJwtToken(); + commit('clearStore'); + resolve(res); + }) + .catch((error) => { + removeToken(); + removeJwtToken(); + commit('clearStore'); + reject(error); + }); + }); + }, + }, + modules: {}, +}); diff --git a/frontend/src/styles/base.scss b/frontend/src/styles/base.scss new file mode 100644 index 0000000000..f91c959aec --- /dev/null +++ b/frontend/src/styles/base.scss @@ -0,0 +1,238 @@ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: #ffffff; +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: color 0.5s, background-color 0.5s; + line-height: 1; + font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + font-size: 14px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.flex { + display: flex; +} + +.flex-between { + display: flex; + align-items: center; + justify-content: space-between; +} + +.flex-center { + display: flex; + align-items: center; +} + +/* 页面一级标题,一般用于区块的标题 */ +.first-title { + font-size: 18px; + font-weight: 400; + line-height: 24px; +} + +/* 二级标题, 一般用于卡片或弹框内的标题 */ +.second-title { + font-size: 18px; + font-weight: 400; + line-height: 18px; + position: relative; + &::before { + width: 3px; + height: 16px; + background-color: var(--el-color-primary); + content: ''; + position: absolute; + top: 50%; + left: -11px; + transform: translateY(-50%); + } +} + +.ellipsis { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.small-scrollbar, +.el-textarea__inner { + overflow-y: auto; + + &::-webkit-scrollbar { + width: 3px; + height: 3px; + } + + &::-webkit-scrollbar-thumb { + border-radius: 4px; + background-color: #464951; + } + + &::-webkit-scrollbar-track { + border-radius: 4px; + background-color: transparent; + } +} + +.icon { + width: 1em; + height: 1em; + vertical-align: -0.15em; + fill: currentColor; + overflow: hidden; +} + +/** 基础通用 **/ + +.mr4 { + margin-right: 4px; +} + +.pt5 { + padding-top: 5px; +} + +.pr5 { + padding-right: 5px; +} + +.pb5 { + padding-bottom: 5px; +} + +.mt5 { + margin-top: 5px; +} + +.ml5 { + margin-left: 5px; +} + +.mr5 { + margin-right: 5px; +} + +.mb5 { + margin-bottom: 5px; +} + +.mr8 { + margin-right: 8px; +} + +.ml8 { + margin-left: 8px; +} + +.mb8 { + margin-bottom: 8px; +} + +.mt10 { + margin-top: 10px; +} + +.mr10 { + margin-right: 10px; +} + +.mb10 { + margin-bottom: 10px; +} + +.mt16 { + margin-top: 16px; +} + +.ml16 { + margin-left: 16px; +} + +.mr16 { + margin-right: 16px; +} + +.mb16 { + margin-bottom: 16px; +} + +.ml20 { + margin-left: 20px; +} + +.mr20 { + margin-right: 20px; +} + +.mb20 { + margin-bottom: 20px; +} + +.mb24 { + margin-bottom: 24px; +} + +.mt24 { + margin-top: 24px; +} + +.mr24 { + margin-right: 24px; +} + +.mt32 { + margin-top: 32px; +} + +.mb32 { + margin-bottom: 32px; +} + +.pointer { + cursor: pointer; +} + +.custom-tag { + height: 32px; + background: #20551c; + border-radius: 2px 2px 2px 2px; + border: 1px solid #119d05; + line-height: 30px; + padding: 0 24px; + & + .custom-tag { + margin-left: 8px; + } +} diff --git a/frontend/src/styles/global.scss b/frontend/src/styles/global.scss new file mode 100644 index 0000000000..6391fe3117 --- /dev/null +++ b/frontend/src/styles/global.scss @@ -0,0 +1,388 @@ +@import './base.scss'; +body { + --el-color-primary: #4562e3; + --el-menu-hover-bg-color: #353e4e; + --text-color: #ffffff; + --el-bg-color: #292f3a; + + .el-button--primary { + --el-button-hover-bg-color: #617bf0; + --el-button-hover-border-color: #617bf0; + --el-button-disabled-bg-color: #304281; + --el-button-disabled-border-color: #304281; + --el-button-active-border-color: #2a41a8; + --el-button-active-bg-color: #2a41a8; + } + .el-table { + --el-table-header-bg-color: #364052; + } + .el-dropdown { + color: #ffffff; + } + .el-button { + &.is-text { + color: var(--text-color); + } + &.is-text:not(.is-disabled).is-has-bg { + background-color: #282f3b; + border: 1px solid #394253; + } + } + .el-button--large { + font-size: 20px; + } + // 表单样式统一 + .el-form-item__label { + color: var(--text-color); + } + // 数据框样式统一 + .el-input__wrapper { + background-color: #343c4d; + border-radius: 2px; + box-shadow: 0 0 0 1px #343c4d inset; + &:hover { + box-shadow: 0 0 0 1px var(--el-color-primary) inset; + } + } + + .el-popper > .el-popper__arrow { + display: none; + } + + // 选择器统一 + .el-select__popper.el-popper { + background: #343c4d; + border-radius: 4px 4px 4px 4px; + border: 1px solid #7f889a; + box-shadow: none; + .el-select-dropdown__list { + padding: 4px; + .el-select-dropdown__item { + border-radius: 4px; + &.hover { + background: transparent; + } + &:hover { + background: #242e3c; + } + &.selected { + background-color: var(--el-color-primary); + color: var(--text-color); + } + & + .el-select-dropdown__item { + margin-top: 2px; + } + } + } + } + + .el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell { + background-color: #364052; + } +} + +.icon-button { + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + width: 32px; + height: 32px; + border-radius: 2px 2px 2px 2px; + &:hover { + background: #343c4d; + } +} + +.icon-btn { + width: 24px; + height: 24px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 4px; +} + +:focus-visible { + outline: none !important; +} + +.el-form.auth-form { + width: 100%; + + .el-form-item { + margin-bottom: 32px; + + .el-form-item__label { + color: #ffffff; + font-size: 16px; + line-height: 16px; + margin-bottom: 16px; + } + } + + .el-input { + --el-input-focus-border-color: #4562e3; + --el-input-border-color: #353f5c; + --el-input-bg-color: #0d1427; + --el-input-border-radius: 2px; + + .el-input__wrapper { + padding: 0 15px; + + &.is-focus { + --el-input-bg-color: #0d1427; + box-shadow: 0px 0px 0px 1px #4562e3 inset, 0px 0px 1px 2px #353f5c; + } + + &:hover { + box-shadow: 0px 0px 0px 1px #4562e3 inset, 0px 0px 1px 2px #353f5c; + } + + .el-input__inner { + color: #ffffff; + height: 40px; + border-radius: 0; + background-color: transparent !important; + + &::placeholder { + color: #9a9a9a; + } + + // 自动填空底色去除 + &:-internal-autofill-previewed, + &:-internal-autofill-selected { + -webkit-text-fill-color: #ffffff; + transition: background-color 5000s ease-out 0.5s; + } + } + } + } +} + +.auth-submit-btn { + width: 100%; + height: 40px; + margin-top: 24px; + background-color: #4562e3; + display: grid; + font-size: 20px; + color: #ffffff; + place-items: center; + cursor: pointer; + user-select: none; + margin-top: 40px; + margin-bottom: 32px; +} + +.el-form-item:last-child { + margin-bottom: 0; +} + +.el-popover.el-popper.logout-popper { + padding: 4px 8px 8px; + border-radius: 4px 4px 4px 4px; + background-color: #292f3a; + color: #ffffff; + border: 1px solid #424e61; + box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.302); + .top { + height: 80px; + display: flex; + padding: 0 8px; + align-items: center; + border-bottom: 1px solid #434d60; + + .icon { + margin-right: 10px; + } + } + + .item { + width: 100%; + height: 40px; + display: flex; + align-items: center; + padding-left: 16px; + border-radius: 2px; + cursor: pointer; + + &:hover { + background: #4562e3; + color: #ffffff; + } + + .icon { + margin-right: 16px; + } + } +} + +// 下拉列表dropdown +.more-dropdown { + margin-top: -6px; + + .el-dropdown-menu { + padding: 4px 0; + } + + .el-dropdown-menu__item { + padding: 0 16px; + margin-left: 4px; + margin-right: 4px; + margin-bottom: 4px; + height: 32px; + border-radius: 2px; + color: #ffffff; + + &:not(.is-disabled):hover, + &:not(.is-disabled):focus { + background-color: var(--el-color-primary); + color: #ffffff; + } + &.active { + background-color: var(--el-color-primary); + } + + &.danger:not(.is-disabled):hover, + &.danger:not(.is-disabled):focus { + background-color: #e6595a; + } + + &:last-child { + margin-bottom: 0px; + } + } + + .el-popper__arrow { + display: none; + } +} + +// 弹框样式统一 +.el-dialog.oa-dialog { + background: #292f3a; + box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2); + border-radius: 6px 6px 6px 6px; + .el-dialog__header { + padding: 30px 50px 0 30px; + margin-right: 0px; + + .el-dialog__headerbtn { + width: 40px; + height: 40px; + top: 16px; + right: 18px; + + .el-dialog__close { + font-size: 16px; + color: var(--text-color); + } + } + } + + .el-dialog__title { + color: var(--text-color); + font-weight: 700; + font-size: 16px; + line-height: 1; + } + + .el-dialog__body { + padding: 24px 30px; + } + + .el-dialog__footer { + padding: 0px 30px 24px; + } +} + +// 确认框重写 自定义了title 和content元素 +.oa-message-box.el-message-box { + padding-bottom: 24px; + + .el-message-box__headerbtn { + top: 22px; + right: 24px; + + .el-message-box__close { + color: var(--text-color); + } + } + + .el-message-box__content { + padding: 10px 24px; + + .el-message-box__message { + .title { + margin-top: -15px; + margin-bottom: 20px; + position: absolute; + left: 0px; + top: 0px; + + & > span { + font-size: 16px; + color: var(--text-color); + font-weight: 700; + } + } + + .content { + padding-top: 20px; + } + } + } + + .el-message-box__btns { + padding: 10px 24px 0; + } +} + +.custom-radio.el-radio { + height: 16px; + .el-radio__input { + &.is-checked .el-radio__inner { + background-color: #fff; + } + } + .el-radio__label { + display: none; + } + .el-radio__inner { + width: 16px; + height: 16px; + &::after { + background-color: #4562e3; + width: 11px; + height: 11px; + } + } +} + +// 页码样式统一 +.oa-pagination.el-pagination.is-background { + justify-content: flex-end; + + .btn-next:not(:disabled), + .btn-prev:not(:disabled), + .el-pager li { + background-color: transparent; + color: var(--text-color); + + &:not(.is-active):hover { + border: 1px solid #394253; + background-color: #282f3b; + } + + &:not(.is-active):active { + border: 1px solid #4562e3; + background-color: #282f3b; + } + } + + .btn-next:disabled, + .btn-prev:disabled { + background-color: transparent; + } +} diff --git a/frontend/src/utils/auth.js b/frontend/src/utils/auth.js new file mode 100644 index 0000000000..b1ad7a5406 --- /dev/null +++ b/frontend/src/utils/auth.js @@ -0,0 +1,27 @@ +const TokenKey = 'Admin-Token'; + +export function getToken() { + return localStorage.getItem(TokenKey); +} + +export function setToken(token) { + localStorage.setItem(TokenKey, token); +} + +export function removeToken() { + localStorage.removeItem(TokenKey); +} + +const JwtKey = 'Jwt-Token'; + +export function getJwtToken() { + return localStorage.getItem(JwtKey); +} + +export function setJwtToken(token) { + localStorage.setItem(JwtKey, token); +} + +export function removeJwtToken() { + localStorage.removeItem(JwtKey); +} diff --git a/frontend/src/utils/errorCode.js b/frontend/src/utils/errorCode.js new file mode 100644 index 0000000000..681731d009 --- /dev/null +++ b/frontend/src/utils/errorCode.js @@ -0,0 +1,56 @@ +import i18n from '@/lang/index.js'; +export default { + 401: '认证失败,无法访问系统资源', + 403: '当前操作没有权限', + 404: '访问资源不存在', + default: '系统未知错误,请反馈给管理员', +}; + +// 错误信息 +export const errorMsg = [ + { zh: '该用户名已经存在。', en: 'A user with that username already exists.' }, + { zh: '此电子邮件地址已被注册。', en: 'A user is already registered with this e-mail address.' }, + { zh: '两个密码字段不匹配。', en: "The two password fields didn't match." }, + { zh: '无法使用提供的凭据登录。', en: 'Unable to log in with provided credentials.' }, + { zh: '这个密码过于简单。', en: 'This password is too common.' }, + { zh: '此密码完全是数字。', en: 'This password is entirely numeric.' }, + { zh: '无效密码', en: 'Invalid password' }, + { zh: '不存在给定电子邮件的用户。', en: 'User with the given email does not exist.' }, + { zh: '您无权更改团队详细信息!', en: 'You are not a authorized to change team details!' }, + { zh: '此团队名称已存在。', en: 'participant team with this team name already exists.' }, + { zh: '请输入一个有效地址。', en: 'Enter a valid URL.' }, + { zh: '用户处于非活动状态或已删除', en: 'User inactive or deleted' }, + { zh: '该用户已经是团队的一员!', en: 'User is already part of the team!' }, + { zh: '很抱歉,您无法删除此团队,因为它已参加挑战!', en: 'Sorry, you cannot delete this team since it has taken part in challenge(s)!' }, + { zh: '此电子邮件地址的用户不存在!', en: 'User does not exist with this email address!' }, + { zh: '请确保此字段的字符数不超过1000个。', en: 'Ensure this field has no more than 1000 characters.' }, + { zh: '此字段为必填字段。', en: 'This field is required.' }, + { zh: '团队尚未参加挑战', en: 'Team has not participated in the challenge' }, + { zh: '很抱歉,您没有删除此参与者团队的权限', en: 'Sorry, you do not have permissions to remove this participant team' }, + { zh: '请求被阻止。预计2751秒后可用。', en: 'Request was throttled. Expected available in 2751 seconds.' }, + { + zh: '很抱歉,其他团队成员已经参加了挑战。请加入其他团队!', + en: 'Sorry, other team member(s) have already participated in the Challenge. Please participate with a different team!', + }, + { zh: '比赛不存在', en: 'Challenge does not exist' }, + { zh: '您无权提出此请求', en: 'You are not authorized to make this request' }, + { zh: '队伍名已被占用!', en: 'The team name has already be used!' }, + { zh: '已提交参赛作品的参赛队伍不能被取消注册。', en: 'Participant teams which have made submissions to a challenge cannot be deregistered.' }, + { zh: '比赛未开始', en: 'Challenge is not active' }, + { zh: '团队已存在', en: 'Team already exists' }, + { zh: '抱歉,比赛已被移除!', en: 'Sorry, the challenge was removed!' }, + { zh: '抱歉,排行榜是不公开的!', en: 'Sorry, the leaderboard is not public!' }, + { zh: '您还没有参加比赛', en: "You haven't participated in the challenge" }, + { zh: '您不是参与者!', en: "You are not a participant!" }, +]; + +export function getErrMsg(msg) { + if (i18n.global.locale.value === 'zh') { + for (let i = 0; i < errorMsg.length; i++) { + if (errorMsg[i].en === msg) { + return errorMsg[i].zh; + } + } + } + return msg; +} diff --git a/frontend/src/utils/jsencrypt.js b/frontend/src/utils/jsencrypt.js new file mode 100644 index 0000000000..37b824ae27 --- /dev/null +++ b/frontend/src/utils/jsencrypt.js @@ -0,0 +1,39 @@ +import JSEncrypt from "jsencrypt/bin/jsencrypt.min"; + +// 密钥对生成 http://web.chacuo.net/netrsakeypair + +const publicKey = + "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8sSV5EDqHfOhNPRy0KND6HiEc\n" + + "q1LwpYxTKBUHfXb43XVaMn2ySbgOCiMrTtuH0nAfhQ/LuKhxiFnEKEfjTHIHPVG6\n" + + "A+Ucaj4Ywm/OIogA1owvxr39zNgP/E52e06RVXm9Kubjj/J1Ik593Kj53XxrX4ss\n" + + "oatyw7rUIvl60f+VPQIDAQAB"; + +const privateKey = + "MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALyxJXkQOod86E09\n" + + "HLQo0PoeIRyrUvCljFMoFQd9dvjddVoyfbJJuA4KIytO24fScB+FD8u4qHGIWcQo\n" + + "R+NMcgc9UboD5RxqPhjCb84iiADWjC/Gvf3M2A/8TnZ7TpFVeb0q5uOP8nUiTn3c\n" + + "qPndfGtfiyyhq3LDutQi+XrR/5U9AgMBAAECgYBq8Zvjeacyk0C2RiS2l0uZ9umd\n" + + "bhyb97gIiXchv6Jmel3AuU00d0Ox8VztdsxFtqeFtcy2EfqmHjmCS7IyyWj2Zw8W\n" + + "B3ZdxHPXG0cWC3XaAuRTfR8ftkNt4ECz7BCN0JzftxE2kNxT8EmLc7igmu100XA+\n" + + "q70vbhrMYH3E92ngAQJBAPL3BPVSvFdaGp/O/2eiXvnedzP79FTtY5rafxBBXTiU\n" + + "Xmqp1zKQyhLjwk8Ln+PjN1FggpKa/gKOtFRX8M4OcwECQQDG0LhR6yohb4TzY25j\n" + + "ena9bXFTm70fPDEuBSr+SoCwlr4qXs7tmW78BrBS+eVyTmJu13ZQJ3s88GTe78uz\n" + + "5C49AkAlMvDNZrdzYFZHNXghM9j6xLbXfLHx9s6TPPTLVlahfQXfqtVJ5qUpszli\n" + + "xNLcH0Ou7+nN7HELjzHI4BX8VnYBAkBc6s1KE9MT30/OhEjiGykFbPHK9n1T7Mi7\n" + + "TlUClYVBgqILoVWqe8v/44xiq0INww6D6RT1bw5Ms7kg7AdS4rCtAkEA0rGsJ4q1\n" + + "QnG44BLFKJUPsPRNCvIozOmeCBVqipNL3Krk3G+TxX8qhzAnTp07Vx64vTL09ka0\n" + + "9HLCE2ZsxYsXBw=="; + +// 加密 +export function encrypt(txt) { + const encryptor = new JSEncrypt(); + encryptor.setPublicKey(publicKey); // 设置公钥 + return encryptor.encrypt(txt); // 对数据进行加密 +} + +// 解密 +export function decrypt(txt) { + const encryptor = new JSEncrypt(); + encryptor.setPrivateKey(privateKey); // 设置私钥 + return encryptor.decrypt(txt); // 对数据进行解密 +} diff --git a/frontend/src/utils/tool.js b/frontend/src/utils/tool.js new file mode 100644 index 0000000000..90f71ed7c2 --- /dev/null +++ b/frontend/src/utils/tool.js @@ -0,0 +1,55 @@ +import i18n from '@/lang/index.js'; +// 验证是否为blob格式 +export function blobValidate(data) { + return data.type !== 'application/json'; +} + +/** + * 确认弹框 默认以删除任务为例 + * @param {*} params + * @returns promise + */ +export function oaMessageBox(params = {}, extraConfig = {}) { + const { + icon, + title = '删除所选任务', + message = '删除后将无法恢复,请确认是否删除?', + confirmButtonText = i18n.global.t('yes'), + cancelButtonText = i18n.global.t('no'), + } = params; + let style = icon ? '' : 'display:none;'; + return ElMessageBox.confirm( + ` +
+ + ${title} +
+
${message}
+ `, + { + dangerouslyUseHTMLString: true, + confirmButtonText, + cancelButtonText, + cancelButtonClass: 'is-text is-has-bg', + customClass: 'oa-message-box', + ...extraConfig, + } + ); +} + +// 格式化时间 +export function formatTime(value) { + const date = new Date(value); + const options = { + year: 'numeric', + month: 'short', + day: 'numeric', + hour: 'numeric', + minute: 'numeric', + second: 'numeric', + hour12: true, + }; + return date.toLocaleString(i18n.global.locale.value, options); +} diff --git a/frontend/src/views/auth/Forget.vue b/frontend/src/views/auth/Forget.vue new file mode 100644 index 0000000000..9bfe1a5b75 --- /dev/null +++ b/frontend/src/views/auth/Forget.vue @@ -0,0 +1,111 @@ + + + + + diff --git a/frontend/src/views/auth/Index.vue b/frontend/src/views/auth/Index.vue new file mode 100644 index 0000000000..43b8cc9a08 --- /dev/null +++ b/frontend/src/views/auth/Index.vue @@ -0,0 +1,38 @@ + + + + + diff --git a/frontend/src/views/auth/Login.vue b/frontend/src/views/auth/Login.vue new file mode 100644 index 0000000000..23718d7cf5 --- /dev/null +++ b/frontend/src/views/auth/Login.vue @@ -0,0 +1,132 @@ + + + + + diff --git a/frontend/src/views/auth/Resetcode.vue b/frontend/src/views/auth/Resetcode.vue new file mode 100644 index 0000000000..5d7dab5262 --- /dev/null +++ b/frontend/src/views/auth/Resetcode.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/frontend/src/views/auth/Signup.vue b/frontend/src/views/auth/Signup.vue new file mode 100644 index 0000000000..a49553eeca --- /dev/null +++ b/frontend/src/views/auth/Signup.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/frontend/src/views/auth/VerifyEmail.vue b/frontend/src/views/auth/VerifyEmail.vue new file mode 100644 index 0000000000..029be5107a --- /dev/null +++ b/frontend/src/views/auth/VerifyEmail.vue @@ -0,0 +1,29 @@ + + + + + diff --git a/frontend/src/views/challenge/AllSubmission.vue b/frontend/src/views/challenge/AllSubmission.vue new file mode 100644 index 0000000000..84a9b36532 --- /dev/null +++ b/frontend/src/views/challenge/AllSubmission.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/frontend/src/views/challenge/Approval.vue b/frontend/src/views/challenge/Approval.vue new file mode 100644 index 0000000000..d7d242febe --- /dev/null +++ b/frontend/src/views/challenge/Approval.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/frontend/src/views/challenge/Challenge.vue b/frontend/src/views/challenge/Challenge.vue new file mode 100644 index 0000000000..daa7deacba --- /dev/null +++ b/frontend/src/views/challenge/Challenge.vue @@ -0,0 +1,58 @@ + + + + + diff --git a/frontend/src/views/challenge/Detail.vue b/frontend/src/views/challenge/Detail.vue new file mode 100644 index 0000000000..d4fcaea935 --- /dev/null +++ b/frontend/src/views/challenge/Detail.vue @@ -0,0 +1,167 @@ + + + + + diff --git a/frontend/src/views/challenge/Leaderboard.vue b/frontend/src/views/challenge/Leaderboard.vue new file mode 100644 index 0000000000..67cc14411d --- /dev/null +++ b/frontend/src/views/challenge/Leaderboard.vue @@ -0,0 +1,56 @@ + + + + + diff --git a/frontend/src/views/challenge/Overview.vue b/frontend/src/views/challenge/Overview.vue new file mode 100644 index 0000000000..a14c92e1db --- /dev/null +++ b/frontend/src/views/challenge/Overview.vue @@ -0,0 +1,58 @@ + + + + + diff --git a/frontend/src/views/challenge/Participate.vue b/frontend/src/views/challenge/Participate.vue new file mode 100644 index 0000000000..780fc8ff71 --- /dev/null +++ b/frontend/src/views/challenge/Participate.vue @@ -0,0 +1,211 @@ + + + + + diff --git a/frontend/src/views/challenge/Submission.vue b/frontend/src/views/challenge/Submission.vue new file mode 100644 index 0000000000..26aaa25ea1 --- /dev/null +++ b/frontend/src/views/challenge/Submission.vue @@ -0,0 +1,362 @@ + + + + + diff --git a/frontend/src/views/permission/Denied.vue b/frontend/src/views/permission/Denied.vue new file mode 100644 index 0000000000..e5906e1082 --- /dev/null +++ b/frontend/src/views/permission/Denied.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/frontend/src/views/team/Team.vue b/frontend/src/views/team/Team.vue new file mode 100644 index 0000000000..3131486536 --- /dev/null +++ b/frontend/src/views/team/Team.vue @@ -0,0 +1,279 @@ + + + + + diff --git a/frontend/src/views/user/Profile.vue b/frontend/src/views/user/Profile.vue new file mode 100644 index 0000000000..ee4101e978 --- /dev/null +++ b/frontend/src/views/user/Profile.vue @@ -0,0 +1,263 @@ + + + + diff --git a/frontend/src/views/web/about-us.html b/frontend/src/views/web/about-us.html deleted file mode 100644 index 9aea5e17e1..0000000000 --- a/frontend/src/views/web/about-us.html +++ /dev/null @@ -1,35 +0,0 @@ -
- - -
-
-
-

About Us

-

EvalAI is built by a team of open source enthusiasts working at - CloudCV. CloudCV aims to make AI research - reproducible and easily accessible. We want to reduce the barrier to entry for doing research - and make it easier for researchers, students and developers to develop and use state-of-the-art - algorithms as a service.

-

With EvalAI, we want to standardize the process of - evaluating different methods on a dataset and make it simple to host a competition. - Comparing a new method with other existing approaches is an essential component of - research and this process has traditionally been affected by difference in evaluation - metric implementation, different splits of the dataset or minor modifications in the - algorithm. This makes it extremely hard to reproduce numbers from published papers - and reliably compare your method with other existing approaches. By building EvalAI, we - hope to make this easier by standardizing the dataset splits, evaluation metrics and by - maintaining a public leaderboard of hosted challenges.

-
- -
-
-
- -
-
-
-
-
- - -
diff --git a/frontend/src/views/web/analytics/host-analytics.html b/frontend/src/views/web/analytics/host-analytics.html deleted file mode 100644 index 4118655ad9..0000000000 --- a/frontend/src/views/web/analytics/host-analytics.html +++ /dev/null @@ -1,116 +0,0 @@ -
-
-
-

Challenges Analytics Home

-
-
-
-
-

Select challenge to view Analysis

-
- - Total Challenges hosted : - - - {{analytics.challengeListCount}} - -
-
    -
  • - - -
  • -
-
Show Analysis  
-
-
-

Challenge Analysis

-
Please select challenge for analysis.
-
There are no challenges to analyze. Click here to create a new challenge.
-
-
-
-
- -
-
-
-
-

{{analytics.currentChallengeDetails.title}} -

- Hosted by: {{analytics.currentChallengeDetails.creator.team_name}} -
-
-
-
-
- Short Description -
-

- {{analytics.currentChallengeDetails.short_description}} -

-
-
- - Total Participant Teams: - - - {{analytics.totalChallengeTeams}} - - Download -
-
-
- Challenge Phases -
-
-

- {{item.name}} -

-
- Challenge Phase Duration -
-

- {{item.start_date | date:'medium'}} - {{item.end_date | date:'medium'}} -

-
-
-
- Total Submissions -
-

- {{analytics.totalSubmission[item.id] || 0}} -

-
-
-
-
- Participant Teams -
-

- {{analytics.totalParticipatedTeams[item.id] || 0}} -

-
-
-
-
- Latest Submission At -
-

- {{analytics.lastSubmissionTime[item.id] | date:'medium'}} -

-

- None -

-
-
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/frontend/src/views/web/auth/auth.html b/frontend/src/views/web/auth/auth.html deleted file mode 100644 index a72cc1a28c..0000000000 --- a/frontend/src/views/web/auth/auth.html +++ /dev/null @@ -1,43 +0,0 @@ - - - -
- -
- - -
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-

Evaluating state of the art in AI!

-
-
-
-
-
{{auth.regMsg}}
-
-
-
- -
-
-
-
diff --git a/frontend/src/views/web/auth/get-token.html b/frontend/src/views/web/auth/get-token.html deleted file mode 100644 index 90232577a5..0000000000 --- a/frontend/src/views/web/auth/get-token.html +++ /dev/null @@ -1,37 +0,0 @@ -
-
-
-
-
-
-
API Authentication Token
-
- - -
-
-
-
Expires at: {{profile.expiresAt | date:'medium'}} {{profile.expiresAtTimezone}} ({{profile.gmtZone}})
-
- -
-
-
-
-
-
diff --git a/frontend/src/views/web/auth/login.html b/frontend/src/views/web/auth/login.html deleted file mode 100644 index c800bbeee9..0000000000 --- a/frontend/src/views/web/auth/login.html +++ /dev/null @@ -1,54 +0,0 @@ -
- -
-
- -
- -
- - - -
-

Username is too short.

-

Username is required.

-
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
-
- -
-
- -
- -
-
{{auth.FormError}}
-
-

- Start with a new account Sign Up -

-
-
-
diff --git a/frontend/src/views/web/auth/reset-password-confirm.html b/frontend/src/views/web/auth/reset-password-confirm.html deleted file mode 100644 index 176036e920..0000000000 --- a/frontend/src/views/web/auth/reset-password-confirm.html +++ /dev/null @@ -1,63 +0,0 @@ -
-
-
    -
  • - {{auth.deliveredMsg}}
  • -
- - - -
-
-
- -
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
-
- - - - - - -
-

Password do not match

-

Password is less than 8 characters.

-

Password confirmation is required.

-
-
-
-
-
- -
- -
-
{{auth.FormError}}
-
-

- Start with a new account Sign Up -

-
-
-
-
diff --git a/frontend/src/views/web/auth/reset-password.html b/frontend/src/views/web/auth/reset-password.html deleted file mode 100644 index d05b31ccb7..0000000000 --- a/frontend/src/views/web/auth/reset-password.html +++ /dev/null @@ -1,54 +0,0 @@ -
-
-
    -
  • -
    -
    - Password reset link has been sent to your registered email address. Please check your email inbox. -
    -
  • -
  • -
    -
    - Back to Log In -
    -
  • -
-
-
-
- -
-
- -
- - - -
-

Please enter valid email address.

-

Email address is required.

-
-
-
-
-
- -
- -
-
{{auth.FormError}}
-
-

- Start with a new account Sign Up -

-
-
-
-
diff --git a/frontend/src/views/web/auth/signup.html b/frontend/src/views/web/auth/signup.html deleted file mode 100644 index 4891400a93..0000000000 --- a/frontend/src/views/web/auth/signup.html +++ /dev/null @@ -1,72 +0,0 @@ -
- -
-
- -
- -
- - - -
-

Username is too short.

-

Username is required.

-
-
- -
- - - -
-

Please enter valid email address.

-

Email address is required.

-
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
- -
- - - - - - -
-

Passwords do not match

-

Password is less than 8 characters.

-

Password confirmation is required.

-
-
- -
- -
-
{{auth.FormError}}
-
-

- Already have an account? Log In -

-
-
-
diff --git a/frontend/src/views/web/auth/verify-email.html b/frontend/src/views/web/auth/verify-email.html deleted file mode 100644 index 948bd3afd6..0000000000 --- a/frontend/src/views/web/auth/verify-email.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
    -
  • {{auth.email_verify_msg}}.
  • -
- - - -
-
diff --git a/frontend/src/views/web/challenge-create.html b/frontend/src/views/web/challenge-create.html deleted file mode 100644 index b1243176f9..0000000000 --- a/frontend/src/views/web/challenge-create.html +++ /dev/null @@ -1,75 +0,0 @@ -
-
-
-
-
Challenge creation using GitHub
-
-
-
    -
  1. Use this repository as template. You can read more about templates here.
  2. -
  3. Generate your github personal acccess token and copy it in clipboard.
  4. -
  5. Add the github personal access token in the forked repository's secrets with the name AUTH_TOKEN.
  6. -
  7. Now, go to EvalAI to fetch the following details -
  8. -
      -
    1. evalai_user_auth_token - Go to profile page after logging in and click on Get your Auth Token to copy your auth token.
    2. -
    3. host_team_pk - Go to host team page and copy the ID for the team you want to use for challenge creation.
    4. -
    5. evalai_host_url - Use https://eval.ai for production server and https://staging.eval.ai for staging server.
    6. -
    -
  9. Create a branch with name challenge in the forked repository from the `master` branch. -
    - Note: Only changes to challenge branch will be synchronized with challenge on EvalAI.
  10. -
  11. Add evalai_user_auth_token and host_team_pk in github/host_config.json.
  12. -
  13. Read EvalAI challenge creation documentation to know more about how you want to structure your challenge. Once you are ready, start making changes in the yaml file, HTML templates, evaluation script according to your need.
  14. -
  15. Commit the changes and push the challenge branch in the repository and wait for the build to complete. View the logs of your build.
  16. -
  17. If challenge config contains errors then a issue will be opened automatically in the repository with the errors otherwise the challenge will be created on EvalAI.
  18. -
  19. Go to Hosted Challenges to view your challenge. The challenge will be publicly available once EvalAI admin approves the challenge.
  20. -
  21. To update the challenge on EvalAI, make changes in the repository and push to the challenge branch and wait for the build to complete.
  22. -
-
-
-
-
-
- -
diff --git a/frontend/src/views/web/challenge-host-teams.html b/frontend/src/views/web/challenge-host-teams.html deleted file mode 100644 index 6a31647be6..0000000000 --- a/frontend/src/views/web/challenge-host-teams.html +++ /dev/null @@ -1,102 +0,0 @@ -
-
-
-
-
Select a Challenge Host Team
-
- -
-
-
-
-
-
-
-
-
-
{{challengeHostTeams.paginationMsg}}
-
    -
  • -
    - - -
    - Team: {{value.team_name}} - Team: {{value.team_name}} - - - -
    - Created by: {{value.created_by}} -
    - Team Id: {{value.id}} -
    -
    -
    -
    -
    Team Members:
    -

    {{member.user}}

    -
    -
  • -
-
-
-
- - - - Page {{challengeHostTeams.currentPage | ceil}} of {{challengeHostTeams.existTeam.count/10 | ceil}} - - - -
-
- -
-
-
- {{challengeHostTeams.existTeamError}} -
-
-
-
-
-
-
-
-
-
Create a New Team
-
- -
-
-
-
-
-
-
-
-
-
-
- - - -
{{challengeHostTeams.team.error}}
-
-
- - - -
-
- - -
-
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge-invite.html b/frontend/src/views/web/challenge-invite.html deleted file mode 100644 index 40514b0241..0000000000 --- a/frontend/src/views/web/challenge-invite.html +++ /dev/null @@ -1,117 +0,0 @@ -
-
-
-
-
- Challenge Invitation -
-
-
-
-
-
-
-
-
-
-
-
- You have been invited to participate in {{challenge_invitation.challengeTitle}} hosted by {{challenge_invitation.host}} on EvalAI. - Please enter your personal information below to participate in the challenge. -
-
-
-
-
-
- - - -
-

Username is too short.

-

Username is required.

-
-
-
-
-
-
-
- - - -
-
-
-
-
-
- - - -
{{challenge_invitation.error}}
-
-
-
-
- - - -
{{challenge_invitation.error}}
-
-
-
-
-
-
- - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
-
-
-
-
-
- - - -
-

Passwords do not match

-

Password is less than 8 characters.

-

Password confirmation is required.

-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
- diff --git a/frontend/src/views/web/challenge-list.html b/frontend/src/views/web/challenge-list.html deleted file mode 100644 index b0e1247c4c..0000000000 --- a/frontend/src/views/web/challenge-list.html +++ /dev/null @@ -1,97 +0,0 @@ -
- -
Ongoing Challenges
-
None
- - - - - - -
-
Loading
-
-
-
-
-
-
-
-
- - -
Upcoming Challenges
-
None
- - -
Past Challenges
-
None
- -
- diff --git a/frontend/src/views/web/challenge-main.html b/frontend/src/views/web/challenge-main.html deleted file mode 100644 index 5105d51131..0000000000 --- a/frontend/src/views/web/challenge-main.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/frontend/src/views/web/challenge/approval-team.html b/frontend/src/views/web/challenge/approval-team.html deleted file mode 100644 index 88ee990282..0000000000 --- a/frontend/src/views/web/challenge/approval-team.html +++ /dev/null @@ -1,56 +0,0 @@ - -
-
-
-
-
Team Approval
-
-
-
-
-
-
-
    -
  • -
    - -
    - Team: {{key.team_name}} - Team: {{key.team_name}} -
    - - -
    -
    - Created by: {{key.created_by}} -
    - Team Id: {{key.id}} -
    -
    -
    -
    - - - - - - - - - - - - - -
    #Team MemberAffiliation
    {{$index + 1}}{{member.member_name}}{{member.profile.affiliation}}
    -
    -
  • -
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/cancel-submission.html b/frontend/src/views/web/challenge/cancel-submission.html deleted file mode 100644 index 5b6370963a..0000000000 --- a/frontend/src/views/web/challenge/cancel-submission.html +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
Are you sure you want to cancel submission?
- - -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/challenge-page.html b/frontend/src/views/web/challenge/challenge-page.html deleted file mode 100644 index dd6373771a..0000000000 --- a/frontend/src/views/web/challenge/challenge-page.html +++ /dev/null @@ -1,154 +0,0 @@ -
-
-
-
Thank you for successfully creating a challenge on EvalAI. - The challenge is ready to accept submissions from the host team. Please note that the submissions from the host team won't be visible on leaderboard until you mark them as baseline submission. - In order for the challenge to accept submissions from the public, it requires approval from the EvalAI Team. -
-
-
-
-
-
-
-
-
- -
-
- - - -
-
-
-

{{challenge.page.title}} - - - - - - - - -

- Organized - by: {{challenge.page.creator.team_name}} - Organized - by: {{challenge.page.creator.team_name}} - -
- - - Published - - - - - - Not Published - - - -
-
- - Starts on: - {{ challenge.page.start_date | date:'medium' }} {{ challenge.page.time_zone }} ({{ challenge.page.gmt_zone }}) - -   - - - - - -
- - Ends on: - {{ challenge.page.end_date | date:'medium' }} {{ challenge.page.time_zone }} ({{ challenge.page.gmt_zone }}) - -   - - - - - - -
-
-
- -
-
-
-
-
-
Toggle Participation
-
- -
-
- -
-
- diff --git a/frontend/src/views/web/challenge/delete-challenge/delete-challenge.html b/frontend/src/views/web/challenge/delete-challenge/delete-challenge.html deleted file mode 100644 index cd81842cdb..0000000000 --- a/frontend/src/views/web/challenge/delete-challenge/delete-challenge.html +++ /dev/null @@ -1,23 +0,0 @@ -
-
-
-
-
-
Delete Challenge
-
- -
-
    -
  • - Cancel -
  • -
  • - -
  • -
-
-
-
-
-
- diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-approvalConfirm.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-approvalConfirm.html deleted file mode 100644 index b36fad91da..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-approvalConfirm.html +++ /dev/null @@ -1,20 +0,0 @@ -
-
-
-
-
-
Approve Team
-
Note: Participant teams with existing submissions cannot be disapproved
-
    -
  • - Cancel -
  • -
  • - -
  • -
-
-
-
-
-
\ No newline at end of file diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-date.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-date.html deleted file mode 100644 index 57c1a35bb6..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-date.html +++ /dev/null @@ -1,43 +0,0 @@ -
-
-
-
-
Edit Challenge Start and End Date
-
- Start date and time - - -
-
- End date and time - - -
-
-
    -
  • - Cancel -
  • -
  • - -
  • -
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-deregister.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-deregister.html deleted file mode 100644 index 017b9cbb8c..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-deregister.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
-
-
-
Deregister Partipant Team
-
- Are you sure you want to deregister team: {{challenge.participated_team_name}} ? -
-
    -
  • - Cancel -
  • -
  • - -
  • -
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-criteria.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-criteria.html deleted file mode 100644 index 911f4332c1..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-criteria.html +++ /dev/null @@ -1,40 +0,0 @@ -
-
-
-
-
-
Edit Evaluation Details
-
-
- - - Hint: To use MathJax in editor, use $$ $$ -
-
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-script.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-script.html deleted file mode 100644 index d462a057b9..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-evaluation-script.html +++ /dev/null @@ -1,30 +0,0 @@ -
-
-
-
-
-
Edit Evaluation Script
-
-
-
- Upload File - -
-
- -
-
-
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-overview.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-overview.html deleted file mode 100644 index 23b03d3f35..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-overview.html +++ /dev/null @@ -1,38 +0,0 @@ -
-
-
-
-
-
Edit Challenge Description
-
- - - Hint: To use MathJax in editor, use $$ $$ -
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-phase.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-phase.html deleted file mode 100644 index 5b8a40d446..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-phase.html +++ /dev/null @@ -1,163 +0,0 @@ -
-
-
-
-
-
-
-
- Title - -
-
-
-
-
-
Description
-
- - - Hint: To use MathJax in editor, use $$ $$ -
-
-
-
-
-
- Start date and time - - -
-
-
-
- End date and time - - -
-
-
-
-
-
- Submissions/day - - -
-
-
-
- Submissions/month - - -
-
-
-
- Total submissions - - -
-
-
-
- Max Concurrent Submissions Allowed - - -
-
-
-
-
-
- File - -
-
- -
-
-
-
-
-
-
- -
Please enter the - challenge - phase name i.e {{challenge.page.challenge_phase.name}} - to update - the - test - annotation file.
-
- -
- Phase name doesn't match! -
-
-
- You may proceed. -
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-submission-guidelines.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-submission-guidelines.html deleted file mode 100644 index 6b7c33f27d..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-submission-guidelines.html +++ /dev/null @@ -1,38 +0,0 @@ -
-
-
-
-
-
Edit Submission Guidelines
-
- - - Hint: To use MathJax in editor, use $$ $$ -
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-tag.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-tag.html deleted file mode 100644 index 569fc0dca6..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-tag.html +++ /dev/null @@ -1,39 +0,0 @@ -
-
-
-
-
Edit Challenge Tags and Domain
-
- Tags - - -
-
- - Domain - - {{ option[1] }} - -
-
This field is required.
-
-
-
-
-
    -
  • - Cancel -
  • -
  • - -
  • -
-
-
-
-
-
\ No newline at end of file diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-terms-and-conditions.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-terms-and-conditions.html deleted file mode 100644 index e6a342ab66..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-terms-and-conditions.html +++ /dev/null @@ -1,38 +0,0 @@ -
-
-
-
-
-
Edit Terms And Conditions
-
- - - Hint: To use MathJax in editor, use $$ $$ -
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-title.html b/frontend/src/views/web/challenge/edit-challenge/edit-challenge-title.html deleted file mode 100644 index 551c72b478..0000000000 --- a/frontend/src/views/web/challenge/edit-challenge/edit-challenge-title.html +++ /dev/null @@ -1,24 +0,0 @@ -
-
-
-
-
-
Edit Challenge Title
-
- - - -
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/evaluation.html b/frontend/src/views/web/challenge/evaluation.html deleted file mode 100644 index 0cf8196776..0000000000 --- a/frontend/src/views/web/challenge/evaluation.html +++ /dev/null @@ -1,53 +0,0 @@ -
-
-
-
To access evaluation logs and manage the evalaution worker please go to the Manage tab. - To update the evaluation script use the Upload option on Evalaution tab. - If you have any questions, please feel free to reach out to us at - team@cloudcv.org -
-
-
-
-
-
-
-
-
Evaluation Criteria
-
-
-
 edit
-
-
-
 upload
-
-
-
-
-
-
-
-
-
-
-
-
Terms and Conditions
-
-
-
 edit
-
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/leaderboard.html b/frontend/src/views/web/challenge/leaderboard.html deleted file mode 100644 index c173fc86aa..0000000000 --- a/frontend/src/views/web/challenge/leaderboard.html +++ /dev/null @@ -1,197 +0,0 @@ -
-
-
-
-
-
-
-
-
- -
-
-
-
-
Leaderboard
-
-
-
-
-
-
-
- Page is outdated, click to update  -
-
-
-
- - - - Phase: - {{key.challenge_phase_name}}, Split: - {{key.dataset_split_name}}   - Leaderboard is private - - -
-
-
-
- - - - {{key}} - - -
-
-
-
-
-
-
- - Baseline -
-
- * - - Private -
-
- - Verified -
-
- - - {{ challenge.getAllEntriesTestOption }} -
- - - Visible Metrics - {{key}} - - -
-
- - - - - - - - - - - - - - - - - - - - - -
- - Rank - - - - - - - - Participant team - - - - - - - - {{key}} (↓) {{challenge.getLabelDescription(key)}} - {{key}} (↑) {{challenge.getLabelDescription(key)}} - {{key}} (↓) {{challenge.getLabelDescription(key)}} - {{key}} (↑) {{challenge.getLabelDescription(key)}} - - - - - - - - Execution time - - - - - - - - Last submission at - - - - - - - Meta Attributes -
{{challenge.initial_ranking[key.id]}}{{key.submission__participant_team__team_name}}{{key.submission__participant_team__team_name}} - * - ({{key.submission__method_name | limitTo:30}}) - - - {{score | number : challenge.selectedPhaseSplit.leaderboard_decimal_precision}} - {{score | number : challenge.selectedPhaseSplit.leaderboard_decimal_precision}} - - ± - {{key.error[i] | number : challenge.selectedPhaseSplit.leaderboard_decimal_precision}} - {{ key.submission__execution_time | format_execution_time }}{{ key.submission__submitted_at | number: 0}} {{key.timeSpan}} ago - - -
-
-

{{challenge.leaderboard.error.error}}

-
-
-

No results to show.

-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/manage.html b/frontend/src/views/web/challenge/manage.html deleted file mode 100644 index b7517eb565..0000000000 --- a/frontend/src/views/web/challenge/manage.html +++ /dev/null @@ -1,75 +0,0 @@ -
-
-
-
-
Note:By default, we allocate 0.5 vCPU and 1 GB memory - to each challenge evaluation worker. In case your evaluation requires additional resources, - please email us at admin@cloudcv.org. -
-
-
-
- -
- -
-
-
Manage worker
-
-
-
-
- -
-
- - - - {{ option[0] + " vCPU (" + option[0]/1024 + " CPU), " + option[1] + " MiB RAM" }} - - - -
-
-
- -
-
-
-
-
-
- -
-
- - - -
-
-
-
-
Worker logs
-
-
-
-
{{log}}
-
-
-
-
-
-
Remote Evaluation Meta
-
-
-
-
-
- Primary Key: {{challenge.challengeId}}
- Queue Name: {{challenge.queueName}} -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/my-challenge-all-submission.html b/frontend/src/views/web/challenge/my-challenge-all-submission.html deleted file mode 100644 index be2b62fa67..0000000000 --- a/frontend/src/views/web/challenge/my-challenge-all-submission.html +++ /dev/null @@ -1,199 +0,0 @@ -
-
-
-
-
-
-
-
-
- -
-
-
-
-
All Submissions
-
-
-
- Page is outdated, click to update   -
-
-
- - - - {{key.name}}   - - - -
-
-
-
- - - - {{key.name}} - - -
-
- - - - {{key.label}} - - -
-
- Download -
-
-
-
-
- Filter submissions by team -
-
-
-
-
- - -
-
-
-
-
-
No - results found.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#TeamCreated byStatusExecution time (sec)Submission no.Submitted atSubmitted fileStdout fileStderr fileEnvironment LogsResult fileMetadata fileRerun submissionResume submissionCancel submissionVerify submission
{{$index + 1 + (challenge.currentRefPage - 1) * 150}}{{key.participant_team}}{{key.created_by}}{{key.status.split('_').join(' ')}} - {{key.execution_time}}{{key.id}}{{key.submitted_at | date:'medium'}} Link LinkNone LinkNone - LinkNone Link - None Link - None -
-
-
-
-
-
- -
-
-
- -
-
-
-
-
- -
diff --git a/frontend/src/views/web/challenge/my-submission.html b/frontend/src/views/web/challenge/my-submission.html deleted file mode 100644 index f7acdb1d7e..0000000000 --- a/frontend/src/views/web/challenge/my-submission.html +++ /dev/null @@ -1,192 +0,0 @@ -
-
-
-
-
My Submissions
-
My Participated Team: {{challenge.participated_team_name}}
-
-
-
-
- Page is Outdated, Click to update  -
-
-
- - {{key.name}} - -
-
-
-
- - {{key.name}} - - -

- Download -
-
-
-
- - - Total Submissions: - - - - {{challenge.submissionCount|| 0}} - -
-
-
-
-
-
No - results found.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#MethodMethod descriptionProject URLPublication URL StatusExecution time (sec.)Submitted fileResult fileStdout fileStderr fileEnvironment LogsSubmitted at - Show on leaderboardBaseline - EditCancelRerun submissionResume submission
{{$index + 1 + (challenge.currentRefPage - 1) * 150}}{{key.method_name}} None {{key.method_description}} None {{key.project_url}} None {{key.publication_url}} None {{key.status}} - {{key.execution_time > 0 ? key.execution_time : "None"}} Link - Link - None LinkNone LinkNone - LinkNone{{key.submitted_at | date:'medium'}} - - - - - - - - N/A - -
-
-
-
-
-
-
-
-
-
-
-
-
- - - - Page - {{challenge.currentPage | ceil}} of {{challenge.submissionResult.count/100 | ceil}} - - - - -
-
-
-
- -
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/overview.html b/frontend/src/views/web/challenge/overview.html deleted file mode 100644 index 2319990566..0000000000 --- a/frontend/src/views/web/challenge/overview.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
-
-
Challenge Overview
-
-
-
 edit
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/challenge/participate.html b/frontend/src/views/web/challenge/participate.html deleted file mode 100644 index 2cade16e1a..0000000000 --- a/frontend/src/views/web/challenge/participate.html +++ /dev/null @@ -1,133 +0,0 @@ -
-
-
-
-
-
-
-
-
-
-
-
-

You have already participated in this challenge.

-
-
-
-
-
-
My Participant Teams
-
-
-
-
{{challenge.paginationMsg}} -
-
    -
  • -
    -
    -
    - - -
    - Team: {{value.team_name}} -
    - Created By: - {{value.created_by}} -
    -
    - Team: {{value.team_name}} -
    - Created By: - {{value.created_by}} -
    -
    -
    -
    -
    -
  • -
-
-
- -
- {{challenge.existTeamError}} -
-
- -
-
-
- - - - Page - {{challenge.currentPage | ceil}} of - {{challenge.existTeam.count/10 | ceil}} - - - -
-
-
-
-
-
-
-
-
Create New Team
-
-
-
-
- - - -
- {{challenge.team.error}}
-
-
-
-
- - - -
-
-
-
- -
-
-
-
-
-
-
-
-
-
-

Sorry, the challenge is not active.

-
-
-
-
-

Please log in to participate in this challenge. -

-
-
diff --git a/frontend/src/views/web/challenge/phases.html b/frontend/src/views/web/challenge/phases.html deleted file mode 100644 index e89c0c0c35..0000000000 --- a/frontend/src/views/web/challenge/phases.html +++ /dev/null @@ -1,37 +0,0 @@ -
-
-
-
-
Phase: {{item.name}} -
-
-
-
 edit
-
-
-
-
-
-
-
-

Starts on: {{item.start_date | date:'medium'}} - {{item.time_zone}} ({{item.gmt_zone}})

-

Ends on: {{item.end_date | date:'medium'}} {{item.time_zone}} ({{item.gmt_zone}}) -

-
-
-
-
-
-

Max submissions/day: {{item.max_submissions_per_day}}

-

Max submissions/month: {{item.max_submissions_per_month}} -

-

Max total submissions: {{item.max_submissions}}

-

Max concurrent submissions: {{item.max_concurrent_submissions_allowed}}

-
-
-
-
diff --git a/frontend/src/views/web/challenge/prizes.html b/frontend/src/views/web/challenge/prizes.html deleted file mode 100644 index a43d2fa3f6..0000000000 --- a/frontend/src/views/web/challenge/prizes.html +++ /dev/null @@ -1,32 +0,0 @@ -
- -
\ No newline at end of file diff --git a/frontend/src/views/web/challenge/sponsors.html b/frontend/src/views/web/challenge/sponsors.html deleted file mode 100644 index 9ad45af018..0000000000 --- a/frontend/src/views/web/challenge/sponsors.html +++ /dev/null @@ -1,38 +0,0 @@ -
-
-
-
-
Sponsors
-
-
-
-
- - - - - - - - - - - - - -
- Name - - Url -
{{sponsor.name}} - - {{ sponsor.website}} -
-
-

{{challenge.prizes.error.error}}

-
-
-
-
-
\ No newline at end of file diff --git a/frontend/src/views/web/challenge/submission-meta-attributes-dialog.html b/frontend/src/views/web/challenge/submission-meta-attributes-dialog.html deleted file mode 100644 index 0af6e610ef..0000000000 --- a/frontend/src/views/web/challenge/submission-meta-attributes-dialog.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
-
-
Meta Attributes for submission
-
-
-
- {{a.name}} : {{a.value}} -
-
-
- {{a.name}} : {{value}} -
-
-
-
-
-
-
- -
diff --git a/frontend/src/views/web/challenge/submission.html b/frontend/src/views/web/challenge/submission.html deleted file mode 100644 index 4011b7c65a..0000000000 --- a/frontend/src/views/web/challenge/submission.html +++ /dev/null @@ -1,520 +0,0 @@ -
-
-
-
-
Submission Guidelines
-
- -
-
-
- -
-

Note: Your submissions won't be - visible on leaderboard for Public Challenge Phases - since you are a challenge host - for this challenge.
This feature is only for your testing purposes.

-
-
-
-
-
-
-
-
-
-
- Click here to deregister from this challenge: - -
-
- - -
- -
-
-
-
-
- Submission instructions for docker based challenges -
-
    -
  1. Install evalai-cli
    - $ pip install evalai{{challenge.cliVersion}} - -
  2. -
  3. Add your EvalAI account token to evalai-cli
    - $ evalai set_token {{challenge.refreshJWT}} - -
  4. -
  5. Push docker image to EvalAI docker registry
    - $ evalai push <image>:<tag> --phase <phase_name> - -
  6. -
  7. Use --private or --public flag in the submission command to make the submission private or public respectively.
    -
  8. -
  9. For more commands, please refer to evalai-cli documentation. -
  10. -
-
-
-
-
- - -
-
-
-
-
- Submission limits -
-

- Team name: {{challenge.phaseRemainingSubmissions.participant_team}} -

- - - - - - - - - - - - - - - - - - -
Phase detailsRemaining submissionsSubmission command
{{key.name}} -
- Start date: - {{key.start_date | date:'medium'}} -
- End date: {{key.end_date | date:'medium'}} -
- - Today: - - {{key.limits.remaining_submissions_today_count}}
- - This month: - - {{key.limits.remaining_submissions_this_month_count}}
- - Total: - - {{key.limits.remaining_submissions_count}} -
- {{key.limits.message}}
Next submission will be available in
-
- {{challenge.phaseRemainingSubmissionsCountdown[key.id].days}} - Days, {{challenge.phaseRemainingSubmissionsCountdown[key.id].hours}} - hours : {{challenge.phaseRemainingSubmissionsCountdown[key.id].minutes}} minutes - : - {{challenge.phaseRemainingSubmissionsCountdown[key.id].seconds}} seconds -
-
- {{key.limits.message}}
- - {{key.limits.maxExceededMessage}} - -
-
- $ evalai push <image>:<tag> --phase {{key.slug}} - -
-
-
- $ evalai push <image>:<tag> --phase {{key.slug}} --private - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
Make Submission
-
- -
-
-
-

Select phase:

-
    -
  • - - -
    Phase: {{item.name}} -
    - Start date: - {{item.start_date | date:'medium'}} {{item.start_zone}} -
    - End date: - {{item.end_date | date:'medium'}} {{item.end_zone}} -
    -
    Phase: - {{item.name}} -
    - Start date: {{item.start_date | date:'medium'}} - {{item.start_zone}} -
    - End date: {{item.end_date | date:'medium'}} - {{item.end_zone}} -
    -
    -
  • - -

    Select submission type:

    -
  • - - -
    - Use CLI (for file size > 400MB) - -
    - - -
    - Upload file -
    -
    -
  • - -
    -
    -
    - Upload file - -
    -
    - -
    -
    -
    -
    -
    - - - -
    -
    - - -
    - -
    -

    Select submission visibility:

    -
  • - - -
    - Public - -
    -
    - - - -
    - Private -
    -
    -
  • -
    -
    -
    - - - -
    -
    -
    -
    - - - -
    -
    -
    -
    - - - -
    -
    -
    -
    - - - -
    -
    -
    -
    -
    -
    -
    - - - * -
    -
    -
    -
    -
    -
    - * -
    - - - {{option}} - - -
    -
    -
    -
    -
    -
    -
    - * -
    -
    - - - {{option}} -
    -
    -
    -
    -
    -
    -
    -
    - * -
    - - True - False - -
    -
    -
    -
    -
    -
    -
    {{challenge.subErrors.msg}}
    -
    -
    -
    -
    - -
    -
    - {{challenge.submissionError}} -
    -
    -
    -
    -
    -
-
-
-
-
-
-
- - - {{challenge.maxExceededMessage}} - - -
-
-
-
-
-
- - - Today's remaining submissions: - - - {{challenge.remainingSubmissions.remaining_submissions_today_count}} - -
-
-
- - - Monthly remaining submissions: - - - {{challenge.remainingSubmissions.remaining_submissions_this_month_count}} - -
- - - Total remaining submissions: - - - - {{challenge.remainingSubmissions.remaining_submissions_count}} - -
-
-
-
-
-
- - Message: - {{challenge.message.message}} -
-
- Next set of submissions will be available after: -
-
- {{challenge.days}} Days, {{challenge.hours}} - hours : {{challenge.minutes}} minutes : {{challenge.remainingSeconds}} seconds -
-
-
-
-
-
-
- -
-

Submission instructions

-
    -
  1. - Install evalai-cli
    - $ pip install evalai{{challenge.cliVersion}} - -
  2. -
  3. - Add your EvalAI account token to evalai-cli
    - $ evalai set_token {{challenge.refreshJWT}} - -
  4. -
  5. - Make submission
    - $ evalai challenge {{challenge.challengeId}} phase {{challenge.phaseId}} submit --file /path/to/local/submission_file --large - -
  6. -
  7. -
    Use   --private  or  --public   flag in the submission - command to make the submission private or public respectively.
    -
    -
  8. -
  9. - For more commands, please refer to evalai-cli documentation. -
  10. -
-
-
-
-
-
-
-
- - -
-
-

Sorry, the participant team is not approved by host yet.

-
-
- - -
-
-

Sorry, the challenge is not active.

-
-
diff --git a/frontend/src/views/web/challenge/terms-and-conditions.html b/frontend/src/views/web/challenge/terms-and-conditions.html deleted file mode 100644 index b060eb954a..0000000000 --- a/frontend/src/views/web/challenge/terms-and-conditions.html +++ /dev/null @@ -1,31 +0,0 @@ -
-
-
-
-
Terms and Conditions
-
-
-
-
-
-
-
- - - -
- -
-
-
diff --git a/frontend/src/views/web/challenge/update-submission-metadata.html b/frontend/src/views/web/challenge/update-submission-metadata.html deleted file mode 100644 index b7b2719c65..0000000000 --- a/frontend/src/views/web/challenge/update-submission-metadata.html +++ /dev/null @@ -1,97 +0,0 @@ -
-
-
-
-
-
Update Submission Details
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
-
- - - -
-
- -
- - - {{option}} - - -
-
-
- -
-
- - - {{option}} -
-
-
-
- -
- - True - False - -
-
-
- -
-
-
-
-
diff --git a/frontend/src/views/web/challenge/update-submission-visibility.html b/frontend/src/views/web/challenge/update-submission-visibility.html deleted file mode 100644 index e2ee9b34af..0000000000 --- a/frontend/src/views/web/challenge/update-submission-visibility.html +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
Are you sure you want to override your current public submission?
- - -
-
-
-
-
diff --git a/frontend/src/views/web/change-password.html b/frontend/src/views/web/change-password.html deleted file mode 100644 index b9bf3c75b2..0000000000 --- a/frontend/src/views/web/change-password.html +++ /dev/null @@ -1,57 +0,0 @@ -
-
-
-
- -
-
Change Password
-
-
- - - - - - -
-

password is less than 8 characters.

-

Old password is required

-
-
-
- - - - - - -
-

password is less than 8 characters.

-

New password is required

-

Old password cannot be same as New Password

-
-
-
- - - - - - -
-

Password do not match

-

password is less than 8 characters.

-

Confirm new password is required

-
-
-
- -
-
{{profile.FormError}}
-
-
-
- -
-
-
diff --git a/frontend/src/views/web/contact-us.html b/frontend/src/views/web/contact-us.html deleted file mode 100644 index 23c236f139..0000000000 --- a/frontend/src/views/web/contact-us.html +++ /dev/null @@ -1,54 +0,0 @@ -
- -
-
-
-
-

Contact Us

-
- -
- - - -
-

name is too short.

-

name is required.

-
-
- -
- - - -
-

Please enter valid email address.

-

Email is required.

-
-
- -
- - - -
-

Message is required.

-
-
-
-
-
- -
-
{{contactUs.FormError}} -
-
-
-
-
-
-
-
- - -
diff --git a/frontend/src/views/web/dashboard.html b/frontend/src/views/web/dashboard.html deleted file mode 100644 index 64e62e8ddd..0000000000 --- a/frontend/src/views/web/dashboard.html +++ /dev/null @@ -1,54 +0,0 @@ -
-
-
-
-
-
- -
-
-

You have limited privileges.
Please verify your email Id for getting all privileges!
-

-
-
-
-
- -
-
-
-
-

Ongoing Challenges

-

{{dash.challengeCount || 0}}

- View All -
-
-

My Host Teams

-

{{dash.hostTeamCount || 0}}

- View or Create -
-
-

My Participant Teams

-

{{dash.participatedTeamCount || 0}}

- View or Create -
-
-
- - -
-
Loading
-
-
-
-
-
-
-
-
- diff --git a/frontend/src/views/web/edit-host-teams.html b/frontend/src/views/web/edit-host-teams.html deleted file mode 100644 index 7320b075d6..0000000000 --- a/frontend/src/views/web/edit-host-teams.html +++ /dev/null @@ -1,23 +0,0 @@ -
-
-
-
-
-
Update Host Team
-
- - -
-
- - -
- -
-
-
-
-
diff --git a/frontend/src/views/web/edit-teams.html b/frontend/src/views/web/edit-teams.html deleted file mode 100644 index ba3c0b63cc..0000000000 --- a/frontend/src/views/web/edit-teams.html +++ /dev/null @@ -1,23 +0,0 @@ -
-
-
-
-
-
Update Participant Team
-
- - -
-
- - -
- -
-
-
-
-
diff --git a/frontend/src/views/web/error-pages/error-404.html b/frontend/src/views/web/error-pages/error-404.html deleted file mode 100644 index c78c29040e..0000000000 --- a/frontend/src/views/web/error-pages/error-404.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 404 -
-
- Page Not Found -
-
-
- -
- Maybe eval.ai is what you were looking for. -
-
diff --git a/frontend/src/views/web/error-pages/error-500.html b/frontend/src/views/web/error-pages/error-500.html deleted file mode 100644 index 16557fbe26..0000000000 --- a/frontend/src/views/web/error-pages/error-500.html +++ /dev/null @@ -1,15 +0,0 @@ -
-
-
- 500 Something has gone wrong -
- -
- We are experiencing an internal server problem. Please try back later. -
-
- -
- Go Back to eval.ai -
-
diff --git a/frontend/src/views/web/featured-challenge/challenge-page.html b/frontend/src/views/web/featured-challenge/challenge-page.html deleted file mode 100644 index 95a7c37f43..0000000000 --- a/frontend/src/views/web/featured-challenge/challenge-page.html +++ /dev/null @@ -1,56 +0,0 @@ -
- -
-
-
-
-
-
-
-
- -
-
-
-
-

{{featured_challenge.page.title}} -
- Organized by: - {{featured_challenge.page.creator.team_name}} - Organized by: - {{featured_challenge.page.creator.team_name}} -

-
-
-
- -
-
- -
-
-
- -
diff --git a/frontend/src/views/web/featured-challenge/evaluation.html b/frontend/src/views/web/featured-challenge/evaluation.html deleted file mode 100644 index c4c16c3818..0000000000 --- a/frontend/src/views/web/featured-challenge/evaluation.html +++ /dev/null @@ -1,18 +0,0 @@ -
-
-
-
- Evaluation Criteria - -
-
-
-
-
- Terms And Conditions - -
-
-
-
-
diff --git a/frontend/src/views/web/featured-challenge/leaderboard.html b/frontend/src/views/web/featured-challenge/leaderboard.html deleted file mode 100644 index 0f09aee8c7..0000000000 --- a/frontend/src/views/web/featured-challenge/leaderboard.html +++ /dev/null @@ -1,72 +0,0 @@ -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Description -
-
-
-
-
-
-
- Please select from following phases -
-
-
-
- - Phase: {{key.challenge_phase_name}}, Split: {{key.dataset_split_name}} - -
-
-
-
-
-
-
-
No phase selected.
- - - - - - - - - - - - - - - - - -
RankParticipant Team{{key}}Last Submission at
{{$index+1}}{{key.submission__participant_team__team_name}}{{score | number : 2}}±{{key.error[i] | number : 2}} {{key.submission__submitted_at | number: 0}}  {{key.timeSpan}} ago
-
-

{{featured_challenge.leaderboard.error.error}}

-
-
-

No results to show!

-
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/featured-challenge/overview.html b/frontend/src/views/web/featured-challenge/overview.html deleted file mode 100644 index 2f9e4f75a5..0000000000 --- a/frontend/src/views/web/featured-challenge/overview.html +++ /dev/null @@ -1,14 +0,0 @@ -
-
-
-
- {{featured_challenge.page.title}} -
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/featured-challenge/participate.html b/frontend/src/views/web/featured-challenge/participate.html deleted file mode 100644 index c7ce41d9a7..0000000000 --- a/frontend/src/views/web/featured-challenge/participate.html +++ /dev/null @@ -1,20 +0,0 @@ -
-
-
-
- Participate in {{featured_challenge.page.title}} -
-
-
-
-
-

Proceed to challenge page to participate.

-

Please log in to participate in this challenge.

-
-
-

Sorry, this Challenge is not active!

-
-
-
-
-
diff --git a/frontend/src/views/web/featured-challenge/phases.html b/frontend/src/views/web/featured-challenge/phases.html deleted file mode 100644 index 3e73402652..0000000000 --- a/frontend/src/views/web/featured-challenge/phases.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
-
-
- {{item.name}} -
-
-

Starts on -
{{item.start_date | date:'medium'}}

-

Ends on -
{{item.end_date | date:'medium'}}

-
-

Max number of submissions/day -
{{item.max_submissions_per_day}}

-

Max total submissions -
{{item.max_submissions}}

-
-
-
-
-
-
-
-
-

Challenge ends on: {{featured_challenge.page.end_date | date:'medium'}}

-
-
-
-
diff --git a/frontend/src/views/web/get-involved.html b/frontend/src/views/web/get-involved.html deleted file mode 100644 index c3d4c288c7..0000000000 --- a/frontend/src/views/web/get-involved.html +++ /dev/null @@ -1,37 +0,0 @@ -
- -
- -
-
-
-

Get Involved

-

Thanks for your interest in helping out with the EvalAI project! We're a team of volunteers - around the world who want to reduce the barrier to entry for doing AI research and make it easier - for researchers, students and developers to develop and use state-of-the-art algorithms as a service. - We are always listening for suggestions to improve our platform, including identifying bugs and discussing enhancements. Here are different ways in which how you can help:

-
Report issues
-

If you identify a bug or run into issues while using the website, or you'd like to suggest some new features - or want to get in touch with us, feel free to reach out via our - EvalAI Google Group, - or contact us at team@cloudcv.org.

-
Improving and maintaining the site
-

The EvalAI project is fully open source, and is maintained by a large community of volunteers on GitHub. - We are in need of coders and designers so if you would like to help out, please drop us a line! - The best way to get started is to write us at team@cloudcv.org - or ping us on our Gitter Channel.

-
Press
-

If you're a journalist who would like to help spread the word about EvalAI or CloudCV, - please email admin@cloudcv.org.

-
Partnership
-

If you are interested in partnering with us to make a bigger impact on the research community, - or want to host a challenge of your own, please email - admin@cloudcv.org.

-
-
-
-
-
- - -
diff --git a/frontend/src/views/web/host-challenge.html b/frontend/src/views/web/host-challenge.html deleted file mode 100644 index c86bf80ffb..0000000000 --- a/frontend/src/views/web/host-challenge.html +++ /dev/null @@ -1,9 +0,0 @@ -
-
-
-
- Fill form to Host Competition -
-
-
-
diff --git a/frontend/src/views/web/hosted-challenges.html b/frontend/src/views/web/hosted-challenges.html deleted file mode 100644 index 8ae4e1efc1..0000000000 --- a/frontend/src/views/web/hosted-challenges.html +++ /dev/null @@ -1,57 +0,0 @@ -
- - -
My Hosted Challenges
-
- You haven't hosted any challenge. Please click here to host one! -
- - - -
-
Loading
-
-
-
-
-
-
-
-
- -
diff --git a/frontend/src/views/web/landing.html b/frontend/src/views/web/landing.html deleted file mode 100644 index 0734a26989..0000000000 --- a/frontend/src/views/web/landing.html +++ /dev/null @@ -1,400 +0,0 @@ -
- -
- -
-
-
-
-

Evaluating state-of-the-art in AI

-

EvalAI is an open source platform for evaluating and - comparing machine learning (ML) and artificial intelligence (AI) algorithms at scale.

-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-

200+

-
-
-
-
-
- Hosted AI Challenges -
-
-
-
-
-
-
-
-
-

18,000+

-
-
-
-
-
- Users -
-
-
-
-
-
-
-
-
-

180,000+

-
-
-
-
-
- Submissions -
-
-
-
-
-
-
-
-
-

30+

-
-
-
-
-
- Organizations -
-
-
-
-
-
-
-
-
-
-
-

Features

-
-
-
- -
-
-
Custom evaluation protocol
-

We allow creation of an arbitrary number of evaluation phases - and dataset splits, compatibility using any programming language, and organizing results in - both - public and private leaderboards.

-
-
- -
-
-
Remote evaluation
-

Certain large-scale challenges need special compute capabilities for - evaluation. If the challenge needs extra computational power, challenge organizers can - easily add their own cluster of worker nodes to process participant submissions while we - take care of hosting the challenge, handling user submissions, and maintaining the - leaderboard.

-
-
-
-
- -
-
-
Evaluation inside RL environments
-

EvalAI lets participants submit code for their agent in the form of - docker images which are evaluated against test environments on the evaluation server. During - evaluation, the worker fetches the image, test environment, and the model snapshot and spins - up a new container to perform evaluation.

-
-
- -
-
-
CLI support
-

EvalAI-CLI is designed to extend the functionality of the EvalAI web - application to your command line to make the platform more accessible and terminal-friendly. -

-
-
-
-
- -
-
-
Portability
-

EvalAI was designed with keeping in mind scalability and portability of - such a system from the very inception of the idea. Most of the components rely heavily on - open-source technologies – Docker, Django, Node.js, and PostgreSQL.

-
-
- -
-
-
Faster evaluation
-

We warm-up the worker nodes at start-up by importing the challenge code - and pre-loading the dataset in memory. We also split the dataset into small chunks that are - simultaneously evaluated on multiple cores. These simple tricks result in faster evaluation - and reduces the evaluation time by an order of magnitude in some cases.

-
-
-
-
-
- -
- -
-
-
-
-
-

Partner Organizations

-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
-
-
-
-
- -
-
-
-

Cite our work

-
-
-
-
EvalAI: Towards Better Evaluation Systems for AI Agents
- Deshraj Yadav, Rishabh Jain, Harsh Agrawal, Prithvijit Chattopadhyay, - Taranjeet Singh, Akash Jain, Shiv Baran Singh, Stefan Lee, Dhruv Batra -
-
-
- - - -
-
-
- -
-
-
-

Sponsors

-
-
-
- -
-
- -
-
-
-
-
- -
diff --git a/frontend/src/views/web/our-team.html b/frontend/src/views/web/our-team.html deleted file mode 100644 index a6e563f19a..0000000000 --- a/frontend/src/views/web/our-team.html +++ /dev/null @@ -1,74 +0,0 @@ -
- -
-
-

{{ourTeam.coreTeamType}}

-
-
{{ourTeam.noTeamDisplay}}
- -
-
- -
- -
-
- -
-
- -
-
-
{{data.name}}
-
{{data.description}}
-
-
-
-
- -

{{ourTeam.contributingTeamType}}

-
-
-
- -
- -
-
- -
-
- -
-
-
{{data.name}}
-
{{data.description}}
-
-
-
-
-
-
- - -
diff --git a/frontend/src/views/web/partials/dashboard-footer.html b/frontend/src/views/web/partials/dashboard-footer.html deleted file mode 100644 index 16ab9dc211..0000000000 --- a/frontend/src/views/web/partials/dashboard-footer.html +++ /dev/null @@ -1,39 +0,0 @@ - diff --git a/frontend/src/views/web/partials/dyn-header.html b/frontend/src/views/web/partials/dyn-header.html deleted file mode 100644 index a437eb0c4e..0000000000 --- a/frontend/src/views/web/partials/dyn-header.html +++ /dev/null @@ -1,43 +0,0 @@ -
- -
diff --git a/frontend/src/views/web/partials/footer.html b/frontend/src/views/web/partials/footer.html deleted file mode 100644 index 0c893725ce..0000000000 --- a/frontend/src/views/web/partials/footer.html +++ /dev/null @@ -1,38 +0,0 @@ - diff --git a/frontend/src/views/web/partials/loader.html b/frontend/src/views/web/partials/loader.html deleted file mode 100644 index 2197fafb52..0000000000 --- a/frontend/src/views/web/partials/loader.html +++ /dev/null @@ -1,11 +0,0 @@ - -
-
{{loaderTitle}}
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/partials/main-header.html b/frontend/src/views/web/partials/main-header.html deleted file mode 100644 index 855d1cda34..0000000000 --- a/frontend/src/views/web/partials/main-header.html +++ /dev/null @@ -1,48 +0,0 @@ -
- -
diff --git a/frontend/src/views/web/partials/rocket-container.html b/frontend/src/views/web/partials/rocket-container.html deleted file mode 100644 index 7fd300698e..0000000000 --- a/frontend/src/views/web/partials/rocket-container.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
diff --git a/frontend/src/views/web/partials/sidebar.html b/frontend/src/views/web/partials/sidebar.html deleted file mode 100644 index 7871c341dc..0000000000 --- a/frontend/src/views/web/partials/sidebar.html +++ /dev/null @@ -1,45 +0,0 @@ - -
- -
diff --git a/frontend/src/views/web/partials/sim-header.html b/frontend/src/views/web/partials/sim-header.html deleted file mode 100644 index 6b0fb51df4..0000000000 --- a/frontend/src/views/web/partials/sim-header.html +++ /dev/null @@ -1,44 +0,0 @@ -
- -
diff --git a/frontend/src/views/web/partials/sim-loader b/frontend/src/views/web/partials/sim-loader deleted file mode 100644 index 1f0adf686d..0000000000 --- a/frontend/src/views/web/partials/sim-loader +++ /dev/null @@ -1,12 +0,0 @@ - -
-
{{loaderTitle}}
-
- -
-
-
-
-
-
-
diff --git a/frontend/src/views/web/partials/sim-loader.html b/frontend/src/views/web/partials/sim-loader.html deleted file mode 100644 index 5c38f15201..0000000000 --- a/frontend/src/views/web/partials/sim-loader.html +++ /dev/null @@ -1,11 +0,0 @@ - -
-
Loading
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/permission-denied.html b/frontend/src/views/web/permission-denied.html deleted file mode 100644 index 5ba1ad0eda..0000000000 --- a/frontend/src/views/web/permission-denied.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
-
-
- -
-
-
-

Please verify your email to continue.

-
-

Didn't get the email? Resend Email

-
-
-

The verification mail has been sent to you. Please confirm!

-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/privacy-policy.html b/frontend/src/views/web/privacy-policy.html deleted file mode 100644 index a193097018..0000000000 --- a/frontend/src/views/web/privacy-policy.html +++ /dev/null @@ -1,97 +0,0 @@ -
- - -
-
-
-

Privacy Policy

-

This privacy policy has been compiled to better serve those who are concerned with how their 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information security, is information that can be used on its own or with other information to identify, contact, or locate a single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in accordance with our website.

-

What personal information do we collect from the people that visit our blog, website or app?

-

When ordering or registering on our site, as appropriate, you may be asked to enter your name, email address, mailing address or other details to help you with your experience.

-

When do we collect information?

-

We collect information from you when you register on our site, subscribe to a newsletter, fill out a form or enter information on our site.

-

How do we use your information?

-

We may use the information we collect from you when you register, make a purchase, sign up for our newsletter, respond to a survey or marketing communication, surf the website, or use certain other site features in the following ways: -

-
    -
  • To personalize your experience and to allow us to deliver the type of content and product offerings in which you are most interested.
  • -
  • To improve our website in order to better serve you.
  • -
  • To allow us to better service you in responding to your customer service requests.
  • -
  • To ask for ratings and reviews of services or products
  • -
-

How do we protect your information?

-

We do not use vulnerability scanning and/or scanning to PCI standards.

-

We only provide articles and information. We never ask for credit card numbers.

-

We do not use Malware Scanning.

-

Your personal information is contained behind secured networks and is only accessible by a limited number of persons who have special access rights to such systems, and are required to keep the information confidential. In addition, all sensitive/credit information you supply is encrypted via Secure Socket Layer (SSL) technology.

-

We implement a variety of security measures when a user enters, submits, or accesses their information to maintain the safety of your personal information.

-

All transactions are processed through a gateway provider and are not stored or processed on our servers.

-

Do we use 'cookies'?

-

Yes. Cookies are small files that a site or its service provider transfers to your computer's hard drive through your Web browser (if you allow) that enables the site's or service provider's systems to recognize your browser and capture and remember certain information. For instance, we use cookies to help us remember and update the status of the submissions. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.

-

We use cookies to:

-
    -
  • Compile aggregate data about site traffic and site interactions in order to offer better site experiences and tools in the future. We may also use trusted third-party services that track this information on our behalf.
  • -
-

You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies. You do this through your browser settings. Since browser is a little different, look at your browser's Help Menu to learn the correct way to modify your cookies.

-

If users disable cookies in their browser:

-

If you turn cookies off, Some of the features that make your site experience more efficient may not function properly.Some of the features that make your site experience more efficient and may not function properly.

-

Third-party disclosure

-

We do not sell, trade, or otherwise transfer to outside parties your Personally Identifiable Information.

-

Third-party links

-

We do not include or offer third-party products or services on our website.

-

Google

-

We use Google AdSense Advertising on our website.

-

Google, as a third-party vendor, uses cookies to serve ads on our site. Google's use of the DART cookie enables it to serve ads to our users based on previous visits to our site and other sites on the Internet. Users may opt-out of the use of the DART cookie by visiting the Google Ad and Content Network privacy policy.

-

We have implemented the following:

-
    -
  • Demographics and Interests Reporting
  • -
-

We, along with third-party vendors such as Google use first-party cookies (such as the Google Analytics cookies) and third-party cookies (such as the DoubleClick cookie) or other third-party identifiers together to compile data regarding user interactions with ad impressions and other ad service functions as they relate to our website.

-

Opting out:

-

Users can set preferences for how Google advertises to you using the Google Ad Settings page. Alternatively, you can opt out by visiting the Network Advertising Initiative Opt Out page or by using the Google Analytics Opt Out Browser add on.

-

California Online Privacy Protection Act

-

CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law's reach stretches well beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly the information being collected and those inpiduals or companies with whom it is being shared. - See more at: https://consumercal.org/about-cfc/cfc-education-foundation/california-online-privacy-protection-act-caloppa-3/#sthash.0FdRbT51.dpuf

-

According to CalOPPA, we agree to the following:

-

Users can visit our site anonymously.

-

Once this privacy policy is created, we will add a link to it on our home page or as a minimum, on the first significant page after entering our website.

-

Our Privacy Policy link includes the word 'Privacy' and can easily be found on the page specified above.

-

You will be notified of any Privacy Policy changes:

-
    -
  • On our Privacy Policy Page
  • -
-

How does our site handle Do Not Track signals?

-

We honor Do Not Track signals and Do Not Track, plant cookies, or use advertising when a Do Not Track (DNT) browser mechanism is in place.

-

Does our site allow third-party behavioral tracking?

-

It's also important to note that we do not allow third-party behavioral tracking

-

Fair Information Practices

-

The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.

-

In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:

-

We will notify you via email

-
    -
  • Within 7 business days
  • -
-

We also agree to the Inpidual Redress Principle which requires that inpiduals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that inpiduals have enforceable rights against data users, but also that inpiduals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.

-

CAN SPAM Act

-

The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.

-

We collect your email address in order to:

-
    -
  • Send information, respond to inquiries, and/or other requests or questions
  • -
-

To be in accordance with CANSPAM, we agree to the following:

-

If at any time you would like to unsubscribe from receiving future emails, you can email us at admin@cloudcv.org and we will promptly remove you from ALL correspondence.

-

How can users get their data deleted from EvalAI?

-

In order to get user data deleted from EvalAI you can email us at admin@cloudcv.org with your EvalAI account email id and we will promptly delete all of your data from EvalAI.

-

Contacting Us

-

If there are any questions regarding this privacy policy, you may contact us using the information below. -

-

EvalAI -
- admin@cloudcv.org -
Last Edited on 2017-05-29

-
-
-
-
-
- - diff --git a/frontend/src/views/web/profile/edit-profile/deactivate-account.html b/frontend/src/views/web/profile/edit-profile/deactivate-account.html deleted file mode 100644 index f6ae38c1aa..0000000000 --- a/frontend/src/views/web/profile/edit-profile/deactivate-account.html +++ /dev/null @@ -1,25 +0,0 @@ -
-
-
-
-
-
-
Deactivate Account
-
- -
-
    -
  • - Cancel -
  • -
  • - -
  • {{profile.userKey}}
  • - -
-
-
-
-
-
-
diff --git a/frontend/src/views/web/profile/edit-profile/edit-profile.html b/frontend/src/views/web/profile/edit-profile/edit-profile.html deleted file mode 100644 index 962392d851..0000000000 --- a/frontend/src/views/web/profile/edit-profile/edit-profile.html +++ /dev/null @@ -1,24 +0,0 @@ -
-
-
-
-
-
Edit {{profile.titleInput}}
-
- - - -
- -
-
-
-
-
diff --git a/frontend/src/views/web/profile/edit-profile/update-profile.html b/frontend/src/views/web/profile/edit-profile/update-profile.html deleted file mode 100644 index b474d7cca4..0000000000 --- a/frontend/src/views/web/profile/edit-profile/update-profile.html +++ /dev/null @@ -1,96 +0,0 @@ -
-
-
-
- -
{{profile.userdetails.username}} -
-
{{profile.userdetails.email}} -
-

-
- Profile Completed -
- {{profile.user.complete}}% -
-
-
- - -
-
-
-
diff --git a/frontend/src/views/web/profile/profile.html b/frontend/src/views/web/profile/profile.html deleted file mode 100644 index d2ccc3c5e8..0000000000 --- a/frontend/src/views/web/profile/profile.html +++ /dev/null @@ -1,16 +0,0 @@ - -
- -
- diff --git a/frontend/src/views/web/teams.html b/frontend/src/views/web/teams.html deleted file mode 100644 index 38825f5f2d..0000000000 --- a/frontend/src/views/web/teams.html +++ /dev/null @@ -1,108 +0,0 @@ -
-
-
-
-
My Existing Participant Teams
-
- -
-
-
-
-
-
-
-
-
-
{{teams.paginationMsg}}
-
    -
  • -
    -
    - Team: {{value.team_name}} - Team: {{value.team_name}} - - - -
    - Created by: {{value.created_by}} -
    -
    -
    -
    -
    Team Members:
    -

    {{member.member_name}}

    -
    -
  • -
-
-
-
- - - - Page {{teams.currentPage | ceil}} of {{teams.existTeam.count/10 | ceil}} - - - -
-
-
-
-
-
-
-
-
Create a New Participant Team
-
-
-
-
-
-
-
-
-
-
-
-
- - - -
{{teams.team.error}}
-
-
- - - -
-
- -
-
-
-
-
-
-
- -
-
- -

-

-
-
-
- - -
-
Loading
-
-
-
-
-
-
-
-
diff --git a/frontend/src/views/web/update-profile.html b/frontend/src/views/web/update-profile.html deleted file mode 100644 index 1fe4e54169..0000000000 --- a/frontend/src/views/web/update-profile.html +++ /dev/null @@ -1,88 +0,0 @@ -
-
-
-
-
Update Profile
-
-
- - - -
-

Username is required

-

Username is too long

-

Username is too short

-
-
-
- - - -
-

First Name is required

-

First Name is too long

-
-
-
- - - -
-

Last Name is required

-

Last Name is too long.

-
-
-
- - - -
-

Affiliation is required

-

Affiliation is too long

-
-
-
- - - -
- {{updateProfile.errorResponse.data.github_url[0]}} -
-
-
- - - -
- {{updateProfile.errorResponse.data.google_scholar_url[0]}} -
-
-
- - - -
- {{updateProfile.errorResponse.data.linkedin_url[0]}} -
-
-
- -
-
{{updateProfile.FormError}} -
-
-
- -
-
-
-
-
diff --git a/frontend/src/views/web/web.html b/frontend/src/views/web/web.html deleted file mode 100644 index 80141ea006..0000000000 --- a/frontend/src/views/web/web.html +++ /dev/null @@ -1,13 +0,0 @@ -
- - -
-
-
- -
- -
-
-
- diff --git a/frontend/tests/controllers-test/ChallengeInviteCtrl.test.js b/frontend/tests/controllers-test/ChallengeInviteCtrl.test.js deleted file mode 100644 index 916a75763f..0000000000 --- a/frontend/tests/controllers-test/ChallengeInviteCtrl.test.js +++ /dev/null @@ -1,121 +0,0 @@ -'use strict'; - -describe('Unit tests for challenge invite controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $state, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _$state_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ChallengeInviteCtrl', {$scope: $scope}); - }; - vm = $controller('ChallengeInviteCtrl', { $scope: $scope }); - })); - - describe('Unit tests for registerChallengeParticipant function \ - `challenges//accept-invitation/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - vm.first_name = "firstName"; - vm.last_name = "lastName"; - vm.password = "password"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - error: errorResponse - }); - } - }; - }); - - it('successfully accepted the challenge invitation', function () { - success = true; - vm.registerChallengeParticipant(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.notify).toHaveBeenCalledWith("success", "You've successfully accepted the challenge invitation."); - }); - - it('backend error', function () { - success = false; - vm.registerChallengeParticipant(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - }); - - describe('Unit tests for global backend call', function () { - var success, status; - var successResponse = { - challenge_title: "challenge title", - challenge_host_team_name: "challenge host team name", - email: "abc@gmail.com", - user_details: "some details" - }; - var errorResponse = { - error: 'error' - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - vm.first_name = "First Name"; - vm.last_name = "Last Name"; - vm.password = "Password"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: status - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully accept invitation `challenges//accept-invitation/`', function () { - success = true; - status = 200; - vm = createController(); - expect(vm.data).toEqual(successResponse); - expect(vm.challengeTitle).toEqual(successResponse.challenge_title); - expect(vm.host).toEqual(successResponse.challenge_host_team_name); - expect(vm.email).toEqual(successResponse.email); - expect(vm.userDetails).toEqual(successResponse.user_details); - }); - - it('when status other than 200 `challenges//accept-invitation/`', function () { - success = true; - status = !200; - vm = createController(); - expect(vm.data).toEqual(successResponse); - expect($state.go).toHaveBeenCalledWith('error-404'); - }); - - it('404 backend error `challenges//accept-invitation/`', function () { - success = false; - status = 404; - vm = createController(); - expect(vm.data).toEqual(errorResponse); - expect($state.go).toHaveBeenCalledWith('error-404'); - expect($rootScope.notify).toHaveBeenCalledWith('error', errorResponse.error); - }); - }); -}); diff --git a/frontend/tests/controllers-test/SubmissionFilesCtrl.test.js b/frontend/tests/controllers-test/SubmissionFilesCtrl.test.js deleted file mode 100644 index 8637770536..0000000000 --- a/frontend/tests/controllers-test/SubmissionFilesCtrl.test.js +++ /dev/null @@ -1,74 +0,0 @@ -'use strict'; - -describe('Unit tests for submission files controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $state, $stateParams, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_, _$state_, _$stateParams_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state =_$state_; - $stateParams = _$stateParams_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('SubmissionFilesCtrl', {$scope: $scope}); - }; - vm = $controller('SubmissionFilesCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - utilities.storeData('userKey', 'encrypted key'); - spyOn(utilities, 'getData'); - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(vm.bucket).toEqual($stateParams.bucket); - expect(vm.key).toEqual($stateParams.key); - }); - }); - - describe('Unit tests for backend calls on load of controller', function () { - var success, status; - var errorResponse = { - error: 'error' - }; - var successResponse = { - signed_url: "http://example.com" - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: status - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('404 error on file submission `jobs/submission_files/?bucket=&key=`', function () { - success = true; - status = 404; - vm = createController(); - expect($state.go).toHaveBeenCalledWith('error-404'); - }); - - it('backend error `jobs/submission_files/?bucket=&key=`', function () { - success = false; - vm = createController(); - expect(vm.data).toEqual(errorResponse); - expect($rootScope.notify).toHaveBeenCalledWith('error', errorResponse.error); - }); - }); -}); diff --git a/frontend/tests/controllers-test/analyticsCtrl.test.js b/frontend/tests/controllers-test/analyticsCtrl.test.js deleted file mode 100755 index b158b59870..0000000000 --- a/frontend/tests/controllers-test/analyticsCtrl.test.js +++ /dev/null @@ -1,314 +0,0 @@ -'use strict'; - -describe('Unit tests for analytics controller', function() { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $state, $scope, utilities, vm, userKey; - - beforeEach(inject(function(_$controller_, _$rootScope_, _$state_, _utilities_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('AnalyticsCtrl', { $scope: $scope }); - }; - vm = $controller('AnalyticsCtrl', { $scope: $scope }); - })); - - describe('Global Variables', function() { - it('has default values', function() { - expect(vm.hostTeam).toEqual({}); - expect(vm.teamId).toEqual(null); - expect(vm.currentTeamName).toEqual(null); - expect(vm.challengeListCount).toEqual(0); - expect(vm.challengeList).toEqual({}); - expect(vm.challengeAnalysisDetail).toEqual({}); - expect(vm.isTeamSelected).toEqual(false); - expect(vm.challengeId).toEqual(null); - expect(vm.currentChallengeDetails).toEqual({}); - expect(vm.currentPhase).toEqual([]); - expect(vm.totalSubmission).toEqual({}); - expect(vm.totalParticipatedTeams).toEqual({}); - expect(vm.lastSubmissionTime).toEqual({}); - - utilities.storeData('userKey', 'encrypted'); - userKey = utilities.getData('userKey'); - }) - }); - - describe('Unit tests for global backend call `hosts/challenge_host_team/`', function () { - var success; - var success_response = { - results: { - team_name: "Team name", - team_url: "Team url", - created_by: "user" - } - }; - var error_response = 'error'; - - beforeEach(function() { - spyOn($state, 'go'); - spyOn(window, 'alert'); - spyOn(utilities, 'resetStorage'); - - utilities.sendRequest = function(parameters) { - if (success) { - parameters.callback.onSuccess({ - data: success_response, - status: 200 - }); - } else { - parameters.callback.onError({ - data: error_response, - status: status - }); - } - }; - }); - - it('get the host team details', function () { - success = true; - vm = createController(); - expect(vm.hostTeam).toEqual(success_response.results); - }); - - it('403 backend error', function () { - success = false; - status = 403; - vm = createController(); - expect(vm.error).toEqual(error_response); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - }); - - it('401 backend error', function () { - success = false; - status = 401; - vm = createController(); - expect(window.alert).toHaveBeenCalledWith("Timeout, Please login again to continue!"); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.isAuth).toBeFalsy(); - }); - }); - - describe('Unit tests for total challenges hosted `challenges/challenge?mode=host`', function() { - beforeEach(function() { - utilities.sendRequest = function(parameters) { - var data, status; - var success = 'success'; - var error = 'error'; - - if (parameters.token != userKey) { - data = error; - status = 403; - } - else { - data = success; - status = 200; - } - - return { - 'data': data, - 'status': status - } - }; - }); - - it('successfully listed the hosted challenges', function() { - var parameters = { - token: userKey - } - var response = utilities.sendRequest(parameters); - expect(response.status).toEqual(200); - expect(response.data).toEqual('success'); - }); - - it('permission denied page', function() { - var parameters = { - token: 'nullKey' - } - var response = utilities.sendRequest(parameters); - expect(response.status).toEqual(403); - expect(response.data).toEqual('error'); - }); - }); - - describe('Unit tests for `showChallengeAnalysis` function', function() { - var phaseDetailsSuccess, currentPhaseDetailsSuccess, teamsCountSuccess; - var successResponse, participantTeamCount = 10; - var status; - - beforeEach(function() { - spyOn(window, 'alert'); - spyOn(utilities, 'resetStorage'); - spyOn($state, 'go'); - - utilities.sendRequest = function(parameters) { - if ((phaseDetailsSuccess && parameters.url === 'challenges/challenge/2/challenge_phase') || - (teamsCountSuccess && parameters.url === 'analytics/challenge/2/team/count') || - (currentPhaseDetailsSuccess && parameters.url === 'analytics/challenge/2/challenge_phase/4/analytics')) { - parameters.callback.onSuccess({ - status: 200, - data: successResponse - }); - } else { - parameters.callback.onError({ - status: status, - data: 'error' - }); - } - }; - }); - - it('when challenge Id is null', function() { - phaseDetailsSuccess = null; - teamsCountSuccess = null; - currentPhaseDetailsSuccess = null; - vm.challengeId = null; - vm.showChallengeAnalysis(); - expect(vm.isTeamSelected).toEqual(false); - }); - - it('on success `challenges/challenge//challenge_phase`', function() { - phaseDetailsSuccess = true; - teamsCountSuccess = null; - currentPhaseDetailsSuccess = null; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(vm.isTeamSelected).toEqual(true); - }); - - it('backend error with status 403 `challenges/challenge//challenge_phase`', function() { - phaseDetailsSuccess = false; - teamsCountSuccess = null; - currentPhaseDetailsSuccess = null; - status = 403; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(vm.error).toEqual('error'); - }); - - it('backend error with status 401 `challenges/challenge//challenge_phase`', function() { - phaseDetailsSuccess = false; - teamsCountSuccess = null; - currentPhaseDetailsSuccess = null; - status = 401; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(window.alert).toHaveBeenCalledWith('Timeout, Please login again to continue!'); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.isAuth).toBeFalsy(); - }); - - it('on success `analytics/challenge//team/count`', function() { - phaseDetailsSuccess = true; - teamsCountSuccess = true; - currentPhaseDetailsSuccess = null; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(vm.isTeamSelected).toEqual(true); - expect(vm.totalChallengeTeams).toEqual(participantTeamCount); - }); - - it('backend error with status 403 `analytics/challenge//team/count`', function() { - phaseDetailsSuccess = true; - teamsCountSuccess = false; - currentPhaseDetailsSuccess = null; - status = 403; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(vm.error).toEqual('error'); - }); - - it('backend error with status 401 `analytics/challenge//team/count`', function() { - phaseDetailsSuccess = true; - teamsCountSuccess = false; - currentPhaseDetailsSuccess = null; - status = 401; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - } - vm.showChallengeAnalysis(); - expect(window.alert).toHaveBeenCalledWith('Timeout, Please login again to continue!'); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.isAuth).toBeFalsy(); - }); - - it('backend error `analytics/challenge//challenge_phase//analytics`', - function() { - phaseDetailsSuccess = true; - teamsCountSuccess = true; - currentPhaseDetailsSuccess = false; - status = 401; - vm.challengeId = 2; - successResponse = { - 'participant_team_count': participantTeamCount, - 'results': [ - { - id: 4, - name: "test-dev", - description: "this is test-dev description" - } - ] - } - vm.showChallengeAnalysis(); - expect(vm.currentPhase).toEqual(successResponse.results); - expect(window.alert).toHaveBeenCalledWith('Timeout, Please login again to continue!'); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.isAuth).toBeFalsy(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/authCtrl.test.js b/frontend/tests/controllers-test/authCtrl.test.js deleted file mode 100755 index 9479a32904..0000000000 --- a/frontend/tests/controllers-test/authCtrl.test.js +++ /dev/null @@ -1,390 +0,0 @@ -'use strict'; - -describe('Unit tests for auth controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, $rootScope, $state, $window, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _$state_, _utilities_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - vm = $controller('AuthCtrl', {$scope: $scope}); - })); - - describe('Global Variables', function () { - it('has default values', function () { - expect(vm.isRem).toEqual(false); - expect(vm.isAuth).toEqual(false); - expect(vm.isMail).toEqual(true); - expect(vm.userMail).toEqual(''); - expect(vm.regUser).toEqual({}); - expect(vm.getUser).toEqual({}); - expect(vm.color).toEqual({}); - expect(vm.isResetPassword).toEqual(false); - expect(vm.isFormError).toEqual(false); - expect(vm.FormError).toEqual({}); - expect(vm.redirectUrl).toEqual({}); - expect(vm.isLoader).toEqual(false); - expect(vm.isPassConf).toEqual(true); - expect(vm.wrnMsg).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.confirmMsg).toEqual(''); - expect($rootScope.loaderTitle).toEqual(''); - }); - }); - - describe('Validate helper functions', function () { - it('startLoader', function () { - var message = 'Start Loader'; - vm.startLoader(message); - expect($rootScope.isLoader).toEqual(true); - expect($rootScope.loaderTitle).toEqual(message); - }); - - it('stopLoader', function () { - var message = ''; - vm.stopLoader(); - expect($rootScope.isLoader).toEqual(false); - expect($rootScope.loaderTitle).toEqual(message); - }); - - it('resetForm', function () { - vm.resetForm(); - expect(vm.regUser).toEqual({}); - expect(vm.getUser).toEqual({}); - expect(vm.wrnMsg).toEqual({}); - expect(vm.isFormError).toEqual(false); - expect(vm.isMail).toEqual(true); - }); - }); - - describe('Unit tests for userSignUp function `auth/registration/`', function () { - var errors = { - username: 'username error', - email: 'email error', - password1: 'password error', - password2: 'password confirm error' - }; - - beforeEach(function () { - vm.regUser = { - username: 'ford', - email: 'fordprefect@hitchhikers.guide', - password1: 'dontpanic', - password2: 'dontpanic' - }; - - utilities.sendRequest = function (parameters) { - var data, status; - var emailRegex = /\S+@\S+\.\S+/; - var usernameRegex = /^[a-zA-Z0-9]{3,30}$/; - var passwordRegex = /^[a-zA-Z0-9!@#$%^&*_]{8,30}$/; - var isUsernameValid = usernameRegex.test(parameters.username); - var isEmailValid = emailRegex.test(parameters.email); - var isPassword1Valid = passwordRegex.test(parameters.password1); - var isPassword2Valid = passwordRegex.test(parameters.password2); - if (!isUsernameValid || !isEmailValid || !isPassword1Valid || !isPassword2Valid) { - if (!isUsernameValid) { - data = errors.username; - } else if (!isEmailValid) { - data = errors.email; - } else if (!isPassword1Valid || !isPassword2Valid) { - data = errors.password1; - } - status = 400; - } else if (parameters.password1 != parameters.password2) { - data = errors.password2; - status = 400; - } else { - data = "success"; - status = 201; - } - return { - "data": data, - "status": parseInt(status) - }; - }; - }); - - it('correct sign up details', function () { - vm.userSignUp(true); - var response = utilities.sendRequest(vm.regUser); - expect(response.status).toEqual(201); - expect(response.data).toEqual("success"); - }); - - it('missing username', function () { - vm.regUser.username = ''; - var response = utilities.sendRequest(vm.regUser); - expect(response.status).toEqual(400); - expect(response.data).toEqual(errors.username); - }); - - it('missing email', function () { - vm.regUser.email = ''; - var response = utilities.sendRequest(vm.regUser); - expect(response.status).toEqual(400); - expect(response.data).toEqual(errors.email); - }); - - it('missing password', function () { - vm.regUser.password1 = ''; - var response = utilities.sendRequest(vm.regUser); - expect(response.status).toEqual(400); - expect(response.data).toEqual(errors.password1); - }); - - it('mismatch password', function () { - vm.regUser.password2 = 'failword'; - var response = utilities.sendRequest(vm.regUser); - expect(response.status).toEqual(400); - expect(response.data).toEqual(errors.password2); - }); - - it('invalid details', function () { - vm.userSignUp(false); - expect($rootScope.isLoader).toEqual(false); - }); - }); - - describe('Unit tests for userLogin function `auth/login/`', function () { - var nonFieldErrors, token; - - beforeEach(function () { - nonFieldErrors = false; - - vm.getUser = { - username: 'ford', - password: 'dontpanic', - }; - - utilities.sendRequest = function (parameters) { - var data, status, userKey; - var error = 'error'; - var success = "success"; - var usernameRegex = /^[a-zA-Z0-9]+$/; - var passwordRegex = /^[a-zA-Z0-9!@#$%^&*_]{8,30}$/; - var isUsernameValid = usernameRegex.test(parameters.username); - var isPasswordValid = passwordRegex.test(parameters.password); - if (!isUsernameValid || !isPasswordValid) { - data = error; - status = 400; - userKey = "notFound"; - } else { - data = success; - status = 200; - userKey = "encrypted"; - } - return { - "data": data, - "status": parseInt(status), - "userKey": userKey - }; - }; - }); - - it('correct login details', function () { - vm.userLogin(true); - var token = "encrypted"; - var response = utilities.sendRequest(vm.getUser); - expect(response.status).toEqual(200); - expect(response.data).toEqual("success"); - expect(angular.equals(response.userKey, token)).toEqual(true); - }); - - it('backend error', function () { - vm.getUser.username = ''; - var token = "notFound"; - var response = utilities.sendRequest(vm.getUser); - expect(response.status).toEqual(400); - expect(response.data).toEqual("error"); - expect(angular.equals(response.userKey, token)).toEqual(true); - }); - - it('invalid details', function () { - vm.userLogin(false); - expect($rootScope.isLoader).toEqual(false); - }); - }); - - describe('Unit tests for checkPasswordStrength', function () { - - var passWordsTestsList = [ - { - password: 'password', - passwordValidator: 1, - expectedStrength: "Weak", - expectedColor: "red" - }, - { - password: 'password123', - passwordValidator: 2, - expectedStrength: "Average", - expectedColor: "darkorange" - }, - { - password: 'pWord1', - passwordValidator: 3, - expectedStrength: "Good", - expectedColor: "green" - }, - { - password: 'passwordLength123', - passwordValidator: 4, - expectedStrength: "Strong", - expectedColor: "darkgreen" - }, - { - password: '#passwordLength123', - passwordValidator: 5, - expectedStrength: "Very Strong", - expectedColor: "darkgreen" - }, - ]; - - - beforeEach(function () { - utilities.passwordStrength = function (password) { - //Regular Expressions. - var regex = new Array(); - regex.push("[A-Z]", "[a-z]", "[0-9]", "[$$!%*#?&]"); - - var passed = 0; - //Validate for each Regular Expression. - for (var i = 0; i < regex.length; i++) { - if (new RegExp(regex[i]).test(password)) { - passed++; - } - } - //Validate for length of Password. - if (passed > 2 && password.length > 8) { - passed++; - } - - for (var i = 0; i < passWordsTestsList.length; i++) { - if (passWordsTestsList[i].passwordValidator == passed) { - return [passWordsTestsList[i].expectedStrength, passWordsTestsList[i].expectedColor]; - } - } - }; - }); - - passWordsTestsList.forEach(passWord => { - it(passWord.password + ' should have a strength & color of : ' + passWord.expectedStrength + ':' + passWord.expectedColor, () => { - var passwordStrength = utilities.passwordStrength(passWord.password); - expect(passwordStrength[0]).toEqual(passWord.expectedStrength); - expect(passwordStrength[1]).toEqual(passWord.expectedColor); - }); - }); - }); - - describe('Unit tests for verifyEmail function `auth/registration/account-confirm-email//`', function () { - var verified; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (verified) { - parameters.callback.onSuccess(); - } else { - parameters.callback.onError(); - } - }; - }); - - it('correct email', function () { - verified = true; - vm.verifyEmail(); - expect(vm.email_verify_msg).toEqual('Your email has been verified successfully'); - }); - - it('incorrect email', function () { - verified = false; - vm.verifyEmail(); - expect(vm.email_verify_msg).toEqual('Something went wrong!! Please try again.'); - }); - }); - - describe('Unit tests for resetPassword function `auth/password/reset/`', function () { - var success; - var inactiveResponse = 'Account is not active. Please contact the administrator.'; - var mailSent = 'mail sent'; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: { - success: mailSent - } - }); - } else { - parameters.callback.onError({status: 400, data: {details: inactiveResponse}}); - } - }; - }); - - it('sent successfully', function () { - success = true; - vm.resetPassword(true); - expect(vm.isFormError).toEqual(false); - expect(vm.deliveredMsg).toEqual(mailSent); - }); - - it('backend error', function () { - success = false; - vm.resetPassword(true); - expect(vm.isFormError).toEqual(true); - expect(vm.FormError).toEqual(inactiveResponse); - }); - - it('invalid details', function () { - vm.resetPassword(false); - expect($rootScope.isLoader).toEqual(false); - }); - }); - - describe('Unit tests for resetPasswordConfirm function `auth/password/reset/confirm/`', function () { - var success; - - var resetConfirm = 'password reset confirmed'; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: { - detail: resetConfirm - } - }); - } else { - parameters.callback.onError(); - } - }; - }); - - it('successful reset', function () { - $state.params.user_id = 42; - $state.params.reset_token = 'secure'; - success = true; - vm.resetPasswordConfirm(true); - expect(vm.isResetPassword).toEqual(true); - expect(vm.deliveredMsg).toEqual(resetConfirm); - }); - - it('backend error', function () { - $state.params.user_id = 42; - success = false; - vm.resetPasswordConfirm(true); - expect(vm.isFormError).toEqual(true); - }); - - it('invalid details', function () { - vm.resetPasswordConfirm(false); - expect($rootScope.isLoader).toEqual(false); - }); - }); -}); diff --git a/frontend/tests/controllers-test/challengeCreate.test.js b/frontend/tests/controllers-test/challengeCreate.test.js deleted file mode 100755 index 338a08609c..0000000000 --- a/frontend/tests/controllers-test/challengeCreate.test.js +++ /dev/null @@ -1,81 +0,0 @@ -'use strict'; - -describe('Unit tests for challenge create controller', function() { - beforeEach(angular.mock.module('evalai')); - - var $controller, $rootScope, $state, $scope, loaderService, utilities, vm; - - beforeEach(inject(function(_$controller_, _$rootScope_, _$state_, _utilities_, _loaderService_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - loaderService = _loaderService_; - - $scope = $rootScope.$new(); - vm = $controller('ChallengeCreateCtrl', { $scope: $scope }); - })); - - describe('Global variables', function() { - it('has default values', function() { - expect(vm.wrnMsg).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.isFormError).toEqual(false); - expect(vm.isSyntaxErrorInYamlFile).toEqual(false); - expect(vm.input_file).toEqual(null); - expect(vm.formError).toEqual({}); - expect(vm.syntaxErrorInYamlFile).toEqual({}); - expect(vm.isExistLoader).toEqual(false); - expect(vm.loaderTitle).toEqual(''); - expect(vm.startLoader).toEqual(loaderService.startLoader); - expect(vm.stopLoader).toEqual(loaderService.stopLoader); - }); - }); - - describe('Unit tests for challengeCreate function', function() { - var success; - - beforeEach(function() { - utilities.sendRequest = function(parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 201, - data: 'success' - }); - } else { - parameters.callback.onError({ - data: { - error: 'error', - } - }); - } - }; - }); - - it('when host team not selected `vm.hostTeamId=null`', function() { - vm.challengeCreate(); - expect(vm.infoMsg).toEqual("Please select a challenge host team!"); - }); - - it('success of `challenges/challenge/challenge_host_team//zip_upload/`', function() { - success = true; - vm.hostTeamId = 1; - vm.input_file = 'challenge_conf.zip' - spyOn($state, 'go'); - vm.challengeCreate(); - expect(vm.isExistLoader).toEqual(true); - expect(vm.loaderTitle).toEqual('create challenge'); - expect($state.go).toHaveBeenCalledWith('home'); - }); - - it('error of `challenges/challenge/challenge_host_team//zip_upload/`', function() { - success = false; - vm.hostTeamId = 1; - vm.input_file = 'challenge_conf.zip' - vm.challengeCreate(); - expect(vm.isSyntaxErrorInYamlFile).toEqual(true); - expect(vm.syntaxErrorInYamlFile).toEqual('error'); - expect(vm.isExistLoader).toEqual(false); - }); - }); -}); diff --git a/frontend/tests/controllers-test/challengeCtrl.test.js b/frontend/tests/controllers-test/challengeCtrl.test.js deleted file mode 100644 index 1ebfa38326..0000000000 --- a/frontend/tests/controllers-test/challengeCtrl.test.js +++ /dev/null @@ -1,2717 +0,0 @@ -'use strict'; - -describe('Unit tests for challenge controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $injector, $rootScope, $state, $scope, utilities, $http, $interval, $mdDialog, moment, vm; - - beforeEach(inject(function (_$controller_, _$injector_, _$rootScope_, _$state_, _utilities_, _$http_, _$interval_, _$mdDialog_, _moment_) { - $controller = _$controller_; - $injector = _$injector_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - $http = _$http_; - $interval = _$interval_; - $mdDialog = _$mdDialog_; - moment = _moment_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ChallengeCtrl', {$scope: $scope}); - }; - vm = $controller('ChallengeCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - expect(vm.phaseId).toEqual(null); - expect(vm.input_file).toEqual(null); - expect(vm.methodName).toEqual(""); - expect(vm.methodDesc).toEqual(""); - expect(vm.projectUrl).toEqual(""); - expect(vm.publicationUrl).toEqual(""); - expect(vm.page).toEqual({}); - expect(vm.isParticipated).toEqual(false); - expect(vm.isActive).toEqual(false); - expect(vm.phaseRemainingSubmissions).toEqual({}); - expect(vm.phaseRemainingSubmissionsFlags).toEqual({}); - expect(vm.phaseRemainingSubmissionsCountdown).toEqual({}); - expect(vm.subErrors).toEqual({}); - expect(vm.isExistLoader).toEqual(false); - expect(vm.loaderTitle).toEqual(''); - expect(vm.termsAndConditions).toEqual(false); - expect(vm.lastKey).toEqual(null); - expect(vm.sortColumn).toEqual('rank'); - expect(vm.columnIndexSort).toEqual(0); - expect(vm.reverseSort).toEqual(false); - expect(vm.poller).toEqual(null); - expect(vm.isResult).toEqual(false); - expect(vm.initial_ranking).toEqual({}); - expect(vm.submissionVisibility).toEqual({}); - expect(vm.baselineStatus).toEqual({}); - expect(vm.team).toEqual({}); - expect(vm.isPublished).toEqual(false); - - utilities.storeData('userKey', 'encrypted key'); - }); - }); - - describe('Unit tests for all the global backend calls', function () { - var challengeSuccess, successResponse, errorResponse, status, challengePhaseSuccess; - var challengePhaseSplitSuccess, participantTeamChallengeSuccess, participantTeamSuccess, selectExistTeamSuccess; - var challengeSuccessResponse, participantTeamSuccessResponse, participantTeamChallengeSuccessResponse - var challengePhaseSplit = false; - var team_list = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn(utilities, 'deleteData'); - - utilities.sendRequest = function (parameters) { - // set successResponse according to the requested url - if (participantTeamSuccess == true && parameters.url == 'participants/participant_team') { - successResponse = participantTeamSuccessResponse; - } else if (challengeSuccess == true && parameters.url == 'challenges/challenge/undefined/') { - successResponse = challengeSuccessResponse; - } else if (participantTeamChallengeSuccess == true && parameters.url == 'participants/participant_teams/challenges/undefined/user') { - successResponse = participantTeamChallengeSuccessResponse; - } - - if ((challengePhaseSuccess == true && parameters.url == 'challenges/challenge/undefined/challenge_phase') || - (challengeSuccess == true && parameters.url == 'challenges/challenge/undefined/') || - (challengePhaseSplitSuccess == true && parameters.url == 'challenges/undefined/challenge_phase_split') || - (participantTeamChallengeSuccess == true && parameters.url == 'participants/participant_teams/challenges/undefined/user') || - (participantTeamSuccess == true && parameters.url == 'participants/participant_team') || - (selectExistTeamSuccess == true && parameters.url == 'challenges/challenge/undefined/participant_team/null')) { - - parameters.callback.onSuccess({ - status: 200, - data: successResponse - }); - } else if ((challengePhaseSuccess == false && parameters.url == 'challenges/challenge/undefined/challenge_phase') || - (challengeSuccess == false && parameters.url == 'challenges/challenge/undefined/') || - (challengePhaseSplitSuccess == false && parameters.url == 'challenges/undefined/challenge_phase_split') || - (participantTeamChallengeSuccess == false && parameters.url == 'participants/participant_teams/challenges/undefined/user') || - (participantTeamSuccess == false && parameters.url == 'participants/participant_team') || - (selectExistTeamSuccess == false && parameters.url == 'challenges/challenge/undefined/participant_team/null')){ - - parameters.callback.onError({ - data: errorResponse, - status: status - }); - } - }; - }); - - it('get the details of the particular challenge \ - `challenges/challenge//`', function () { - challengeSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - vm = createController(); - expect(vm.page).toEqual(challengeSuccessResponse); - expect(vm.isActive).toEqual(challengeSuccessResponse.is_active); - expect(vm.isPublished).toEqual(challengeSuccessResponse.published); - expect(vm.isForumEnabled).toEqual(challengeSuccessResponse.enable_forum); - expect(vm.forumURL).toEqual(challengeSuccessResponse.forum_url); - expect(vm.cliVersion).toEqual(challengeSuccessResponse.cli_version); - }); - - it('when challenge logo image is null', function () { - challengeSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: null, - }; - vm = createController(); - expect(vm.page.image).toEqual("dist/images/logo.png"); - }); - - it('get details of challenges corresponding to participant teams of that user \ - `participants/participant_teams/challenges//user`', function () { - challengeSuccess = true; - participantTeamChallengeSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - utilities.storeData('userKey', 'encrypted key'); - - // get challenge details response - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - - // get details of challenges corresponding to participant teams response - participantTeamChallengeSuccessResponse = { - challenge_participant_team_list: { - first_object: { - challenge: { - id: undefined, - title: "Challenge title", - description: "Challenge description" - }, - } - }, - datetime_now: "timezone.now", - is_challenge_host: true, - }; - - vm = createController(); - expect(vm.currentDate).toEqual(participantTeamChallengeSuccessResponse.datetime_now); - expect(vm.isParticipated).toBeTruthy(); - expect(vm.isChallengeHost).toBeTruthy(); - }); - - team_list.forEach(response => { - it('pagination next is ' + response.next + ' and previous is ' + response.previous + '\ - `participants/participant_team`', function () {; - challengeSuccess = true; - participantTeamChallengeSuccess = true; - participantTeamSuccess = true; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - - // get challenge details response - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - - // get details of challenges corresponding to participant teams response - participantTeamChallengeSuccessResponse = { - challenge_participant_team_list: { - first_object: { - challenge: { - id: 3, - title: "Challenge title", - description: "Challenge description" - }, - } - }, - datetime_now: "timezone.now", - is_challenge_host: true, - }; - - // participant team details response - participantTeamSuccessResponse = response; - participantTeamSuccessResponse.results = [ - { - is_public: false, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - }, - ]; - utilities.storeData('userKey', 'encrypted key'); - - vm = createController(); - expect(vm.existTeam).toEqual(participantTeamSuccessResponse); - expect(vm.showPagination).toBeTruthy(); - expect(vm.paginationMsg).toEqual(''); - expect(utilities.deleteData).toHaveBeenCalledWith('emailError'); - - if (participantTeamSuccessResponse.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(participantTeamSuccessResponse.next.split('page=')[1] - 1); - } - - if (participantTeamSuccessResponse.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - if (participantTeamSuccessResponse.next !== null) { - expect(vm.currentPage).toEqual(participantTeamSuccessResponse.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - }); - }); - - it('success of selectExistTeam function \ - `challenges/challenge//participant_team/`', function () { - challengeSuccess = true; - participantTeamChallengeSuccess = true; - participantTeamSuccess = true; - selectExistTeamSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - - // get challenge details response - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - - // get details of challenges corresponding to participant teams response - participantTeamChallengeSuccessResponse = { - challenge_participant_team_list: { - first_object: { - challenge: null - } - }, - datetime_now: "timezone.now", - is_challenge_host: true, - }; - - // get participant team details response - participantTeamSuccessResponse = { - next: 'page=4', - previous: 'page=2', - results: { - is_public: false, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - } - }; - utilities.storeData('userKey', 'encrypted key'); - - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($state, 'go'); - spyOn(angular, 'element'); - vm.selectExistTeam(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.exist-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect(vm.isParticipated).toBeTruthy(); - expect($state.go).toHaveBeenCalledWith('web.challenge-main.challenge-page.submission'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('404 backend error of selectExistTeam function \ - `challenges/challenge//participant_team/`', function () { - challengeSuccess = true; - participantTeamChallengeSuccess = true; - participantTeamSuccess = true; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - - // get challenge details response - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - - // get details of challenges corresponding to participant teams response - participantTeamChallengeSuccessResponse = { - challenge_participant_team_list: { - first_object: { - challenge: null - } - }, - datetime_now: "timezone.now", - is_challenge_host: true, - }; - - // get participant team details response - participantTeamSuccessResponse = { - next: 'page=4', - previous: 'page=2', - results: { - is_public: false, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - } - }; - utilities.storeData('userKey', 'encrypted key'); - - status = !404 - errorResponse = { - error: 'error' - }; - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - spyOn(angular, 'element'); - - selectExistTeamSuccess = false; - vm.selectExistTeam(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.exist-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('to load data with pagination', function () { - challengeSuccess = true; - participantTeamChallengeSuccess = true; - participantTeamSuccess = true; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - - // get challenge details response - challengeSuccessResponse = { - is_active: true, - published: false, - enable_forum: true, - forum_url: "http://example.com", - cli_version: "evalai-cli version", - image: 'logo.png', - }; - - // get details of challenges corresponding to participant teams response - participantTeamChallengeSuccessResponse = { - challenge_participant_team_list: { - first_object: { - challenge: { - id: 1, - title: "Challenge title", - description: "Challenge description" - }, - } - }, - datetime_now: "timezone.now", - is_challenge_host: true, - }; - - // get participant team details response - participantTeamSuccessResponse = { - next: 'page=4', - previous: 'page=2', - results: { - is_public: false, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - } - }; - utilities.storeData('userKey', 'encrypted key'); - - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn($http, 'get').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - var url = 'participants/participant_team/page=2'; - vm.load(url); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - var headers = { - 'Authorization': "Token " + utilities.getData('userKey') - }; - expect($http.get).toHaveBeenCalledWith(url, {headers: headers}); - }); - - it('backend error of the particular challenge `challenges/challenge//', function () { - challengeSuccess = false; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - - status = 404; - errorResponse = { - error: 'email error' - }; - spyOn($state, 'go'); - spyOn($rootScope, 'notify'); - spyOn(utilities, 'hideLoader'); - vm = createController(); - expect($rootScope.notify).toHaveBeenCalledWith('error', errorResponse.error); - expect($state.go).toHaveBeenCalledWith('web.dashboard'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get details of the particular challenge phase `challenges/challenge//challenge_phase`', function () { - challengeSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - challengePhaseSuccess = true; - challengePhaseSplitSuccess = null; - - // get challenge phase details response - successResponse = { - results: [ - { - is_public: false, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - }, - ], - }; - spyOn(utilities, 'hideLoader'); - vm = createController(); - expect(vm.phases).toEqual(successResponse); - var timezone = moment.tz.guess(); - for (var i = 0; i < successResponse.count; i++) { - expect(successResponse.results[i].is_public).toBeFalsy(); - expect(vm.phases.results[i].showPrivate).toBeTruthy(); - } - - for(var i = 0; i < successResponse.results.length; i++){ - var offset = new Date(successResponse.results[i].start_date).getTimezoneOffset(); - expect(vm.phases.results[i].time_zone).toEqual(moment.tz.zone(timezone).abbr(offset)); - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('backend error of particular challenge phase `challenges/challenge//challenge_phase`', function () { - challengeSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - challengePhaseSuccess = false; - challengePhaseSplitSuccess = null; - - status = 404; - errorResponse = { - detail: 'error' - }; - spyOn(utilities, 'storeData'); - spyOn($state, 'go'); - spyOn(utilities, 'hideLoader'); - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get details of the particular challenge phase split `challenges//challenge_phase_split`', function () { - challengeSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = true; - - challengePhaseSplit = true; - // get challenge phase split details response - successResponse = [ - { - visibility: 2, - host: 1 - } - ]; - var challengePhaseVisibility = { - owner_and_host: 1, - host: 2, - public: 3, - }; - spyOn(utilities, 'hideLoader'); - vm.isParticipated = true; - vm = createController(); - expect(vm.phaseSplits).toEqual(successResponse); - for(var i = 0; i < successResponse.length; i++) { - if (successResponse[i].visibility != challengePhaseVisibility.public) { - expect(vm.phaseSplits[i].showPrivate).toBeTruthy(); - } - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('backend error of particular challenge phase split `challenges//challenge_phase_split`', function () { - challengeSuccess = null; - participantTeamChallengeSuccess = null; - participantTeamSuccess = null; - selectExistTeamSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = false; - - status = 404; - errorResponse = { - detail: 'error' - }; - spyOn(utilities, 'storeData'); - spyOn($state, 'go'); - spyOn(utilities, 'hideLoader'); - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for displayDockerSubmissionInstructions function \ - `jobs//remaining_submissions`', function () { - var success, successResponse; - var errorResponse = { - detail: 'Email Error' - }; - - beforeEach(function () { - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'storeData'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('when submission limit exceeded', function () { - successResponse = { - phases: [ - { - id: 1, - limits: { - submission_limit_exceeded: true, - remaining_submissions_today_count: 12, - remaining_time: 12/12/12, - } - }, - ] - }; - success = true; - vm.eligible_to_submit = true; - vm.displayDockerSubmissionInstructions(true, true); - expect(vm.phaseRemainingSubmissions).toEqual(successResponse); - var details = vm.phaseRemainingSubmissions.phases; - for (var i=0; i < details.length; i++) { - expect(vm.phaseRemainingSubmissionsFlags[details[i].id]).toEqual('maxExceeded'); - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('when todays remaining submission count greater than 0', function () { - successResponse = { - phases: [ - { - id: 1, - limits: { - submission_limit_exceeded: false, - remaining_submissions_today_count: 12, - remaining_time: 12/12/12, - } - }, - ] - }; - success = true; - vm.eligible_to_submit = true; - vm.displayDockerSubmissionInstructions(true, true); - expect(vm.phaseRemainingSubmissions).toEqual(successResponse); - var details = vm.phaseRemainingSubmissions.phases; - for (var i=0; i < details.length; i++) { - expect(vm.phaseRemainingSubmissionsFlags[details[i].id]).toEqual('showSubmissionNumbers'); - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('when submission limit exceeded & todays remaining submission count less than 0', function () { - successResponse = { - phases: [ - { - id: 1, - limits: { - submission_limit_exceeded: false, - remaining_submissions_today_count: 0, - remaining_time: 12/12/12, - } - }, - ] - }; - success = true; - vm.eligible_to_submit = true; - vm.displayDockerSubmissionInstructions(true, true); - expect(vm.phaseRemainingSubmissions).toEqual(successResponse); - var details = vm.phaseRemainingSubmissions.phases; - for (var i=0; i < details.length; i++) { - expect(vm.eachPhase).toEqual(details[i]); - expect(vm.phaseRemainingSubmissionsFlags[details[i].id]).toEqual('showClock'); - - // Unit tests for `countDownTimer` function - expect(vm.remainingTime).toEqual(vm.eachPhase.limits.remaining_time); - expect(vm.days).toEqual(Math.floor(vm.remainingTime / 24 / 60 / 60)); - expect(vm.hoursLeft).toEqual(Math.floor((vm.remainingTime) - (vm.days * 86400))); - expect(vm.hours).toEqual(Math.floor(vm.hoursLeft / 3600)); - expect(vm.minutesLeft).toEqual(Math.floor((vm.hoursLeft) - (vm.hours * 3600))); - expect(vm.minutes).toEqual(Math.floor(vm.minutesLeft / 60)); - if (vm.remainingTime === 0) { - expect(vm.phaseRemainingSubmissionsFlags[vm.eachPhase.id]).toEqual('showSubmissionNumbers'); - } - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('backend error', function () { - success = false; - vm.eligible_to_submit = true; - vm.displayDockerSubmissionInstructions(true, true); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - }); - }); - - describe('Unit tests for makeSubmission function \ - `jobs/challenge//challenge_phase//submission/`', function () { - var success, status; - var errorResponse = { - error: 'error', - }; - var successResponse = { - success: 'success', - }; - - beforeEach(function() { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200, - data: successResponse - }); - } else { - parameters.callback.onError({ - status: status, - data: errorResponse - }); - } - }; - }); - - it('succesfully submission', function () { - success = true; - vm.isParticipated = true; - vm.eligible_to_submit = true; - vm.makeSubmission(); - expect(vm.startLoader).toHaveBeenCalledWith('Making Submission'); - expect($rootScope.notify).toHaveBeenCalledWith('success', 'Your submission has been recorded succesfully!'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('404 backend error', function () { - success = false; - status = 404; - vm.isParticipated = true; - vm.isSubmissionUsingUrl = false; - vm.eligible_to_submit = true; - vm.makeSubmission(); - vm.fileVal = 'submission.zip'; - expect(vm.phaseId).toEqual(null); - expect(vm.methodName).toEqual(null); - expect(vm.methodDesc).toEqual(null); - expect(vm.projectUrl).toEqual(null); - expect(vm.publicationUrl).toEqual(null); - expect(vm.subErrors.msg).toEqual('Please select phase!'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('other backend error', function () { - success = false; - status = 403; - vm.isParticipated = true; - vm.isSubmissionUsingUrl = false; - vm.eligible_to_submit = true; - vm.makeSubmission('submission.zip'); - expect(vm.phaseId).toEqual(null); - expect(vm.methodName).toEqual(null); - expect(vm.methodDesc).toEqual(null); - expect(vm.projectUrl).toEqual(null); - expect(vm.publicationUrl).toEqual(null); - expect(vm.subErrors.msg).toEqual(errorResponse.error); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for sortFunction function', function () { - it('sort column by is known', function () { - var return_value = vm.sortFunction({}); - expect(return_value).not.toEqual(0); - }); - - it('sort column by is not known', function () { - vm.sortColumn = 'notKnown'; - var return_value = vm.sortFunction({}); - expect(return_value).toEqual(0); - }); - }); - - describe('Unit tests for sortLeaderboard function', function () { - it('column index is null and passed `column` not same with the current `sortColumn`', function () { - vm.sortLeaderboard(vm, 'number', null); - expect(vm.reverseSort).toEqual(false); - }); - - it('column index is null and passed `column` same with the current `sortColumn`', function () { - vm.sortLeaderboard(vm, 'rank', null); - expect(vm.reverseSort).toEqual(true); - }); - - it('column index is not null and passed `column` and `index` not same with the current `sortColumn` and `columnIndexSort`', function () { - vm.sortLeaderboard(vm, 'number', 1); - expect(vm.reverseSort).toEqual(false); - expect(vm.columnIndexSort).toEqual(1); - }); - - it('column index is not null and passed `column` and `index` same with the current `sortColumn` and `columnIndexSort`', function () { - vm.sortLeaderboard(vm, 'rank', 0); - expect(vm.reverseSort).toEqual(true); - expect(vm.columnIndexSort).toEqual(0); - }); - }); - - describe('Unit tests for getLeaderboard function \ - `jobs/challenge_phase_split//leaderboard/?page_size=1000`', function () { - var success, successResponse, errorResponse; - - beforeEach(function () { - spyOn($interval, 'cancel'); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn(vm, 'startLeaderboard'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully get the leaderboard', function () { - success = true; - successResponse = { - results: { - duration: 'year', - results: [ - { - id: 1, - leaderboard__schema: - { - labels: ['label1', 'label2'], - default_order_by: 'default_order_by', - }, - submission__submitted_at: (new Date() - new Date().setFullYear(new Date().getFullYear() - 1)), - }, - ] - }, - }; - var phaseSplitId = 1; - vm.getLeaderboard(phaseSplitId); - vm.stopLeaderboard(); - expect($interval.cancel).toHaveBeenCalled(); - expect(vm.isResult).toEqual(true); - expect(vm.startLoader).toHaveBeenCalledWith('Loading Leaderboard Items'); - expect(vm.leaderboard).toEqual(successResponse.results); - - expect(vm.phaseName).toEqual(vm.phaseSplitId); - expect(vm.startLeaderboard).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error', function () { - success = false; - errorResponse = 'error'; - var phaseSplitId = 1; - vm.getLeaderboard(phaseSplitId); - vm.stopLeaderboard(); - expect($interval.cancel).toHaveBeenCalled(); - expect(vm.isResult).toEqual(true); - expect(vm.startLoader).toHaveBeenCalledWith('Loading Leaderboard Items'); - expect(vm.leaderboard.error).toEqual(errorResponse); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for getResults function', function () { - var submissionCountSuccess, submissionListSuccess, successResponse, errorResponse; - var submission_list = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn($interval, 'cancel'); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - spyOn(utilities, 'storeData'); - - vm.challengeId = 1; - vm.phases = { - results: [ - { - id: 1, - name: "Challenge phase name", - description: "Challenge phase description", - leaderboard_public: true - }, - ] - }; - - utilities.sendRequest = function (parameters) { - if ((submissionCountSuccess == true && parameters.url == "analytics/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/count") || - (submissionListSuccess == true && parameters.url == "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/")) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else if ((submissionCountSuccess == false && parameters.url == "analytics/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/count") || - (submissionListSuccess == false && parameters.url == "jobs/challenge/" + vm.challengeId + "/challenge_phase/" + vm.phaseId + "/submission/")){ - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('get the leaderboard of the current phase', function () { - submissionCountSuccess = null; - submissionListSuccess = null; - var phaseId = 1; - vm.getResults(phaseId); - vm.stopFetchingSubmissions(); - expect($interval.cancel).toHaveBeenCalled(); - expect(vm.isResult).toEqual(true); - expect(vm.phaseId).toEqual(phaseId); - - expect(vm.currentPhaseLeaderboardPublic).toEqual(true); - }); - - it('get the submission count \ - `analytics/challenge//challenge_phase//count`', function () { - submissionCountSuccess = true; - submissionListSuccess = null; - var phaseId = 1; - successResponse = { - challenge_phase: 1, - participant_team_submission_count: 200 - }; - vm.getResults(phaseId); - expect(vm.submissionCount).toEqual(successResponse.participant_team_submission_count); - }); - - it('backend error on getting submission count \ - `analytics/challenge//challenge_phase//count`', function () { - submissionCountSuccess = false; - submissionListSuccess = null; - var phaseId = 1; - errorResponse = 'error'; - vm.getResults(phaseId); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - submission_list.forEach(response => { - it('get submissions of a particular challenge phase when pagination next is ' + response.next + ' \ - and previous is ' + response.previous + '`jobs/challenge//challenge_phase//submission/`', function () { - submissionListSuccess = true; - var phaseId = 1; - successResponse = response; - successResponse.results = [ - { - id: 1, - participant_team: "Participant team", - challenge_phase: "Challenge phase", - is_public: true, - is_baseline: true - } - ]; - - vm.getResults(phaseId); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Submissions"); - for (var i = 0; i < successResponse.results.length; i++){ - expect(vm.submissionVisibility[successResponse.results[i].id]).toEqual(successResponse.results[i].is_public); - expect(vm.baselineStatus[successResponse.results[i].id] = successResponse.results[i].is_baseline); - } - expect(vm.submissionResult).toEqual(successResponse); - - if (vm.submissionResult.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.submissionResult.next.split('page=')[1] - 1); - } - - if (vm.submissionResult.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - if (vm.submissionResult.next !== null) { - expect(vm.currentPage).toEqual(vm.submissionResult.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - }); - }); - - it('backend error on getting submissions of a particular challenge \ - `jobs/challenge//challenge_phase//submission/`', function () { - submissionListSuccess = false; - submissionCountSuccess = null; - var phaseId = 1; - errorResponse = { - detail: 'error' - }; - vm.getResults(phaseId); - expect(utilities.storeData).toHaveBeenCalledWith("emailError", errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('to load data with pagination `load` function', function () { - submissionListSuccess = true; - submissionCountSuccess = null; - var phaseId = 1; - successResponse = { - results: [ - { - id: 1, - participant_team: "Participant team", - challenge_phase: "Challenge phase", - is_public: true, - is_baseline: true - } - ], - // get submissions response - next: "page=4", - previous: "page=2", - }; - vm.getResults(phaseId); - spyOn($http, 'get').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - var url = 'challenge//submission/page=2'; - vm.load(url); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Submissions"); - var headers = { - 'Authorization': "Token " + utilities.getData('userKey') - }; - expect($http.get).toHaveBeenCalledWith(url, {headers: headers}); - }); - }); - - describe('Unit tests for refreshSubmissionData function \ - `jobs/challenge//challenge_phase//submission/?page=`', function () { - var success, successResponse; - var errorResponse = 'error'; - var results = [ - { - id: 1, - is_public: true, - is_baseline: true - }, - { - id: 2, - is_public: false, - is_baseline: true - } - ]; - var paginated_list = [ - { - count: 0, - next: null, - previous: null, - results: results - }, - { - count: 2, - next: null, - previous: null, - results: results - }, - { - count: 30, - next: 'page=5', - previous: null, - results: results - }, - { - count: 30, - next: null, - previous: 'page=3', - results: results - }, - { - count: 30, - next: 'page=4', - previous: 'page=2', - results: results - } - ]; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - paginated_list.forEach(response => { - it('submission data list have count' + response.count + ', next ' + response.next + 'and previous ' + response.previous, function () { - success = true; - successResponse = response; - vm.refreshSubmissionData(); - expect(vm.isResult).toEqual(false); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Submissions"); - expect(vm.submissionResult).toEqual(successResponse); - - if (response.count == 0) { - expect(vm.showPagination).toEqual(false); - expect(vm.paginationMsg).toEqual("No results found"); - } else { - expect(vm.showPagination).toEqual(true); - expect(vm.paginationMsg).toEqual(""); - } - - if (response.next == null) { - expect(vm.isNext).toEqual('disabled'); - } else { - expect(vm.isNext).toEqual(''); - } - - if (response.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - if (response.next != null) { - expect(vm.currentPage).toEqual(response.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - - for (var i = 0; i < response.results.length; i++) { - expect(vm.submissionVisibility[response.results[i].id]).toEqual(response.results[i].is_public); - expect(vm.baselineStatus[response.results[i].id]).toEqual(response.results[i].is_baseline); - } - - expect(vm.showUpdate).toEqual(false); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - it('backend error', function () { - success = false; - vm.refreshSubmissionData(); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for refreshLeaderboard function \ - `jobs/challenge_phase_split//leaderboard/?page_size=1000`', function () { - var success, successResponse, errorResponse; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('on success of the function', function () { - success = true; - successResponse = { - results: 'success' - }; - vm.refreshLeaderboard(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Leaderboard Items"); - expect(vm.leaderboard).toEqual(successResponse.results); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error', function () { - success = false; - errorResponse = 'error'; - vm.refreshLeaderboard(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Leaderboard Items"); - expect(vm.leaderboard.error).toEqual(errorResponse); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for createNewTeam function \ - `participants/participant_team`', function () { - var success, successResponse; - var errorResponse = { - team_name: ['error'] - }; - var team_name_list = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn(angular, 'element'); - spyOn($rootScope, 'notify'); - vm.team.name = "team_name"; - vm.team.url = "team_url"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - team_name_list.forEach(response => { - it('when pagination next is ' + response.next + 'and previous is ' + response.previous, function () { - success = true; - successResponse = response; - vm.createNewTeam(); - expect(vm.isLoader).toEqual(true); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.new-team-card'); - expect(vm.startLoader("Loading Teams")); - expect($rootScope.notify).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.team).toEqual({}); - - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect(vm.existTeam).toEqual(successResponse); - expect(vm.showPagination).toEqual(true); - expect(vm.paginationMsg).toEqual(''); - - if (vm.existTeam.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - it('backend error', function () { - success = false; - vm.createNewTeam(); - expect(vm.isLoader).toEqual(true); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.new-team-card'); - expect(vm.startLoader("Loading Teams")); - expect(vm.team.error).toEqual(errorResponse.team_name[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", "New team couldn't be created."); - }); - }); - - describe('Unit tests for getAllSubmissionResults function \ - `challenges//challenge_phase//submissions`', function() { - var success, successResponse; - var errorResponse = { - detail: 'error' - }; - var submission_list = [ - { - count: 0, - next: null, - previous: null, - }, - { - count: 2, - next: null, - previous: null, - }, - { - count: 30, - next: 'page=5', - previous: null, - }, - { - count: 30, - next: null, - previous: 'page=3', - }, - { - count: 30, - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn(angular, 'element'); - spyOn($interval, 'cancel'); - spyOn(utilities, 'storeData'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - submission_list.forEach(response => { - it('submission list have count' + response.count + ', next ' + response.next + 'and previous ' + response.previous, function() { - success = true; - successResponse = response; - var phaseId = 1 - vm.getAllSubmissionResults(phaseId); - vm.stopFetchingSubmissions(); - expect($interval.cancel).toHaveBeenCalled(); - expect(vm.isResult).toEqual(true); - expect(vm.phaseId).toEqual(phaseId); - - expect(vm.submissionResult).toEqual(response); - if (vm.submissionResult.count == 0) { - expect(vm.showPagination).toEqual(false); - expect(vm.paginationMsg).toEqual("No results found"); - } else { - expect(vm.showPagination).toEqual(true); - expect(vm.paginationMsg).toEqual(""); - } - - if (vm.submissionResult.next == null) { - expect(vm.isNext).toEqual('disabled'); - } else { - expect(vm.isNext).toEqual(''); - - } - if (vm.submissionResult.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - if (vm.submissionResult.next != null) { - expect(vm.currentPage).toEqual(vm.submissionResult.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - it('backend error', function () { - success = false; - var phaseId = 1 - vm.getAllSubmissionResults(phaseId); - vm.stopFetchingSubmissions(); - expect($interval.cancel).toHaveBeenCalled(); - expect(vm.isResult).toEqual(true); - expect(vm.phaseId).toEqual(phaseId); - - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for changeSubmissionVisibility function \ - `jobs/challenge//challenge_phase//submission/`', function () { - var success; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - }); - } else { - parameters.callback.onError({ - data: 'error' - }); - } - }; - }); - - it('change submission visibility', function () { - var submissionId = 1; - expect(vm.submissionVisibility).toEqual({}); - vm.submissionVisibility[1] = true; - vm.changeSubmissionVisibility(submissionId); - expect(vm.submissionVisibility[submissionId]).toEqual(true); - }); - }); - - describe('Unit tests for showapprovalparticipantteamDialog function', function () { - var $mdDialog; - - beforeEach(function () { - $mdDialog = $injector.get('$mdDialog'); - }); - - it('should open dialog when approved_status is true', function () { - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - var challengeId = '123'; - var participant_team_id = '456'; - var approved_status = true; - - vm.showapprovalparticipantteamDialog(challengeId, participant_team_id, approved_status); - - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - - it('should call check_approval_status when approved_status is false', function () { - vm.check_approval_status = jasmine.createSpy(); - - var challengeId = '123'; - var participant_team_id = '456'; - var approved_status = false; - - vm.showapprovalparticipantteamDialog(challengeId, participant_team_id, approved_status); - - expect(vm.check_approval_status).toHaveBeenCalledWith(challengeId, participant_team_id, approved_status, false); - }); - }); - - describe('Unit tests for check_approval_status function', function () { - var success, errorResponse, secondfunction; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'reload'); - spyOn($mdDialog, 'hide'); - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 201 - }); - } else if (secondfunction) { - parameters.callback.onSuccess({ - status: 204 - }); - } else { - parameters.callback.onError({ - data: errorResponse, - }); - } - }; - }); - - it('should handle successful approval of participant team', function () { - success = true; - - var challengeId = '123'; - var participant_team_id = '456'; - var approved_status = true; - var formvalid = true; - - vm.check_approval_status(challengeId, participant_team_id, approved_status, formvalid); - - expect($rootScope.notify).toHaveBeenCalledWith('success', 'Participant Team Approved successfully.'); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - - it('should handle error during approval of participant team', function () { - success = false; - secondfunction = false; - errorResponse = { - error: 'Approval failed' - }; - - var challengeId = '123'; - var participant_team_id = '456'; - var approved_status = true; - var formvalid = true; - - vm.check_approval_status(challengeId, participant_team_id, approved_status, formvalid); - - expect($rootScope.notify).toHaveBeenCalledWith('error', 'Approval failed'); - }); - - it('should handle disapproval of participant team', function () { - success = false; - secondfunction = true; - var challengeId = '123'; - var participant_team_id = '456'; - var approved_status = false; - var formvalid = false; - - vm.check_approval_status(challengeId, participant_team_id, approved_status, formvalid); - - expect($rootScope.notify).toHaveBeenCalledWith('success', 'Participant Team Disapproved successfully.'); - expect($state.reload).not.toHaveBeenCalled(); - }); - }); - - describe('Unit tests for changeBaselineStatus function \ - `jobs/challenge//challenge_phase//submission/`', function () { - var success; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - }); - } else { - parameters.callback.onError({ - data: 'error' - }); - } - }; - }); - - it('change Baseline Status', function () { - var submissionId = 1; - expect(vm.baselineStatus).toEqual({}); - vm.baselineStatus[1] = true; - vm.changeBaselineStatus(submissionId); - expect(vm.baselineStatus[submissionId]).toEqual(true); - }); - }); - - describe('Unit tests for showRemainingSubmissions function \ - `jobs//remaining_submissions`', function () { - var success, successResponse; - var errorResponse = { - error: 'error' - } - - beforeEach(function () { - jasmine.clock().install; - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - afterEach(function () { - jasmine.clock().uninstall(); - }); - - it('when submission limit exceeded', function () { - success = true; - successResponse = { - phases: { - first_object: { - id: undefined, - limits: { - submission_limit_exceeded: true, - remaining_submissions_today_count: 0, - remaining_time: 0, - message: "Max Limit Exceeded", - } - }, - } - }; - vm.showRemainingSubmissions(); - expect(vm.maxExceeded).toEqual(true); - expect(vm.maxExceededMessage).toEqual(successResponse.phases.first_object.limits.message); - }); - - it('when today remaining submission greater than 0', function () { - success = true; - successResponse = { - phases: { - first_object: { - id: undefined, - limits: { - submission_limit_exceeded: false, - remaining_submissions_today_count: 10, - remaining_time: 0, - } - } - } - }; - vm.showRemainingSubmissions(); - expect(vm.remainingSubmissions).toEqual(successResponse.phases.first_object.limits); - expect(vm.showSubmissionNumbers).toEqual(true); - }); - - it('countdown for the remaining timer', function () { - success = true; - successResponse = { - phases: { - first_object: { - id: undefined, - limits: { - submission_limit_exceeded: false, - remaining_submissions_today_count: 0, - remaining_time: 36000, - } - } - } - }; - vm.showRemainingSubmissions(); - expect(vm.message).toEqual(successResponse.phases.first_object.limits); - expect(vm.showClock).toEqual(true); - - expect(vm.remainingTime).toEqual(successResponse.phases.first_object.limits.remaining_time); - expect(vm.days).toEqual(Math.floor(vm.remainingTime / 24 / 60 / 60)); - expect(vm.hoursLeft).toEqual(Math.floor((vm.remainingTime) - (vm.days * 86400))); - expect(vm.hours).toEqual(Math.floor(vm.hoursLeft / 3600)); - expect(vm.minutesLeft).toEqual(Math.floor((vm.hoursLeft) - (vm.hours * 3600))); - expect(vm.minutes).toEqual(Math.floor(vm.minutesLeft / 60)); - }); - - it('backend error', function () { - success = false; - vm.showRemainingSubmissions(); - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - }); - }); - - describe('Unit tests for showMdDialog', function () { - it('Variables initialized', function () { - vm.submissionResult = []; - vm.submissionMetaData = { - id: 1, - method_name: 'method name', - method_description: 'method description', - project_url: 'project url', - publication_url: 'publication url' - }; - var submissionId = 1; - var ev = new Event('click'); - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.showMdDialog(ev, submissionId); - expect(vm.method_name).toEqual(vm.submissionMetaData.method_name); - expect(vm.method_description).toEqual(vm.submissionMetaData.method_description); - expect(vm.project_url).toEqual(vm.submissionMetaData.project_url); - expect(vm.publication_url).toEqual(vm.submissionMetaData.publication_url); - expect(vm.submissionId).toEqual(submissionId); - - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBe(true); - }); - }); - - describe('Unit tests for updateSubmissionMetaData function \ - `jobs/challenge//challenge_phase//submission/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid form submission and succesfully updated form', function () { - vm.method_name = 'method name'; - vm.method_description = 'method description'; - vm.project_url = 'project url'; - vm.publication_url = 'publication url'; - vm.submissionMetaData = { - submission_metadata : null - }; - vm.currentSubmissionMetaData = [ - { - name: 'TextAttribute', - type: 'text', - value: null, - $$hashKey: 'object:42', - description: 'Sample', - }, - { - name: 'SingleOptionAttribute', - type: 'radio', - value: null, - options: ['A','B','C'], - $$hashKey: 'object:43', - description: 'Sample', - }, - { - name: 'MultipleChoiceAttribute', - type: 'checkbox', - values: [], - options: ['alpha','beta','gamma'], - $$hashKey: 'object:44', - description: 'Sample', - }, - { - name: 'TrueFalseField', - type: 'boolean', - value: null, - $$hashKey: 'object:45', - description: 'Sample', - }, - ]; - success = true; - var updateSubmissionMetaDataForm = true; - vm.updateSubmissionMetaData(updateSubmissionMetaDataForm); - expect(status).toBeDefined(); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The data is successfully updated!"); - }); - - it('valid form submission and backend error', function () { - vm.method_name = 'method name'; - vm.method_description = 'method description'; - vm.project_url = 'project url'; - vm.publication_url = 'publication url'; - vm.submissionMetaData = { - submission_metadata : null - }; - vm.currentSubmissionMetaData = [ - { - name: 'TextAttribute', - type: 'text', - value: null, - $$hashKey: 'object:42', - description: 'Sample', - }, - { - name: 'SingleOptionAttribute', - type: 'radio', - value: null, - options: ['A','B','C'], - $$hashKey: 'object:43', - description: 'Sample', - }, - { - name: 'MultipleChoiceAttribute', - type: 'checkbox', - values: [], - options: ['alpha','beta','gamma'], - $$hashKey: 'object:44', - description: 'Sample', - }, - { - name: 'TrueFalseField', - type: 'boolean', - value: null, - $$hashKey: 'object:45', - description: 'Sample', - }, - ]; - success = false; - var updateSubmissionMetaDataForm = true; - vm.updateSubmissionMetaData(updateSubmissionMetaDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid form submission', function () { - var updateSubmissionMetaDataForm = false; - vm.updateSubmissionMetaData(updateSubmissionMetaDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for isStarred function \ - `challenges//`', function () { - var success, successResponse; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: 'error' - }); - } - }; - }); - - it('get the stars count and user specific unstarred', function () { - success = true; - successResponse = { - count: 1, - is_starred: false - }; - vm.isStarred(); - expect(vm.count).toEqual(successResponse.count); - expect(vm.is_starred).toEqual(successResponse.is_starred); - expect(vm.caption).toEqual('Star'); - }); - - it('get the stars count and user specific starred', function () { - success = true; - successResponse = { - count: 1, - is_starred: true - }; - vm.isStarred(); - expect(vm.count).toEqual(successResponse.count); - expect(vm.is_starred).toEqual(successResponse.is_starred); - expect(vm.caption).toEqual('Unstar'); - }); - }); - - describe('Unit tests for starChallenge function \ - `challenges//`', function () { - var success, successResponse; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('Unstar the challenge', function () { - success = true; - successResponse = { - count: 10, - is_starred: true - }; - vm.starChallenge(); - expect(vm.count).toEqual(successResponse.count); - expect(vm.is_starred).toEqual(successResponse.is_starred); - expect(vm.caption).toEqual('Unstar'); - }); - - it('Star the challenge', function () { - success = true; - successResponse = { - count: 10, - is_starred: false - }; - vm.starChallenge(); - expect(vm.count).toEqual(successResponse.count); - expect(vm.is_starred).toEqual(successResponse.is_starred); - expect(vm.caption).toEqual('Star'); - }); - - it('backend error', function () { - success = false; - vm.starChallenge(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - }); - - describe('Unit tests for overviewDialog function', function () { - it('open dialog for edit challenge overview', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.overviewDialog(); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editChallengeOverview function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid editchallengeoverview form and succesfull edit', function () { - var editChallengeOverviewForm = true; - success = true; - vm.page.description = "description"; - vm.editChallengeOverview(editChallengeOverviewForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The description is successfully updated!"); - }); - - it('valid editchallengeoverview form and backend error', function () { - var editChallengeOverviewForm = true; - success = false; - vm.tempDesc = "temp description"; - vm.page.description = "description"; - vm.editChallengeOverview(editChallengeOverviewForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.description).toEqual(vm.tempDesc); - expect($rootScope.notify).toHaveBeenCalledWith('error', errorResponse); - }); - - it('invalid editchallengeoverview form', function () { - var editChallengeOverviewForm = false; - vm.tempDesc = "No description"; - vm.page.description = "description"; - vm.editChallengeOverview(editChallengeOverviewForm); - expect(vm.page.description).toEqual(vm.tempDesc); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for editchallengeTagDialog function', function () { - it('open dialog for edit challenge tag', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - vm.page.list_tags = ['tag1', 'tag2']; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.editchallengeTagDialog(); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit test for editChallengeTag function', function () { - var success; - var errorResponse = 'error'; - beforeEach(function () { - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid edit challenge tag', function () { - var editChallengeTagDomainForm = true; - success = true; - vm.tags = "tag1, tag2"; - vm.domain = 'CV'; - spyOn($state, 'reload'); - vm.editChallengeTag(editChallengeTagDomainForm); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The challenge tags and domain is successfully updated!"); - expect($state.reload).toHaveBeenCalled(); - }); - - it('invalid edit challenge tag', function () { - var editChallengeTagDomainForm = false; - success = true; - vm.tags = "tag1, tag2"; - vm.domain = 'CV'; - vm.editChallengeTag(editChallengeTagDomainForm); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - - it('invalid edit challenge domain and backend error', function () { - var editChallengeTagDomainForm = true; - success = false; - vm.tags = "tag1, tag2"; - vm.domain = 'domain'; - vm.editChallengeTag(editChallengeTagDomainForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", "error"); - }); - - it('valid edit challenge more than 4 error', function () { - var editChallengeTagDomainForm = true; - success = true; - vm.tags = "tag1, tag2, tag3, tag4, tag5WithMorethan15Charactersd"; - vm.domain = 'CV'; - vm.editChallengeTag(editChallengeTagDomainForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Invalid tags! Maximum 4 tags are allowed, and each tag must be 15 characters or less."); - }); - }); - - describe('Unit tests for deleteChallengeDialog function', function () { - it('open dialog for delete challenge', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.deleteChallengeDialog(); - expect(vm.titleInput).toEqual(""); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for deleteChallenge function \ - `challenges/challenge//disable`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 204 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid delete challenge form & successfully delete challenge', function () { - var deleteChallengeForm = true; - success = true; - vm.deleteChallenge(deleteChallengeForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The Challenge is successfully deleted!"); - }); - - it('valid delete challenge form & backend error', function () { - var deleteChallengeForm = true; - success = false; - vm.deleteChallenge(deleteChallengeForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid delete challenge form', function () { - var deleteChallengeForm = false; - vm.deleteChallenge(deleteChallengeForm); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for submissionGuidelinesDialog function', function () { - it('open dialog to `edit submission guidelines`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.page.submission_guidelines = "submission guidelines"; - vm.submissionGuidelinesDialog(); - expect(vm.tempSubmissionGuidelines).toEqual(vm.page.submission_guidelines); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editSubmissionGuideline function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid edit submission guidelines form & successfull edit', function () { - var editSubmissionGuidelinesForm = true; - success = true; - vm.page.submission_guidelines = "submission guidelines"; - vm.editSubmissionGuideline(editSubmissionGuidelinesForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The submission guidelines is successfully updated!"); - }); - - it('valid edit submission guidelines form & backend error', function () { - var editSubmissionGuidelinesForm = true; - success = false; - vm.tempSubmissionGuidelines = "temp submission guidelines"; - vm.page.submission_guidelines = "submission guidelines"; - vm.editSubmissionGuideline(editSubmissionGuidelinesForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.submission_guidelines).toEqual(vm.tempSubmissionGuidelines); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid edit submission guidelines form', function () { - var editSubmissionGuidelinesForm = false; - vm.tempSubmissionGuidelines = "temp submission guidelines"; - vm.page.submission_guidelines = "submission guidelines"; - vm.editSubmissionGuideline(editSubmissionGuidelinesForm); - expect(vm.page.submission_guidelines).toEqual(vm.tempSubmissionGuidelines); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for evaluationCriteriaDialog function', function () { - it('open dialog to `edit evaluation criteria`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.page.evaluation_details = "evaluation details"; - vm.evaluationCriteriaDialog(); - expect(vm.tempEvaluationCriteria).toEqual(vm.page.evaluation_details); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editEvaluationCriteria function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid `edit evaluation criteria` form & successfull edit', function () { - var editEvaluationCriteriaForm = true; - success = true; - vm.page.evaluation_details = "evaluation details"; - vm.editEvaluationCriteria(editEvaluationCriteriaForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The evaluation details is successfully updated!"); - }); - - it('valid `edit evaluation criteria` form & backend error', function () { - var editEvaluationCriteriaForm = true; - success = false; - vm.tempEvaluationCriteria = "temp evaluation details"; - vm.page.evaluation_details = "evaluation details"; - vm.editEvaluationCriteria(editEvaluationCriteriaForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.evaluation_details).toEqual(vm.tempEvaluationCriteria); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid `edit evaluation criteria` form', function () { - var editEvaluationCriteriaForm = false; - vm.tempEvaluationCriteria = "temp evaluation details"; - vm.page.evaluation_details = "evaluation details"; - vm.editEvaluationCriteria(editEvaluationCriteriaForm); - expect(vm.page.evaluation_details).toEqual(vm.tempEvaluationCriteria); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for evaluationScriptDialog function', function () { - it('open dialog to `edit evaluation script`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.evaluationScriptDialog(); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editEvalScript function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid `edit evaluation script` form & successfull edit', function () { - var editEvaluationScriptForm = true; - vm.editEvaluationScript = "evaluation_script.zip"; - success = true; - vm.page.evaluation_details = "evaluation details"; - vm.editEvalScript(editEvaluationScriptForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The evaluation script is successfully updated!"); - }); - - it('invalid `edit evaluation script` form & frontend error', function () { - var editEvaluationScriptForm = true; - success = true; - vm.page.evaluation_details = "evaluation details"; - vm.editEvalScript(editEvaluationScriptForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Please upload a valid evaluation script!"); - }); - - it('valid `edit evaluation script` form & backend error', function () { - var editEvaluationScriptForm = true; - vm.editEvaluationScript = "evaluation_script.zip"; - success = false; - vm.tempEvaluationCriteria = "temp evaluation details"; - vm.page.evaluation_details = "evaluation details"; - vm.editEvalScript(editEvaluationScriptForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.evaluation_details).toEqual(vm.tempEvaluationCriteria); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid `edit evaluation script` form', function () { - var editEvaluationScriptForm = false; - vm.tempEvaluationCriteria = "temp evaluation details"; - vm.page.evaluation_details = "evaluation details"; - vm.editEvalScript(editEvaluationScriptForm); - expect(vm.page.evaluation_details).toEqual(vm.tempEvaluationCriteria); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for termsAndConditionsDialog function', function () { - it('open dialog to `terms and conditions`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.page.terms_and_conditions = "terms and conditions"; - vm.termsAndConditionsDialog(); - expect(vm.tempTermsAndConditions).toEqual(vm.page.terms_and_conditions); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editTermsAndConditions function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid `edit terms and conditions` form & successfull edit', function () { - var editTermsAndConditionsForm = true; - success = true; - vm.page.terms_and_conditions = "terms and conditions"; - vm.editTermsAndConditions(editTermsAndConditionsForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The terms and conditions are successfully updated!"); - }); - - it('valid `edit terms and conditions` form & backend error', function () { - var editTermsAndConditionsForm = true; - success = false; - vm.tempTermsAndConditions = "temp terms and conditions"; - vm.page.terms_and_conditions = "terms and conditions"; - vm.editTermsAndConditions(editTermsAndConditionsForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.terms_and_conditions).toEqual(vm.tempTermsAndConditions); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid `edit terms and conditions` form', function () { - var editTermsAndConditionsForm = false; - vm.tempTermsAndConditions = "temp evaluation details"; - vm.page.terms_and_conditions = "terms and conditions"; - vm.editTermsAndConditions(editTermsAndConditionsForm); - expect(vm.page.terms_and_conditions).toEqual(vm.tempTermsAndConditions); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for challengeTitleDialog function', function () { - it('open dialog to `edit challenge title`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.page.title = "challenge title"; - vm.challengeTitleDialog(); - expect(vm.tempChallengeTitle).toEqual(vm.page.title); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editChallengeTitle function \ - `challenges/challenge_host_team//challenge/`', function () { - var success; - var errorResponse = 'error'; - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid `edit terms and conditions` form & successfull edit', function () { - var editChallengeTitleForm = true; - success = true; - vm.page.title = "challenge title"; - vm.editChallengeTitle(editChallengeTitleForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The challenge title is successfully updated!"); - }); - - it('valid `edit terms and conditions` form & backend error', function () { - var editChallengeTitleForm = true; - success = false; - vm.tempChallengeTitle = "temp challenge title"; - vm.page.title = "challenge title"; - vm.editChallengeTitle(editChallengeTitleForm); - expect(utilities.getData).toHaveBeenCalledWith("challengeCreator"); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.page.title).toEqual(vm.tempChallengeTitle); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - }); - - it('invalid `edit terms and conditions` form', function () { - var editChallengeTitleForm = false; - vm.tempChallengeTitle = "temp challenge title"; - vm.page.title = "challenge title"; - vm.editChallengeTitle(editChallengeTitleForm); - expect(vm.page.title).toEqual(vm.tempChallengeTitle); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for challengePhaseDialog function', function () { - it('open dialog to `edit challenge phase`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - var phase = { - start_date: new Date('Fri June 12 2018 22:41:51 GMT+0530'), - end_date: new Date('Fri June 12 2099 22:41:51 GMT+0530'), - max_submissions_per_day: 1500 - }; - var ev = new Event('click'); - vm.challengePhaseDialog(ev, phase); - expect(vm.page.challenge_phase).toEqual(phase); - expect(vm.page.max_submissions_per_day).toEqual(phase.max_submissions_per_day); - expect(vm.page.max_submissions_per_month).toEqual(phase.max_submissions_per_month); - expect(vm.phaseStartDate).toEqual(moment(phase.start_date)); - expect(vm.phaseEndDate).toEqual(moment(phase.end_date)); - expect(vm.testAnnotationFile).toEqual(null); - expect(vm.sanityCheckPass).toEqual(true); - expect(vm.sanityCheck).toEqual(""); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toEqual(true); - }); - }); - - describe('Unit tests for editChallengePhase function \ - `challenges/challenge//challenge_phase/`', function () { - var success; - var errorResponse = { - detail: 'error' - } - - beforeEach(function () { - spyOn(utilities, 'getData'); - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'showLoader'); - spyOn(utilities, 'storeData'); - spyOn($mdDialog, 'hide'); - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('valid `edit challenge phase` form & successfull edit', function () { - var editChallengePhaseForm = true; - success = true; - vm.page.challenge_phase ={ - id: 1, - name: "challenge phase name", - description: "challenge phase description", - max_submissions_per_day: 500, - max_submissions: 5000 - }; - vm.phaseStartDate = new Date('Fri June 12 2018 22:41:51 GMT+0530'); - vm.phaseEndDate = new Date('Fri June 12 2099 22:41:51 GMT+0530'); - - vm.editChallengePhase(editChallengePhaseForm); - expect(vm.challengePhaseId).toEqual(vm.page.challenge_phase.id); - expect(utilities.hideLoader).toHaveBeenCalled(); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "The challenge phase details are successfully updated!"); - expect(utilities.showLoader).toHaveBeenCalled(); - }); - - it('valid `edit challenge phase` form & backend error', function () { - var editChallengePhaseForm = true; - success = false; - vm.page.challenge_phase ={ - id: 1, - name: "challenge phase name", - description: "challenge phase description", - max_submissions_per_day: 500, - max_submissions: 5000 - }; - vm.phaseStartDate = new Date('Fri June 12 2018 22:41:51 GMT+0530'); - vm.phaseEndDate = new Date('Fri June 12 2099 22:41:51 GMT+0530'); - - vm.editChallengePhase(editChallengePhaseForm); - expect(vm.challengePhaseId).toEqual(vm.page.challenge_phase.id); - expect(utilities.hideLoader).toHaveBeenCalled(); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse); - expect(utilities.showLoader).toHaveBeenCalled(); - }); - - it('invalid `edit challenge phase` form & get successfully challenge phase details', function () { - var editChallengePhaseForm = false; - success = true; - vm.editChallengePhase(editChallengePhaseForm); - expect(vm.phases).toEqual('success'); - expect(utilities.hideLoader).toHaveBeenCalled(); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - - it('invalid `edit challenge phase` form & backend error', function () { - var editChallengePhaseForm = false; - success = false; - vm.editChallengePhase(editChallengePhaseForm); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for publishChallenge function', function () { - var ev; - - beforeEach(function () { - spyOn($mdDialog, 'hide'); - spyOn($state, 'go'); - - ev = new Event('click'); - spyOn(ev, 'stopPropagation'); - }); - - it('change challenge state from `public` to `private`', function () { - vm.isPublished = true; - vm.publishChallenge(ev); - expect(vm.publishDesc).toEqual(null); - expect(ev.stopPropagation).toHaveBeenCalled(); - expect(vm.toggleChallengeState).toEqual('private'); - }); - - it('change challenge state from `private` to `public`', function () { - vm.isPublished = false; - vm.publishChallenge(ev); - expect(vm.publishDesc).toEqual(null); - expect(ev.stopPropagation).toHaveBeenCalled(); - expect(vm.toggleChallengeState).toEqual('public'); - }); - - it('open dialog for confirmation', function () { - spyOn($mdDialog, 'show').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - vm.publishChallenge(ev); - expect(ev.stopPropagation).toHaveBeenCalled(); - expect($mdDialog.show).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for showConfirmation function', function () { - it('show confirmation message', function () { - spyOn($rootScope, 'notify'); - var message = "confirmation message"; - vm.showConfirmation(message); - expect($rootScope.notify).toHaveBeenCalledWith("success", message); - }); - }); - - describe('Unit tests for termsAndConditionDialog function', function () { - it('open dialog of `terms and conditions`', function () { - var $mdDialog = $injector.get('$mdDialog'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.termsAndConditionDialog(); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBe(true); - }); - }); -}); diff --git a/frontend/tests/controllers-test/challengeHostTeamsCtrl.test.js b/frontend/tests/controllers-test/challengeHostTeamsCtrl.test.js deleted file mode 100644 index 5b2de035d0..0000000000 --- a/frontend/tests/controllers-test/challengeHostTeamsCtrl.test.js +++ /dev/null @@ -1,469 +0,0 @@ -'use strict'; - -describe('Unit tests for challenge host team controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $injector, $mdDialog, $rootScope, $state, $scope, loaderService, utilities,$http, $compile, vm; - - beforeEach(inject(function (_$controller_, _$injector_, _$mdDialog_, _$rootScope_, _$state_, _utilities_, _loaderService_, _$http_, _$compile_) { - $controller = _$controller_; - $injector = _$injector_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - loaderService = _loaderService_; - $http = _$http_; - $mdDialog = _$mdDialog_; - $compile = _$compile_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ChallengeHostTeamsCtrl', {$scope: $scope}); - }; - vm = $controller('ChallengeHostTeamsCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - spyOn(utilities, 'getData'); - spyOn(utilities, 'showLoader'); - utilities.storeData('userKey', 'encrypted key'); - vm = createController(); - - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(utilities.showLoader).toHaveBeenCalled(); - expect(vm.teamId).toBeNull(); - expect(vm.existTeam).toEqual({}); - expect(vm.currentPage).toEqual(''); - expect(vm.isNext).toEqual(''); - expect(vm.isPrev).toEqual(''); - expect(vm.team.error).toBeFalsy(); - expect(vm.showPagination).toBeFalsy(); - expect(vm.hostTeamId).toBeNull(null); - expect(vm.challengeHostTeamId).toBeNull(null); - expect(vm.isExistLoader).toBeFalsy(); - expect(vm.loaderTitle).toEqual(''); - }); - }); - - describe('Validate helper functions', function () { - it('startLoader', function () { - var message = 'Start Loader'; - vm = createController(); - vm.startLoader(message); - expect(vm.isExistLoader).toEqual(true); - expect(vm.loaderTitle).toEqual(message); - }); - - it('stopLoader', function () { - var message = ''; - vm = createController(); - vm.stopLoader(); - expect(vm.isExistLoader).toEqual(false); - expect(vm.loaderTitle).toEqual(message); - }); - }); - - describe('Unit tests for global backend calls', function () { - var success, successResponse, errorResponse; - var hostTeamList = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn(utilities, 'deleteData'); - spyOn(utilities, 'storeData'); - spyOn(utilities, 'hideLoader'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - hostTeamList.forEach(response => { - it('when pagination next is ' + response.next + 'and previous is ' + response.previous + '\ - `hosts/challenge_host_team/`', function () {; - success = true; - successResponse = response; - vm = createController(); - expect(vm.existTeam).toEqual(successResponse); - expect(vm.showPagination).toBeTruthy(); - expect(vm.paginationMsg).toEqual(''); - expect(utilities.deleteData).toHaveBeenCalledWith('emailError'); - - if (vm.existTeam.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - if (vm.existTeam.next !== null) { - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - }); - }); - - it('backend error of listing challenge host team `hosts/challenge_host_team/`', function () { - success = false; - errorResponse = { - detail: 'email error' - }; - spyOn($state, 'go'); - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('to load data with pagination `load` function', function () { - success = true; - successResponse = { - // host team pagination response - next: 'page=4', - previous: 'page=2', - }; - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn($http, 'get').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - var url = 'participants/participant_team/page=2'; - vm.load(url); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - var headers = { - 'Authorization': "Token " + utilities.getData('userKey') - }; - expect($http.get).toHaveBeenCalledWith(url, {headers: headers}); - }); - }); - - describe('Unit tests for showMdDialog function `hosts/challenge_host_team/`', function () { - var success; - var successResponse = { - team_name: "Team Name", - team_url: "https://team.url" - }; - var errorResponse = { - error: 'error' - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn(vm, 'stopLoader'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('open dialog successfully', function () { - success = true; - var hostTeamId = 1; - var ev = new Event('click'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.showMdDialog(ev, hostTeamId); - expect(vm.hostTeamId).toEqual(hostTeamId); - expect(vm.team.TeamName).toEqual(successResponse.team_name); - expect(vm.team.TeamURL).toEqual(successResponse.team_url); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBeTruthy(); - }); - - it('backend error', function () { - success = false; - var hostTeamId = 1; - var ev = new Event('click'); - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.showMdDialog(ev, hostTeamId); - expect(vm.hostTeamId).toEqual(hostTeamId); - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBeTruthy(); - }); - }); - - describe('Unit tests for updateChallengeHostTeamData function', function () { - var success, errorResponse = {}; - var successResponse = { - results: { - team_name: "Team Name", - team_url: "https://team.url" - } - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn(vm, 'stopLoader'); - spyOn($mdDialog, 'hide'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully update the host team `hosts/challenge_host_team/`', function () { - success = true; - var updateChallengeHostTeamDataForm = true; - vm.team.TeamName = "Team Name"; - vm.team.TeamURL = "https://team.url"; - vm.updateChallengeHostTeamData(updateChallengeHostTeamDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Host team updated!"); - }); - - it('successfully retrive the updated list `hosts/challenge_host_team`', function () { - success = true; - var updateChallengeHostTeamDataForm = true; - vm.updateChallengeHostTeamData(updateChallengeHostTeamDataForm); - expect(vm.existTeam.results).toEqual(successResponse.results); - }); - - it('when team_name in response backend error `hosts/challenge_host_team/`', function () { - success = false; - errorResponse.team_name = ["error in team name"]; - var updateChallengeHostTeamDataForm = true; - vm.updateChallengeHostTeamData(updateChallengeHostTeamDataForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.team_name[0]); - }); - - it('when error in response backend error `hosts/challenge_host_team/`', function () { - success = false; - errorResponse = {}; - errorResponse.error = ["error"]; - var updateChallengeHostTeamDataForm = true; - vm.updateChallengeHostTeamData(updateChallengeHostTeamDataForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error[0]); - }); - - it('invalid form submission', function () { - var updateChallengeHostTeamDataForm = false; - vm.updateChallengeHostTeamData(updateChallengeHostTeamDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for createNewTeam function `hosts/create_challenge_host_team`', function () { - var success, successResponse; - var hostTeamList = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - var errorResponse = { - team_name: ['error'] - }; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn(angular, 'element'); - spyOn($rootScope, 'notify'); - vm.team.name = "team_name"; - vm.team.url = "https://team.url"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - hostTeamList.forEach(response => { - it('create new host team when pagination next is ' + response.next + 'and previous is ' + response.previous, function () { - success = true; - successResponse = response; - - vm.createNewTeam(); - expect(vm.isExistLoader).toEqual(true); - expect(vm.loaderTitle).toEqual(''); - - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect($rootScope.notify).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.team).toEqual({}); - - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect(vm.existTeam).toEqual(successResponse); - expect(vm.showPagination).toEqual(true); - expect(vm.paginationMsg).toEqual(''); - - if (vm.existTeam.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - it('backend error on creating new host team', function () { - success = false; - vm.createNewTeam(); - expect(vm.isExistLoader).toEqual(true); - expect(vm.loaderTitle).toEqual(''); - expect(vm.startLoader("Loading Teams")); - expect(vm.team.error).toEqual('error') - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.team_name[0]); - }); - }); - - describe('Unit tests for confirmDelete function', function () { - beforeEach(function () { - spyOn($mdDialog, 'show').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - }); - - it('open dialog to confirm delete', function () { - var hostTeamId = 1; - var ev = new Event('$click'); - var confirm = $mdDialog.confirm() - .title('Would you like to remove yourself?') - .textContent('Note: This action will remove you from the team.') - .ariaLabel('Lucky day') - .targetEvent(ev) - .ok('Yes') - .cancel("No"); - vm.confirmDelete(ev, hostTeamId); - expect($mdDialog.show).toHaveBeenCalledWith(confirm); - }); - }); - - describe('Unit tests for inviteOthers function', function () { - beforeEach(function () { - spyOn($mdDialog, 'show').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - }); - - it('open dialog to invite others', function () { - var hostId = 1; - var ev = new Event('$click'); - var confirm = $mdDialog.prompt() - .title('Add other members to your team') - .textContent('Enter the email address of the person') - .placeholder('email') - .ariaLabel('') - .targetEvent(ev) - .ok('Add') - .cancel('Cancel'); - vm.inviteOthers(ev, hostId); - expect($mdDialog.show).toHaveBeenCalledWith(confirm); - }); - }); - - describe('Unit tests for storeChallengeHostTeamId function', function () { - beforeEach(function (){ - spyOn(utilities, 'storeData'); - spyOn($state, 'go'); - }); - - it('store challenge host team ID', function () { - vm.challengeHostTeamId = 1; - vm.storeChallengeHostTeamId(); - expect(utilities.storeData).toHaveBeenCalledWith('challengeHostTeamId', vm.challengeHostTeamId); - expect($state.go).toHaveBeenCalledWith('web.challenge-create'); - }); - }); -}); diff --git a/frontend/tests/controllers-test/challengeListCtrl.test.js b/frontend/tests/controllers-test/challengeListCtrl.test.js deleted file mode 100644 index 92df7f1c96..0000000000 --- a/frontend/tests/controllers-test/challengeListCtrl.test.js +++ /dev/null @@ -1,321 +0,0 @@ -'use strict'; - -describe('Unit tests for challenge list controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ChallengeListCtrl', {$scope: $scope}); - }; - vm = $controller('ChallengeListCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - spyOn(utilities, 'getData'); - spyOn(utilities, 'showLoader'); - - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(vm.userKey).toEqual(utilities.getData('userKey')); - expect(utilities.showLoader).toHaveBeenCalled(); - expect(vm.currentList).toEqual([]); - expect(vm.upcomingList).toEqual([]); - expect(vm.pastList).toEqual([]); - expect(vm.noneCurrentChallenge).toBeFalsy(); - expect(vm.noneUpcomingChallenge).toBeFalsy(); - expect(vm.nonePastChallenge).toBeFalsy(); - expect(vm.challengeCreator).toEqual({}); - }); - }); - - describe('Unit tests for global backend calls', function () { - var isPresentChallengeSuccess, isUpcomingChallengeSucess, isPastChallengeSuccess, successResponse, errorResponse; - - beforeEach(function () { - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'storeData'); - - utilities.sendRequest = function (parameters) { - if ((isPresentChallengeSuccess == true && parameters.url == 'challenges/challenge/present/approved/public') || - (isUpcomingChallengeSucess == true && parameters.url == 'challenges/challenge/future/approved/public') || - (isPastChallengeSuccess == true && parameters.url == 'challenges/challenge/past/approved/public')) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else if ((isPresentChallengeSuccess == false && parameters.url == 'challenges/challenge/present/approved/public') || - (isUpcomingChallengeSucess == false && parameters.url == 'challenges/challenge/future/approved/public') || - (isPastChallengeSuccess == false && parameters.url == 'challenges/challenge/past/approved/public')){ - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('when no ongoing challenge found `challenges/challenge/present/approved/public`', function () { - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = null; - isPastChallengeSuccess = null; - successResponse = { - next: null, - results: [] - }; - vm = createController(); - expect(vm.currentList).toEqual(successResponse.results); - expect(vm.noneCurrentChallenge).toBeTruthy(); - }); - - it('check description length and calculate timezone of ongoing challenge `challenges/challenge/present/approved/public`', function () { - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = null; - isPastChallengeSuccess = null; - successResponse = { - next: null, - results: [ - { - id: 1, - description: "the length of the ongoing challenge description is greater than or equal to 50", - creator: { - id: 1 - }, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - }, - { - id: 2, - description: "random description", - creator: { - id: 1 - }, - start_date: "Sat May 26 2015 22:41:51 GMT+0530", - end_date: "Sat May 26 2099 22:41:51 GMT+0530" - } - ] - }; - vm = createController(); - expect(vm.currentList).toEqual(successResponse.results); - expect(vm.noneCurrentChallenge).toBeFalsy(); - - var timezone = moment.tz.guess(); - var zone = moment.tz.zone(timezone); - for (var i in vm.currentList) { - if (vm.currentList[i].description.length >= 50) { - expect(vm.currentList[i].isLarge).toEqual("..."); - } else { - expect(vm.currentList[i].isLarge).toEqual(""); - } - var offset = new Date(vm.currentList[i].start_date).getTimezoneOffset(); - expect(vm.currentList[i].time_zone).toEqual(zone.abbr(offset)); - - expect(vm.challengeCreator[vm.currentList[i].id]).toEqual(vm.currentList[i].creator.id); - expect(utilities.storeData).toHaveBeenCalledWith("challengeCreator", vm.challengeCreator); - } - }); - - it('ongoing challenge backend error `challenges/challenge/present/approved/public`', function () { - isPresentChallengeSuccess = false; - isUpcomingChallengeSucess = null; - isPastChallengeSuccess = null; - errorResponse = { - next: null, - error: 'error' - }; - vm = createController(); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('when no upcoming `challenges/challenge/present/approved/public`challenge found `challenges/challenge/future/approved/public`', function () { - isUpcomingChallengeSucess = true; - isPresentChallengeSuccess = true; - isPastChallengeSuccess = null; - successResponse = { - next: null, - results: [] - }; - vm = createController(); - expect(vm.upcomingList).toEqual(successResponse.results); - expect(vm.noneUpcomingChallenge).toBeTruthy(); - }); - - it('check description length and calculate timezone of upcoming challenge `challenges/challenge/future`', function () { - isUpcomingChallengeSucess = true; - isPresentChallengeSuccess = true; - isPastChallengeSuccess = null; - successResponse = { - next: null, - results: [ - { - id: 1, - description: "the length of the upcoming challenge description is greater than or equal to 50", - creator: { - id: 1 - }, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - }, - { - id: 2, - description: "random description", - creator: { - id: 1 - }, - start_date: "Sat May 26 2015 22:41:51 GMT+0530", - end_date: "Sat May 26 2099 22:41:51 GMT+0530" - } - ] - }; - vm = createController(); - expect(vm.upcomingList).toEqual(successResponse.results); - expect(vm.noneUpcomingChallenge).toBeFalsy(); - - var timezone = moment.tz.guess(); - var zone = moment.tz.zone(timezone); - for (var i in vm.upcomingList) { - if (vm.upcomingList[i].description.length >= 50) { - expect(vm.upcomingList[i].isLarge).toEqual("..."); - } else { - expect(vm.upcomingList[i].isLarge).toEqual(""); - } - var offset = new Date(vm.upcomingList[i].start_date).getTimezoneOffset(); - expect(vm.upcomingList[i].time_zone).toEqual(zone.abbr(offset)); - - expect(vm.challengeCreator[vm.upcomingList[i].id]).toEqual(vm.upcomingList[i].creator.id); - expect(utilities.storeData).toHaveBeenCalledWith("challengeCreator", vm.challengeCreator); - } - }); - - it('upcoming challenge backend error `challenges/challenge/future/approved/public`', function () { - isUpcomingChallengeSucess = false; - isPresentChallengeSuccess = true; - isPastChallengeSuccess = null; - // success response for the ongoing challenge - successResponse = { - next: null, - results: [] - }; - vm = createController(); - expect(vm.currentList).toEqual(successResponse.results); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('when no past challenge found `challenges/challenge/past/approved/public`', function () { - isPastChallengeSuccess = true; - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = true; - successResponse = { - next: null, - results: [] - }; - vm = createController(); - expect(vm.pastList).toEqual(successResponse.results); - expect(vm.nonePastChallenge).toBeTruthy(); - }); - - it('check description length and calculate timezone of past challenge `challenges/challenge/past/approved/public`', function () { - isPastChallengeSuccess = true; - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = true; - successResponse = { - next: null, - results: [ - { - id: 1, - description: "the length of the past challenge description is greater than or equal to 50", - creator: { - id: 1 - }, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - }, - { - id: 2, - description: "random description", - creator: { - id: 1 - }, - start_date: "Sat May 26 2015 22:41:51 GMT+0530", - end_date: "Sat May 26 2099 22:41:51 GMT+0530" - } - ] - }; - vm = createController(); - expect(vm.pastList).toEqual(successResponse.results); - expect(vm.nonePastChallenge).toBeFalsy(); - - var timezone = moment.tz.guess(); - var zone = moment.tz.zone(timezone); - for (var i in vm.pastList) { - if (vm.pastList[i].description.length >= 50) { - expect(vm.pastList[i].isLarge).toEqual("..."); - } else { - expect(vm.pastList[i].isLarge).toEqual(""); - } - var offset = new Date(vm.pastList[i].start_date).getTimezoneOffset(); - expect(vm.pastList[i].time_zone).toEqual(zone.abbr(offset)); - - expect(vm.challengeCreator[vm.pastList[i].id]).toEqual(vm.pastList[i].creator.id); - expect(utilities.storeData).toHaveBeenCalledWith("challengeCreator", vm.challengeCreator); - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('past challenge backend error `challenges/challenge/past/approved/public`', function () { - isPastChallengeSuccess = false; - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = true; - // success response for the ongoing and upcoming challenge - successResponse = { - next: null, - results: [] - }; - vm = createController(); - expect(vm.currentList).toEqual(successResponse.results); - expect(vm.upcomingList).toEqual(successResponse.results); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('should call getAllResults method recursively when next is not null', function () { - isPresentChallengeSuccess = true; - isUpcomingChallengeSucess = null; - isPastChallengeSuccess = null; - - // mock response with next property set to a non-null value - successResponse = { - next: 'http://example.com/challenges/?page=2', - results: [ - { - id: 1, - description: "the length of the ongoing challenge description is greater than or equal to 50", - creator: { - id: 1 - }, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - } - ] - }; - - vm = createController(); - spyOn(vm, 'getAllResults').and.callThrough(); - const parameters = { - url: 'challenges/challenge/present/approved/public', - method: 'GET', - callback: jasmine.any(Function) - }; - vm.getAllResults(parameters, []); - expect(vm.currentList).toEqual(successResponse.results); - expect(vm.noneCurrentChallenge).toBeFalsy(); - expect(vm.getAllResults).toHaveBeenCalledTimes(2); - }); - - - }); -}); diff --git a/frontend/tests/controllers-test/changePwdCtrl.test.js b/frontend/tests/controllers-test/changePwdCtrl.test.js deleted file mode 100644 index b46599888e..0000000000 --- a/frontend/tests/controllers-test/changePwdCtrl.test.js +++ /dev/null @@ -1,177 +0,0 @@ -'use strict'; - -describe('Unit tests for change password controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $state, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_, _$state_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ChangePwdCtrl', {$scope: $scope}); - }; - vm = $controller('ChangePwdCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - utilities.storeData('userKey', 'encrypted key'); - spyOn(utilities, 'getData'); - spyOn(angular, 'element'); - - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(vm.wrnMsg).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.user).toEqual({}); - expect(vm.isFormError).toBeFalsy(); - expect($rootScope.canShowOldPassword).toBeFalsy(); - expect($rootScope.canShowNewPassword).toBeFalsy(); - expect($rootScope.canShowNewConfirmPassword).toBeFalsy(); - expect(angular.element).toHaveBeenCalledWith('.change-password-card'); - }); - }); - - describe('Validate helper functions', function () { - it('startLoader', function () { - var message = 'Start Loader'; - vm.startLoader(message); - expect($rootScope.isLoader).toEqual(true); - expect($rootScope.loaderTitle).toEqual(message); - }); - - it('stopLoader', function () { - var message = ''; - vm.stopLoader(); - expect($rootScope.isLoader).toEqual(false); - expect($rootScope.loaderTitle).toEqual(message); - }); - - it('toggleOldPasswordVisibility', function () { - var canShowOldPassword = $rootScope.canShowOldPassword; - vm.toggleOldPasswordVisibility(); - expect($rootScope.canShowOldPassword).toEqual(!canShowOldPassword); - }); - - it('toggleNewPasswordVisibility', function () { - var canShowNewPassword = $rootScope.canShowOldPassword; - vm.toggleNewPasswordVisibility(); - expect($rootScope.canShowNewPassword).toEqual(!canShowNewPassword); - }); - - it('toggleNewConfirmVisibility', function () { - var canShowNewConfirmPassword = $rootScope.canShowOldPassword; - vm.toggleNewConfirmVisibility(); - expect($rootScope.canShowNewConfirmPassword).toEqual(!canShowNewConfirmPassword); - }); - }); - - describe('Unit tests for changePassword function `auth/password/change/`', function () { - var success; - var try_response; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - vm.user.old_password = "Old Password"; - vm.user.new_password1 = "New Password 1"; - vm.user.new_password2 = "New Password 2"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success' - }); - } else if (success == null){ - parameters.callback.onError({ - data: null - }); - } else { - parameters.callback.onError({ - data: try_response - }); - } - }; - }); - - it('successfully change password', function () { - var resetconfirmFormValid = true; - success = true; - $state.params.user_id = 1; - - vm.changePassword(resetconfirmFormValid); - expect(vm.user.error).toBeFalsy(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Your password has been changed successfully!"); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when old password is valid', function () { - var resetconfirmFormValid = true; - success = false; - $state.params.user_id = 1; - try_response = { - old_password: "old password" - }; - - vm.changePassword(resetconfirmFormValid); - expect(vm.user.error).toEqual("Failed"); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(Object.values(try_response.old_password).join(" ")); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when password1 is valid', function () { - var resetconfirmFormValid = true; - success = false; - $state.params.user_id = 1; - try_response = { - new_password1: "password1" - }; - - vm.changePassword(resetconfirmFormValid); - expect(vm.user.error).toEqual("Failed"); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(Object.values(try_response.new_password1).join(" ")); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when password2 is valid', function () { - var resetconfirmFormValid = true; - success = false; - $state.params.user_id = 1; - try_response = { - new_password2: "password2" - }; - - vm.changePassword(resetconfirmFormValid); - expect(vm.user.error).toEqual("Failed"); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(Object.values(try_response.new_password2).join(" ")); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error with catch clause', function () { - var resetconfirmFormValid = true; - success = null; - $state.params.user_id = 1; - - vm.changePassword(resetconfirmFormValid); - expect(vm.user.error).toEqual("Failed"); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual("Something went wrong! Please refresh the page and try again."); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('invalid form submission', function () { - var resetconfirmFormValid = false; - vm.changePassword(resetconfirmFormValid); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/contactUsCtrl.test.js b/frontend/tests/controllers-test/contactUsCtrl.test.js deleted file mode 100644 index 401a5ba31f..0000000000 --- a/frontend/tests/controllers-test/contactUsCtrl.test.js +++ /dev/null @@ -1,193 +0,0 @@ -'use strict'; - -describe('Unit tests for ContactUs Controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $state, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_, _$state_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('contactUsCtrl', {$scope: $scope}); - }; - vm = $controller('contactUsCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - utilities.storeData('userKey', 'encrypted key'); - spyOn(utilities, 'getData'); - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(vm.wrnMsg).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.user).toEqual({}); - expect(vm.isFormError).toBeFalsy(); - }); - }); - - describe('Unit tests for global backend call', function () { - var success; - var successResponse = { - name: "Some Name", - email: "abc@gmail.com" - }; - var errorResponse = 'error'; - - beforeEach(function (){ - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('get the previous profile data `web/contact/`', function () { - success = true; - vm = createController(); - expect(vm.user).toEqual(successResponse); - expect(vm.isDisabled).toBeTruthy(); - }); - }); - - describe('Unit tests for contactUs function `web/contact/`', function () { - var success, tryClauseResponse = {}; - var successResponse = { - message: "Some Message", - }; - var usernameInvalid = { - name: ["xyz"], - }; - var emailInvalid = { - email: ["xyz@gmail.com"], - }; - var messageInvalid = { - message: ["New Message"] - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 201 - }); - } else if (success == null){ - parameters.callback.onError({ - data: null, - status: 400 - }); - } else { - parameters.callback.onError({ - data: tryClauseResponse, - status: 400 - }); - } - }; - }); - - it('successfully post data in contact us form', function () { - var resetconfirmFormValid = true; - success = true; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect($rootScope.notify).toHaveBeenCalledWith("success", successResponse.message); - expect($state.go).toHaveBeenCalledWith('home'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when username is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = usernameInvalid; - success = false; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.name[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when email is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = emailInvalid; - success = false; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.email[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when message is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = messageInvalid; - success = false; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.message[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('other backend error in try clause', function () { - var resetconfirmFormValid = true; - tryClauseResponse = {}; - success = false; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Some error occured. Please try again!"); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error with catch clause', function () { - var resetconfirmFormValid = true; - success = null; - vm.user.name = "abc"; - vm.user.email = "abc@gmail.com"; - vm.user.message = "Some Other Message"; - - vm.contactUs(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect($rootScope.notify).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/dashCtrl.test.js b/frontend/tests/controllers-test/dashCtrl.test.js deleted file mode 100644 index 222358c9ae..0000000000 --- a/frontend/tests/controllers-test/dashCtrl.test.js +++ /dev/null @@ -1,320 +0,0 @@ -'use strict'; - -describe('Unit tests for dashboard controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $state, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$state_, _$rootScope_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('DashCtrl', {$scope: $scope}); - }; - vm = $controller('DashCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - utilities.storeData('userKey', 'encrypted key'); - spyOn(utilities, 'getData'); - vm = createController(); - - expect(vm.challengeCount).toEqual(0); - expect(vm.hostTeamCount).toEqual(0); - expect(vm.hostTeamExist).toBeFalsy(); - expect(vm.participatedTeamCount).toEqual(0); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(vm.redirectUrl).toEqual({}); - }); - }); - - describe('Unit tests for global backend calls', function () { - var successResponse, errorResponse, status; - var isUserDetails, isPresentChallenge, isHostTeam, isParticipantTeam; - - beforeEach(function () { - spyOn(utilities, 'resetStorage'); - spyOn($state, 'go'); - spyOn(window, 'alert'); - - utilities.sendRequest = function (parameters) { - if ((isUserDetails == true && parameters.url == 'auth/user/') || - (isPresentChallenge == true && parameters.url == 'challenges/challenge/present/approved/public') || - (isHostTeam == true && parameters.url == 'hosts/challenge_host_team/') || - (isParticipantTeam == true && parameters.url == 'participants/participant_team')) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else if ((isUserDetails == false && parameters.url == 'auth/user/') || - (isPresentChallenge == false && parameters.url == 'challenges/challenge/present/approved/public') || - (isHostTeam == false && parameters.url == 'hosts/challenge_host_team/') || - (isParticipantTeam == false && parameters.url == 'participants/participant_team')){ - parameters.callback.onError({ - data: errorResponse, - status: status - }); - } - }; - }); - - it('get the user details `auth/user/`', function () { - isUserDetails = true; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = null; - successResponse = { - username: 'xyz', - first_name: 'first name', - last_name: 'last name' - }; - vm = createController(); - expect(vm.name).toEqual(successResponse.username); - - }); - - it('403 backend error on getting user details `auth/user/`', function () { - isUserDetails = false; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = null; - status = 403; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(vm.error).toEqual(errorResponse); - expect(vm.isPrivileged).toEqual(false); - }); - - it('401 backend error on getting user details `auth/user/`', function () { - isUserDetails = false; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = null; - status = 401; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(window.alert).toHaveBeenCalledWith("Timeout, Please login again to continue!"); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith("auth.login"); - expect($rootScope.isAuth).toBeFalsy(); - }); - - it('get all ongoing challenges `challenges/challenge/present/approved/public`', function () { - isUserDetails = null; - isPresentChallenge = true; - isHostTeam = null; - isParticipantTeam = null; - successResponse = { - next: null, - results: [ - { - id: 1, - title: "Challenge title 1", - description: "Challenge description 1" - }, - { - id: 2, - title: "Challenge title 2", - description: "Challenge description 2" - }, - ] - }; - vm = createController(); - expect(vm.challengeCount).toEqual(successResponse.results.length); - expect(vm.hostTeamExist).toBeFalsy(); - }); - - it('should call getAllChallenges method recursively when next is not null', function () { - isUserDetails = null; - isPresentChallenge = true; - isHostTeam = null; - isParticipantTeam = null; - // mock response with next property set to a non-null value - successResponse = { - next: 'http://example.com/challenges/?page=2', - results: [ - { - id: 1, - description: "the length of the ongoing challenge description is greater than or equal to 50", - creator: { - id: 1 - }, - start_date: "Fri June 12 2018 22:41:51 GMT+0530", - end_date: "Fri June 12 2099 22:41:51 GMT+0530" - } - ] - }; - - vm = createController(); - spyOn(vm, 'getAllChallenges').and.callThrough(); - const parameters = { - url: 'challenges/challenge/present/approved/public', - method: 'GET', - callback: jasmine.any(Function) - }; - vm.getAllChallenges(parameters, "challengeCount"); - expect(vm.hostTeamExist).toBeFalsy(); - expect(vm.getAllChallenges).toHaveBeenCalledTimes(2); - }); - - it('403 backend error on getting all ongoing challenges `challenges/challenge/present/approved/public`', function () { - isUserDetails = null; - isPresentChallenge = false; - isHostTeam = null; - isParticipantTeam = null; - status = 403; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(vm.error).toEqual(errorResponse); - expect(vm.isPrivileged).toEqual(false); - }); - - it('401 backend error on getting all ongoing challenges `challenges/challenge/present/approved/public`', function () { - isUserDetails = null; - isPresentChallenge = false; - isHostTeam = null; - isParticipantTeam = null; - status = 401; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(window.alert).toHaveBeenCalledWith("Timeout, Please login again to continue!"); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith("auth.login"); - expect($rootScope.isAuth).toBeFalsy(); - }); - - it('get host teams details `hosts/challenge_host_team/`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = true; - isParticipantTeam = null; - successResponse = { - results: [ - { - id: 1, - team_name: "Host team name 1", - created_by: "user 1", - team_url: "https://team1.url" - }, - { - id: 2, - team_name: "Host team name 2", - created_by: "user 2", - team_url: "https://team2.url" - }, - ] - }; - vm = createController(); - expect(vm.hostTeamCount).toEqual(successResponse.results.length); - }); - - it('403 backend error on getting host team details `hosts/challenge_host_team/`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = false; - isParticipantTeam = null; - status = 403; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(vm.error).toEqual(errorResponse); - expect(vm.isPrivileged).toEqual(false); - }); - - it('401 backend error on getting host team details `hosts/challenge_host_team/`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = false; - isParticipantTeam = null; - status = 401; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(window.alert).toHaveBeenCalledWith("Timeout, Please login again to continue!"); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith("auth.login"); - expect($rootScope.isAuth).toBeFalsy(); - }); - - it('get participated teams details `participants/participant_team`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = true; - successResponse = { - results: [ - { - id: 1, - team_name: "Participants team name 1", - created_by: "user 1", - team_url: "https://team1.url" - }, - { - id: 2, - team_name: "Participants team name 2", - created_by: "user 2", - team_url: "https://team2.url" - }, - ] - }; - vm = createController(); - expect(vm.participatedTeamCount).toEqual(successResponse.results.length); - }); - - it('403 backend error on getting participated team details `participants/participant_team`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = false; - status = 403; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(vm.error).toEqual(errorResponse); - expect(vm.isPrivileged).toEqual(false); - }); - - it('401 backend error on getting participated team details `participants/participant_team`', function () { - isUserDetails = null; - isPresentChallenge = null; - isHostTeam = null; - isParticipantTeam = false; - status = 401; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(window.alert).toHaveBeenCalledWith("Timeout, Please login again to continue!"); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith("auth.login"); - expect($rootScope.isAuth).toBeFalsy(); - }); - }); - - describe('Unit tests for hostChallenge function', function () { - beforeEach(function () { - spyOn($state, 'go'); - }); - - it('redirect to challenge host team page', function () { - vm.hostChallenge(); - expect($state.go).toHaveBeenCalledWith('web.challenge-host-teams'); - }); - }); -}); diff --git a/frontend/tests/controllers-test/featuredChallengeCtrl.test.js b/frontend/tests/controllers-test/featuredChallengeCtrl.test.js deleted file mode 100644 index 88cf3c9ad9..0000000000 --- a/frontend/tests/controllers-test/featuredChallengeCtrl.test.js +++ /dev/null @@ -1,216 +0,0 @@ -'use strict'; - -describe('Unit tests for featured challenge controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $state, $stateParams, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _$stateParams_, _$state_, _utilities_, _moment_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - $state = _$state_; - utilities = _utilities_; - $stateParams = _$stateParams_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('FeaturedChallengeCtrl', {$scope: $scope}); - }; - vm = $controller('FeaturedChallengeCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - vm = createController(); - expect(vm.challengeId).toEqual($stateParams.challengeId); - expect(vm.phaseSplitId).toEqual($stateParams.phaseSplitId); - expect(vm.phaseId).toBeNull(); - expect(vm.wrnMsg).toEqual({}); - expect(vm.page).toEqual({}); - expect(vm.phases).toEqual({}); - expect(vm.phaseSplits).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.isActive).toBeFalsy(); - expect(vm.showUpdate).toBeFalsy(); - expect(vm.showLeaderboardUpdate).toBeFalsy(); - expect(vm.poller).toBeNull(); - - // variables for loader of existing teams - expect(vm.isExistLoader).toBeFalsy(); - expect(vm.loaderTitle).toEqual(''); - }); - }); - - describe('Unit tests for global backend calls', function () { - var challengeSuccess, challengePhaseSuccess, challengePhaseSplitSuccess, successResponse; - var errorResponse = { - detail: 'error' - }; - - beforeEach(function () { - spyOn($state, 'go'); - spyOn(utilities, 'storeData'); - spyOn(utilities, 'hideLoader'); - - utilities.sendRequest = function (parameters) { - if ((challengeSuccess == true && parameters.url == 'challenges/challenge/undefined/') || - (challengePhaseSuccess == true && parameters.url == 'challenges/challenge/undefined/challenge_phase') || - (challengePhaseSplitSuccess == true && parameters.url == 'challenges/undefined/challenge_phase_split')) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else if ((challengeSuccess == false && parameters.url == 'challenges/challenge/undefined/') || - (challengePhaseSuccess == false && parameters.url == 'challenges/challenge/undefined/challenge_phase') || - (challengePhaseSplitSuccess == false && parameters.url == 'challenges/undefined/challenge_phase_split')) { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('get the details of the particular challenge `challenges/challenge//`', function () { - challengeSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - successResponse = { - is_active: true, - image: 'logo.png' - }; - vm = createController(); - expect(vm.page).toEqual(successResponse); - expect(vm.isActive).toEqual(successResponse.is_active); - }); - - it('when challenge logo image is null `challenges/challenge//`', function () { - challengeSuccess = true; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - successResponse = { - is_active: true, - image: null - }; - vm = createController(); - expect(vm.page).toEqual(successResponse); - expect(vm.isActive).toEqual(successResponse.is_active); - expect(vm.page.image).toEqual("dist/images/logo.png"); - }); - - it('get challenge backend error `challenges/challenge//`', function () { - challengeSuccess = false; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = null; - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get the details of the particular challenge phase `challenges/challenge//challenge_phase`', function () { - challengeSuccess = null; - challengePhaseSuccess = true; - challengePhaseSplitSuccess = null; - successResponse = { - id: 1, - name: "Challenge phase", - description: "Challenge phase description" - }; - vm = createController(); - expect(vm.phases).toEqual(successResponse); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get challenge phase backend error `challenges/challenge//challenge_phase`', function () { - challengeSuccess = null; - challengePhaseSuccess = false; - challengePhaseSplitSuccess = null; - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get the details of the particular challenge phase split `challenges//challenge_phase_split`', function () { - challengeSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = true; - successResponse = { - id: 1, - challenge_phase: "Challenge phase object", - dataset_split: "Dataset split object", - visibility: "public" - }; - vm = createController(); - expect(vm.phaseSplits).toEqual(successResponse); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get challenge phase split backend error `challenges//challenge_phase_split`', function () { - challengeSuccess = null; - challengePhaseSuccess = null; - challengePhaseSplitSuccess = false; - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for getLeaderboard function \ - `jobs/challenge_phase_split//leaderboard/?page_size=1000`', function () { - var success, successResponse, errorResponse; - - beforeEach(function () { - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn(angular, 'element'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully get the leaderboard', function () { - success = true; - successResponse = { - results: { - duration: 'year', - results: [ - { - id: 1, - submission__submitted_at: (new Date() - new Date().setFullYear(new Date().getFullYear() - 1)), - }, - ] - }, - }; - var phaseSplitId = 1; - vm.getLeaderboard(phaseSplitId); - expect(vm.isResult).toBeTruthy(); - expect(angular.element).toHaveBeenCalledWith('.exist-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith('Loading Leaderboard Items'); - expect(vm.leaderboard).toEqual(successResponse.results); - expect(vm.phase_name).toEqual(vm.phaseSplitId); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('getLeaderboard backend error', function () { - success = false; - errorResponse = 'error'; - var phaseSplitId = 1; - vm.getLeaderboard(phaseSplitId); - expect(vm.isResult).toEqual(true); - expect(vm.startLoader).toHaveBeenCalledWith('Loading Leaderboard Items'); - expect(vm.leaderboard.error).toEqual(errorResponse); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/hostedChallengeCtrl.test.js b/frontend/tests/controllers-test/hostedChallengeCtrl.test.js deleted file mode 100644 index 60fe9bf9ec..0000000000 --- a/frontend/tests/controllers-test/hostedChallengeCtrl.test.js +++ /dev/null @@ -1,114 +0,0 @@ -'use strict'; - -describe('Unit tests for hosted challenge controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('HostedChallengesCtrl', {$scope: $scope}); - }; - vm = $controller('HostedChallengesCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - utilities.storeData('userKey', 'encrypted key'); - spyOn(utilities, 'getData'); - spyOn(utilities, 'showLoader'); - - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(utilities.showLoader).toHaveBeenCalled(); - expect(vm.challengeList).toEqual([]); - expect(vm.challengeCreator).toEqual({}); - }); - }); - - describe('Unit tests for global backend calls', function () { - var hostTeamSuccess, hostedChallengeSuccess, successResponse, errorResponse; - - beforeEach(function () { - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'storeData'); - - utilities.sendRequest = function (parameters) { - if ((hostTeamSuccess == true && parameters.url == 'hosts/challenge_host_team/') || - (hostedChallengeSuccess == true && parameters.url != 'hosts/challenge_host_team/')) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else if ((hostTeamSuccess == false && parameters.url == 'hosts/challenge_host_team/') || - (hostedChallengeSuccess == false && parameters.url != 'hosts/challenge_host_team/')) { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('get host teams details backend error `hosts/challenge_host_team/`', function () { - hostTeamSuccess = false; - hostedChallengeSuccess = null; - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get the details of the hosted challenge \ - `challenges/challenge_host_team//challenge`', function () { - hostTeamSuccess = true; - hostedChallengeSuccess = true; - successResponse = { - results: [ - { - id: 1, - title: "Hosted challenge title", - description: "Host challenge description", - creator: "hostUser" - } - ] - }; - var challengeList = []; - - vm = createController(); - for (var i = 0; i < successResponse.results.length; i++) { - challengeList.push(successResponse.results[i]); - expect(vm.challengeList).toEqual(challengeList); - expect(utilities.storeData).toHaveBeenCalled(); - } - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - - it('get the hosted challenge details backend error', function () { - hostTeamSuccess = true; - hostedChallengeSuccess = false - // host team details response - successResponse = { - results: [ - { - id: 1, - team_name: "Host team name", - team_url: "https://host_team.url", - created_by: "hostchallenge descriptionUser" - } - ] - }; - // hosted challenge response - errorResponse = { - error: 'error' - }; - vm = createController(); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/mainCtrl.test.js b/frontend/tests/controllers-test/mainCtrl.test.js deleted file mode 100644 index ae6956e51f..0000000000 --- a/frontend/tests/controllers-test/mainCtrl.test.js +++ /dev/null @@ -1,131 +0,0 @@ -'use strict'; - -describe('Unit tests for main controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $state, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _$state_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('MainCtrl', {$scope: $scope}); - }; - vm = $controller('MainCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - vm = createController(); - expect(vm.user).toEqual({}); - expect(vm.challengeList).toEqual([]); - expect(vm.isChallenge).toBeTruthy({}); - expect(vm.redirectUrl).toEqual({}); - }); - }); - - describe('Unit tests for getChallenge function `challenges/featured/`', function () { - var success, successResponse; - var errorResponse = 'error'; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully get featured challenge', function () { - success = true; - successResponse = 'success'; - vm.getChallenge(); - expect(vm.challengeList).toEqual(successResponse); - }); - }); - - describe('Unit tests for init function `auth/user/`', function () { - var success, successResponse, errorResponse; - - beforeEach(function () { - spyOn($state, 'go'); - spyOn(utilities, 'resetStorage'); - utilities.storeData('userKey', 'encrypted key'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse, - status: 401 - }); - } - }; - }); - - it('check for the authenticated user', function () { - success = true; - successResponse = { - username: 'abc123' - }; - vm.init(); - expect(utilities.resetStorage).not.toHaveBeenCalled(); - expect(vm.user.name).toEqual(successResponse.username); - }); - - it('init function backend error', function () { - success = false; - errorResponse = 'error'; - vm.init(); - expect(utilities.resetStorage).toHaveBeenCalled(); - expect($state.go).toHaveBeenCalledWith("auth.login"); - expect($rootScope.isAuth).toBeFalsy(); - }); - }); - - describe('Unit tests for hostChallenge function', function () { - beforeEach(function () { - spyOn($state, 'go'); - }); - - it('redirect to challenge host teams tab if authenticated', function () { - $rootScope.isAuth = true; - vm.hostChallenge(); - expect($state.go).toHaveBeenCalledWith('web.challenge-host-teams'); - }); - - it('redirect to login page', function () { - $rootScope.isAuth = false; - vm.hostChallenge(); - expect($state.go).toHaveBeenCalledWith('auth.login'); - expect($rootScope.previousState).toEqual("web.challenge-host-teams"); - }); - }); - - describe('Unit tests for profileDropdown function', function () { - var element = angular.element(".dropdown-button"); - - it('mocking dropdown function on `angular.element`', function () { - var dropdown = jasmine.createSpy(); - - vm.profileDropdown(); - element = jasmine.createSpy().and.returnValue({ - dropdown: dropdown - }); - }); - }); -}); diff --git a/frontend/tests/controllers-test/ourteamCtrl.test.js b/frontend/tests/controllers-test/ourteamCtrl.test.js deleted file mode 100644 index 75664cb6ec..0000000000 --- a/frontend/tests/controllers-test/ourteamCtrl.test.js +++ /dev/null @@ -1,76 +0,0 @@ -'use strict'; - -describe('Unit tests for OurTeam Controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('ourTeamCtrl', {$scope: $scope}); - }; - vm = $controller('ourTeamCtrl', { $scope: $scope }); - })); - - describe('Unit tests for global backend call for listing the team `web/team/`', function () { - var success, successResponse, errorResponse; - var teamDetails = [ - { - team_type: "Core Team", - name: "xyz", - email: "xyz@gmail.com", - description: "some description", - }, - { - team_type: "Contributor", - name: "abc", - email: "abc@gmail.com", - description: "some other description", - } - ]; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - teamDetails.forEach(member => { - it('when `team_type` is ' + member.team_type, function () { - successResponse = teamDetails; - success = true; - vm = createController(); - var coreTeamList = []; - var contributingTeamList = []; - if (member.team_type == "Core Team") { - expect(vm.coreTeamType).toEqual(member.team_type); - expect(vm.coreTeamList).toEqual(coreTeamList.push(member)); - } else { - expect(vm.contributingTeamType).toEqual(member.team_type); - expect(vm.contributingTeamList).toEqual(contributingTeamList.push(member)); - } - }); - }); - - it('when no team to display', function () { - successResponse = []; - success = true; - vm = createController(); - expect(vm.noTeamDisplay).toEqual("Team will be updated very soon !"); - }); - }); -}); diff --git a/frontend/tests/controllers-test/permissionCtrl.test.js b/frontend/tests/controllers-test/permissionCtrl.test.js deleted file mode 100644 index b99959dd0d..0000000000 --- a/frontend/tests/controllers-test/permissionCtrl.test.js +++ /dev/null @@ -1,32 +0,0 @@ -'use strict'; - -describe('Unit tests for permission controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('PermCtrl', {$scope: $scope}); - }; - utilities.storeData('emailError', 'Email is not verified'); - vm = $controller('PermCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - beforeEach(function () { - spyOn(utilities, 'getData'); - }); - - it('permission controller has default values', function () { - vm = createController(); - expect(utilities.getData).toHaveBeenCalledWith('emailError'); - expect(vm.emailError).toEqual(utilities.getData('emailError')); - }); - }); -}); diff --git a/frontend/tests/controllers-test/profileCtrl.test.js b/frontend/tests/controllers-test/profileCtrl.test.js deleted file mode 100644 index d6f4ae3d9c..0000000000 --- a/frontend/tests/controllers-test/profileCtrl.test.js +++ /dev/null @@ -1,316 +0,0 @@ -'use strict'; - -describe('Unit tests for profile controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $mdDialog, $state, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_, _$mdDialog_, _$state_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $mdDialog = _$mdDialog_; - $state = _$state_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('profileCtrl', {$scope: $scope}); - }; - vm = $controller('profileCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - beforeEach(function () { - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'storeData'); - spyOn(utilities, 'getData'); - }); - - it('has default values', function () { - vm = createController(); - expect(vm.user).toEqual({}); - expect(vm.countLeft).toEqual(0); - expect(vm.compPerc).toEqual(0); - expect(vm.inputType).toEqual('password'); - expect(vm.status).toEqual('Show'); - expect(vm.token).toEqual(''); - - expect(utilities.hideLoader).toHaveBeenCalled() - expect(vm.imgUrlObj).toEqual({profilePic: "dist/images/spaceman.png"}); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - }); - }); - - describe('Unit tests for global backend call', function () { - var success, successResponse; - var response = ["", null, "abc", undefined, "xyz"]; - var errorResponse = { - error: 'error' - }; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('getting the user profile details `auth/user/`', function () { - success = true; - successResponse = response; - var count = 0; - vm = createController(); - for (var i = 0; i < successResponse.length; i++) { - if (successResponse[i] === "" || successResponse[i] === undefined || successResponse[i] === null) { - successResponse[i] = "-"; - expect(vm.countLeft).toEqual(vm.countLeft); - } - count = count + 1; - } - expect(vm.compPerc).toEqual(parseInt((vm.countLeft / count) * 100)); - expect(vm.user).toEqual(successResponse); - expect(vm.user.complete).toEqual(100 - vm.compPerc); - }); - - it('backend error on getting profile details `auth/user/`', function () { - success = false; - spyOn($rootScope, 'notify'); - vm = createController(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - }); - - it('get auth token `accounts/user/get_auth_token`', function () { - success = true; - successResponse = { - token: 'abcdef01234' - }; - vm = createController(); - expect(vm.jsonResponse).toEqual(successResponse); - expect(vm.token).toEqual(successResponse.token); - }); - - it('backend error on getting auth token `accounts/user/get_auth_token`', function () { - success = false; - errorResponse = { - detail: 'error' - }; - spyOn($rootScope, 'notify'); - vm = createController(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.detail); - }); - }); - - describe('Unit tests for hideShowPassword function', function () { - it('when input type is `password`', function () { - vm.inputType = 'password'; - vm.hideShowPassword(); - expect(vm.inputType).toEqual('text'); - expect(vm.status).toEqual('Hide'); - }); - - it('when input type is `text`', function () { - vm.inputType = 'text'; - vm.hideShowPassword(); - expect(vm.inputType).toEqual('password'); - expect(vm.status).toEqual('Show'); - }); - }); - - describe('Unit tests for showConfirmation function', function () { - beforeEach(function () { - spyOn($rootScope, 'notify'); - }); - - it('successfully token copied to clipboard', function () { - vm.showConfirmation(); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Token copied to your clipboard."); - }); - }); - - describe('Unit tests for getAuthTokenDialog function', function () { - it('open token dialog', function () { - var $mdDialogOpened = false; - spyOn($mdDialog, 'show').and.callFake(function () { - $mdDialogOpened = true; - }); - - vm.getAuthTokenDialog(); - expect(vm.titleInput).toEqual(""); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBeTruthy(); - }); - }); - - describe('Unit tests for getAuthToken function', function () { - beforeEach(function () { - spyOn($mdDialog, 'hide'); - }); - - it('successfully set input type to `password`', function () { - var getTokenForm = false; - vm.getAuthToken(getTokenForm); - expect(vm.inputType).toEqual('password'); - expect(vm.status).toEqual('Show'); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for `updateProfile` function', function () { - var success, tryClauseResponse; - var usernameInvalid = { - username: ["username error"], - }; - var firstnameInvalid = { - first_name: ["firstname error"], - }; - var lastnameInvalid = { - last_name: ["lastname error"] - }; - var affiliationInvalid = { - affiliation: ["affiliation error"] - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - spyOn($state, 'reload'); - vm.user.first_name = "firstname"; - vm.user.last_name = "lastname"; - vm.user.affiliation = "affiliation"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - status: 200 - }); - } else if (success == null){ - parameters.callback.onError({ - data: null, - status: 400 - }); - } else { - parameters.callback.onError({ - data: tryClauseResponse, - status: 400 - }); - } - }; - }); - - it('successfully updated profile', function () { - var resetconfirmFormValid = true; - success = true; - vm.updateProfile(resetconfirmFormValid); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Profile updated successfully!"); - expect($state.reload()); - $mdDialog.hide(); - }); - - it('when firstname is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = firstnameInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.first_name[0]); - }); - - it('when lastname is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = lastnameInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.last_name[0]); - }); - - it('when affiliation is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = affiliationInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.affiliation[0]); - }); - - it('other backend error in try clause', function () { - var resetconfirmFormValid = true; - tryClauseResponse = {}; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Some error have occured . Please try again !"); - }); - - it('backend error with catch clause', function () { - var resetconfirmFormValid = true; - success = null; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect($rootScope.notify).toHaveBeenCalled(); - }); - - it('invalid form submission', function () { - var resetconfirmFormValid = false; - vm.updateProfile(resetconfirmFormValid); - $mdDialog.hide(); - $state.reload(); - }); - }); - - describe('Unit tests for `deactivate user` function', function () { - var success, deactivateAccountForm; - var errorResponse = { - error: 'error' - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse, - status: 400 - }); - } - }; - }); - - it('successfully deactivated user', function () { - success = true; - deactivateAccountForm = true; - vm.confirmDeactivateAccount(deactivateAccountForm); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Your account has been deactivated successfully."); - expect($state.go).toHaveBeenCalledWith("home"); - }); - - it('backend error', function () { - success = false; - deactivateAccountForm = true; - vm.confirmDeactivateAccount(deactivateAccountForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - }); - }); -}); diff --git a/frontend/tests/controllers-test/teamsCtrl.test.js b/frontend/tests/controllers-test/teamsCtrl.test.js deleted file mode 100644 index 9a953a287c..0000000000 --- a/frontend/tests/controllers-test/teamsCtrl.test.js +++ /dev/null @@ -1,487 +0,0 @@ -'use strict'; - -describe('Unit tests for teams controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $injector, $rootScope, $scope, utilities, $mdDialog, $state, $http, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _$injector_, _utilities_, _$mdDialog_, _loaderService_, _$state_, _$http_, ) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $mdDialog = _$mdDialog_; - $state =_$state_; - $http = _$http_; - $injector = _$injector_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('TeamsCtrl', {$scope: $scope}); - }; - vm = $controller('TeamsCtrl', { $scope: $scope }); - })); - - describe('Global variables', function () { - it('has default values', function () { - spyOn(utilities, 'showLoader'); - spyOn(utilities, 'getData'); - utilities.storeData('userKey', 'encrypted key'); - vm = createController(); - - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - expect(utilities.showLoader).toHaveBeenCalled(); - expect(vm.teamId).toBeNull(); - expect(vm.existTeam).toEqual({}); - expect(vm.currentPage).toEqual(''); - expect(vm.isNext).toEqual(''); - expect(vm.isPrev).toEqual(''); - expect(vm.team.error).toBeFalsy(); - expect(vm.showPagination).toBeFalsy(); - expect(vm.isExistLoader).toBeFalsy(); - expect(vm.loaderTitle).toEqual(''); - }); - }); - - describe('Unit tests for global backend calls', function () { - var success, successResponse, errorResponse; - var teamList = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - spyOn(utilities, 'deleteData'); - spyOn(utilities, 'storeData'); - spyOn(utilities, 'hideLoader'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - teamList.forEach(response => { - it('when pagination next is ' + response.next + 'and previous is ' + response.previous + '\ - `participants/participant_team`', function () { - success = true; - successResponse = response; - vm = createController(); - expect(vm.existTeam).toEqual(successResponse); - expect(vm.showPagination).toBeTruthy(); - expect(vm.paginationMsg).toEqual(''); - expect(utilities.deleteData).toHaveBeenCalledWith('emailError'); - - if (vm.existTeam.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - if (vm.existTeam.next !== null) { - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } else { - expect(vm.currentPage).toEqual(1); - } - }); - }); - - it('success of selectExistTeam function \ - `challenges/challenge//participant_team/`', function () { - success = true; - successResponse = { - next: 'page=4', - previous: 'page=2', - }; - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($state, 'go'); - spyOn(angular, 'element'); - vm.selectExistTeam(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.exist-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect($state.go).toHaveBeenCalledWith('web.challenge-page.overview'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error of selectExistTeam function \ - `challenges/challenge//participant_team/`', function () { - success = true; - // team pagination response - successResponse = { - next: 'page=4', - previous: 'page=2', - }; - errorResponse = { - next: 'page=4', - previous: 'page=2', - }; - vm = createController(); - success = false; - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($state, 'go'); - spyOn(angular, 'element'); - - vm.selectExistTeam(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.exist-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect(vm.existTeamError).toEqual("Please select a team"); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('to load data with pagination `load` function', function () { - success = true; - successResponse = { - // team pagination response - next: 'page=4', - previous: 'page=2', - }; - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn($http, 'get').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - var url = 'participants/participant_team/page=2'; - vm.load(url); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - var headers = { - 'Authorization': "Token " + utilities.getData('userKey') - }; - expect($http.get).toHaveBeenCalledWith(url, {headers: headers}); - }); - - it('backend error for the global function \ - `participants/participant_team`', function () { - success = false; - errorResponse = { - detail: 'email error' - }; - spyOn($state, 'go'); - vm = createController(); - expect(utilities.storeData).toHaveBeenCalledWith('emailError', errorResponse.detail); - expect($state.go).toHaveBeenCalledWith('web.permission-denied'); - expect(utilities.hideLoader).toHaveBeenCalled(); - }); - }); - - describe('Unit tests for createNewTeam function', function () { - var success, successResponse; - var errorResponse = { - team_name: ['error'] - }; - var teamList = [ - { - next: null, - previous: null, - }, - { - next: null, - previous: null, - }, - { - next: 'page=5', - previous: null, - }, - { - next: null, - previous: 'page=3', - }, - { - next: 'page=4', - previous: 'page=2', - } - ]; - - beforeEach(function () { - vm = createController(); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - spyOn(angular, 'element'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - teamList.forEach(response => { - it('when pagination next is ' + response.next + 'and previous is ' + response.previous + '\ - `participants/participant_team`', function () {; - success = true; - successResponse = response; - vm.team.teamName = "Team Name"; - vm.team.teamUrl = "https://team.url"; - vm.createNewTeam(); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.new-team-card'); - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect($rootScope.notify).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.team).toEqual({}); - - expect(vm.startLoader).toHaveBeenCalledWith("Loading Teams"); - expect(vm.existTeam).toEqual(successResponse); - expect(vm.showPagination).toEqual(true); - expect(vm.paginationMsg).toEqual(''); - - if (vm.existTeam.next == null) { - expect(vm.isNext).toEqual('disabled'); - expect(vm.currentPage).toEqual(1); - } else { - expect(vm.isNext).toEqual(''); - expect(vm.currentPage).toEqual(vm.existTeam.next.split('page=')[1] - 1); - } - - if (vm.existTeam.previous == null) { - expect(vm.isPrev).toEqual('disabled'); - } else { - expect(vm.isPrev).toEqual(''); - } - - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); - - it('backend error of the createNewTeam function `participants/participant_team`', function () { - success = false; - vm.createNewTeam(); - expect(vm.isExistLoader).toBeTruthy(); - expect(vm.loaderTitle).toEqual(''); - expect(angular.element).toHaveBeenCalledWith('.new-team-card'); - expect(vm.startLoader("Loading Teams")); - expect(vm.team.error).toEqual(errorResponse.team_name[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.team_name[0]); - }); - }); - - describe('Unit tests for confirmDelete function', function () { - beforeEach(function () { - spyOn($mdDialog, 'show').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - }); - - it('open dialog to confirm delete', function () { - var participantTeamId = 1; - var ev = new Event('$click'); - var confirm = $mdDialog.confirm() - .title('Would you like to remove yourself?') - .textContent('Note: This action will remove you from the team.') - .ariaLabel('Lucky day') - .targetEvent(ev) - .ok('Yes') - .cancel("No"); - vm.confirmDelete(ev, participantTeamId); - expect($mdDialog.show).toHaveBeenCalledWith(confirm); - }); - }); - - describe('Unit tests for inviteOthers function', function () { - beforeEach(function () { - spyOn($mdDialog, 'show').and.callFake(function () { - var deferred = $injector.get('$q').defer(); - return deferred.promise; - }); - }); - - it('open dialog to invite others', function () { - var participantTeamId = 1; - var ev = new Event('$click'); - var confirm = $mdDialog.prompt() - .title('Add other members to this Team') - .textContent('Enter the email address of the person') - .placeholder('email') - .ariaLabel('') - .targetEvent(ev) - .ok('Add') - .cancel('Cancel'); - vm.inviteOthers(ev, participantTeamId); - expect($mdDialog.show).toHaveBeenCalledWith(confirm); - }); - }); - - describe('Unit tests for showMdDialog function `participants/participant_team/`', function () { - var success; - var successResponse = { - team_name: "Team Name", - team_url: "https://team.url" - } - var errorResponse = { - error: 'error' - }; - - beforeEach(function () { - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully get the team details', function () { - success = true; - var participantTeamId = 1; - var ev = new Event('click'); - vm.showMdDialog(ev, participantTeamId); - expect(vm.participantTeamId).toEqual(participantTeamId); - expect(vm.team.teamName).toEqual(successResponse.team_name); - expect(vm.team.teamUrl).toEqual(successResponse.team_url); - }); - - it('backend error', function () { - success = false; - var participantTeamId = 1; - var ev = new Event('click'); - vm.showMdDialog(ev, participantTeamId); - expect(vm.stopLoader).toHaveBeenCalled(); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse['error']); - }); - - it('show dialog', function () { - var $mdDialogOpened = false; - $mdDialog.show = jasmine.createSpy().and.callFake(function () { - $mdDialogOpened = true; - }); - var participantTeamId = 1; - var ev = new Event('click'); - - vm.showMdDialog(ev, participantTeamId); - expect($mdDialog.show).toHaveBeenCalled(); - expect($mdDialogOpened).toBe(true); - }); - }); - - describe('Unit tests for updateParticipantTeamData `participants/participant_team/`', function () { - var success, successResponse, errorResponse; - var successResponse = { - results: { - team_name: "Team Name", - team_url: "https://team.url", - created_by: "user" - } - } - - beforeEach(function () { - spyOn(vm, 'stopLoader'); - spyOn($rootScope, 'notify'); - spyOn($mdDialog, 'hide'); - vm.team.name = "Team Name"; - vm.team.url = "https://team.url"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully updated participant team data', function () { - var updateParticipantTeamDataForm = true; - success = true; - vm.updateParticipantTeamData(updateParticipantTeamDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - expect(vm.team).toEqual({}); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Participant Team updated!"); - }); - - it('retrieves the updated lists', function () { - var updateParticipantTeamDataForm = true; - success = true; - vm.updateParticipantTeamData(updateParticipantTeamDataForm); - expect(vm.existTeam.results).toEqual(successResponse.results); - }); - - it('error when `team_name` in response', function () { - var updateParticipantTeamDataForm = true; - success = false; - errorResponse = { - team_name: 'team name error', - error: 'error' - }; - vm.updateParticipantTeamData(updateParticipantTeamDataForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.team_name); - }); - - it('other backend error', function () { - var updateParticipantTeamDataForm = true; - success = false; - errorResponse = { - error: 'error' - }; - vm.updateParticipantTeamData(updateParticipantTeamDataForm); - expect($rootScope.notify).toHaveBeenCalledWith("error", errorResponse.error); - }); - - it('invalid form submission', function () { - var updateParticipantTeamDataForm = false; - vm.updateParticipantTeamData(updateParticipantTeamDataForm); - expect($mdDialog.hide).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/updateProfileCtrl.test.js b/frontend/tests/controllers-test/updateProfileCtrl.test.js deleted file mode 100644 index 0c9e4f48b5..0000000000 --- a/frontend/tests/controllers-test/updateProfileCtrl.test.js +++ /dev/null @@ -1,180 +0,0 @@ -'use strict'; - -describe('Unit tests for update profile controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, $rootScope, $scope, utilities, $state, vm; - - beforeEach(inject(function (_$controller_, _$rootScope_, _utilities_, _$state_,) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state =_$state_; - - $scope = $rootScope.$new(); - vm = $controller('updateProfileCtrl', {$scope: $scope}); - })); - - describe('Global variables', function () { - it('has default values', function () { - expect(vm.wrnMsg).toEqual({}); - expect(vm.isValid).toEqual({}); - expect(vm.user).toEqual({}); - expect(vm.isFormError).toBeFalsy(); - }); - }); - - describe('Validate helper functions', function () { - it('startLoader', function () { - var message = 'Start Loader'; - vm.startLoader(message); - expect($rootScope.isLoader).toEqual(true); - expect($rootScope.loaderTitle).toEqual(message); - }); - - it('stopLoader', function () { - var message = ''; - vm.stopLoader(); - expect($rootScope.isLoader).toEqual(false); - expect($rootScope.loaderTitle).toEqual(message); - }); - }); - - describe('Unit tests for `updateProfile` function', function () { - var success, tryClauseResponse; - var updateProfileLoaderMessage = "Updating Your Profile"; - var usernameInvalid = { - username: ["username error"], - }; - var firstnameInvalid = { - first_name: ["firstname error"], - }; - var lastnameInvalid = { - last_name: ["lastname error"] - }; - var affiliationInvalid = { - affiliation: ["affiliation error"] - }; - - beforeEach(function () { - spyOn($rootScope, 'notify'); - spyOn($state, 'go'); - spyOn(vm, 'startLoader'); - spyOn(vm, 'stopLoader'); - vm.user.username = "abc123"; - vm.user.first_name = "firstname"; - vm.user.last_name = "lastname"; - vm.user.affiliation = "affiliation"; - - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: 'success', - status: 200 - }); - } else if (success == null){ - parameters.callback.onError({ - data: null, - status: 400 - }); - } else { - parameters.callback.onError({ - data: tryClauseResponse, - status: 400 - }); - } - }; - }); - - it('successfully updated profile', function () { - var resetconfirmFormValid = true; - success = true; - vm.updateProfile(resetconfirmFormValid); - expect(vm.startLoader).toHaveBeenCalledWith(updateProfileLoaderMessage); - expect($rootScope.notify).toHaveBeenCalledWith("success", "Profile updated successfully!"); - expect($state.go).toHaveBeenCalledWith('web.profile'); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when username is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = usernameInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.startLoader).toHaveBeenCalledWith(updateProfileLoaderMessage); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.username[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when firstname is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = firstnameInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.startLoader).toHaveBeenCalledWith(updateProfileLoaderMessage); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.first_name[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when lastname is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = lastnameInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.startLoader).toHaveBeenCalledWith(updateProfileLoaderMessage); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.last_name[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('when affiliation is invalid', function () { - var resetconfirmFormValid = true; - tryClauseResponse = affiliationInvalid; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.startLoader).toHaveBeenCalledWith(updateProfileLoaderMessage); - expect(vm.stopLoader).toHaveBeenCalled(); - expect(vm.isFormError).toBeTruthy(); - expect(vm.FormError).toEqual(tryClauseResponse.affiliation[0]); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('other backend error in try clause', function () { - var resetconfirmFormValid = true; - tryClauseResponse = {}; - success = false; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect(vm.isFormError).toBeTruthy(); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Some error have occured . Please try again !"); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('backend error with catch clause', function () { - var resetconfirmFormValid = true; - success = null; - - vm.updateProfile(resetconfirmFormValid); - expect(vm.isDisabled).toBeFalsy(); - expect($rootScope.notify).toHaveBeenCalled(); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - - it('invalid form submission', function () { - var resetconfirmFormValid = false; - vm.updateProfile(resetconfirmFormValid); - expect($rootScope.notify).toHaveBeenCalledWith("error", "Form fields are not valid!"); - expect(vm.stopLoader).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend/tests/controllers-test/webCtrl.test.js b/frontend/tests/controllers-test/webCtrl.test.js deleted file mode 100644 index fe8a0152a2..0000000000 --- a/frontend/tests/controllers-test/webCtrl.test.js +++ /dev/null @@ -1,66 +0,0 @@ -'use strict'; - -describe('Unit tests for web controller', function () { - beforeEach(angular.mock.module('evalai')); - - var $controller, createController, $rootScope, $scope, utilities, $state, $stateParams, vm; - - beforeEach(inject(function (_$controller_, _$injector_, _$rootScope_, _utilities_, _$state_, _$stateParams_) { - $controller = _$controller_; - $rootScope = _$rootScope_; - utilities = _utilities_; - $state =_$state_; - $stateParams = _$stateParams_; - - $scope = $rootScope.$new(); - createController = function () { - return $controller('WebCtrl', {$scope: $scope}); - }; - vm = $controller('WebCtrl', { $scope: $scope }); - utilities.storeData('userKey', 'encrypted'); - })); - - describe('Global variables', function () { - beforeEach(function () { - spyOn(utilities, 'hideLoader'); - spyOn(utilities, 'getData'); - }); - - it('has default values', function () { - vm = createController(); - expect(vm.user).toEqual({}); - expect(utilities.hideLoader).toHaveBeenCalled(); - expect(utilities.getData).toHaveBeenCalledWith('userKey'); - }); - }); - - describe('Unit tests for global backend call `auth/user/`', function () { - var success, successResponse, errorResponse; - - beforeEach(function () { - utilities.sendRequest = function (parameters) { - if (success) { - parameters.callback.onSuccess({ - data: successResponse, - status: 200 - }); - } else { - parameters.callback.onError({ - data: errorResponse - }); - } - }; - }); - - it('successfully get the user details', function () { - success = true; - successResponse = { - username: "user", - first_name: "firstname", - last_name: "lastname" - }; - vm = createController(); - expect(vm.name).toEqual(successResponse.username); - }); - }); -}); diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000000..6039af1d5d --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,36 @@ +import { fileURLToPath, URL } from 'node:url'; + +import { defineConfig } from 'vite'; +import AutoImport from 'unplugin-auto-import/vite'; +import Components from 'unplugin-vue-components/vite'; +import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'; +import vue from '@vitejs/plugin-vue'; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue(), + AutoImport({ + resolvers: [ElementPlusResolver()], + }), + Components({ + resolvers: [ElementPlusResolver()], + }), + ], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)), + }, + }, + server: { + host: true, + open: true, + proxy: { + '/dev-api': { + target: 'http://127.0.0.1:8000', + changeOrigin: true, + rewrite: (p) => p.replace(/^\/dev-api/, ''), + }, + }, + }, +}); diff --git a/frontend_v2/.editorconfig b/frontend_v2/.editorconfig deleted file mode 100644 index 6e87a003da..0000000000 --- a/frontend_v2/.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -# Editor configuration, see http://editorconfig.org -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -insert_final_newline = true -trim_trailing_whitespace = true - -[*.md] -max_line_length = off -trim_trailing_whitespace = false diff --git a/frontend_v2/.gitignore b/frontend_v2/.gitignore deleted file mode 100644 index 75df9b5fe7..0000000000 --- a/frontend_v2/.gitignore +++ /dev/null @@ -1,47 +0,0 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. - -# compiled output -/dist -/dist-server -/tmp -/out-tsc - -# compodoc documentation -/documentation - -# dependencies -/node_modules - -# IDEs and editors -/.idea -.project -.classpath -.c9/ -*.launch -.settings/ -*.sublime-workspace - -# IDE - VSCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json - -# misc -/.sass-cache -/connect.lock -/coverage -/libpeerconnection.log -npm-debug.log -testem.log -/typings -package-lock.json - -# e2e -/e2e/*.js -/e2e/*.map - -# System Files -.DS_Store -Thumbs.db diff --git a/frontend_v2/.prettierrc b/frontend_v2/.prettierrc deleted file mode 100644 index 8d3dfb047c..0000000000 --- a/frontend_v2/.prettierrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "printWidth": 120, - "singleQuote": true, - "useTabs": false, - "tabWidth": 2, - "semi": true, - "bracketSpacing": true -} diff --git a/frontend_v2/README.md b/frontend_v2/README.md deleted file mode 100644 index 8459585cdc..0000000000 --- a/frontend_v2/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# EvalAI-ngx - -Revamped codebase of EvalAI Frontend - -### For deploying with [Surge](https://surge.sh/): - -Surge will automatically generate deployment link whenever a pull request passes Travis CI. - -Suppose pull request number is 123 and it passes Travis CI. The deployment link can be found here: `https://pr-123-evalai.surge.sh` - -## Code scaffolding - -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. - -## Code Documentation - -We are using [compodoc](https://compodoc.github.io/website/guides/jsdoc-tags.html) for documentation. The goal of this tool is to generate a documentation for all the common APIs of the application like modules, components, injectables, routes, directives, pipes and classical classes. - -Compodoc supports [these](https://compodoc.github.io/website/guides/jsdoc-tags.html) JSDoc tags. - -### Building and Serving the documentation - -Run the following command to build and serve the docs: - -``` -npm run doc:buildandserve -``` - -Open http://localhost:8080 in the browser to have a look at the generated docs. - -## Build - -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build. - -## Running unit tests - -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). - -## Running end-to-end tests - -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). diff --git a/frontend_v2/angular.json b/frontend_v2/angular.json deleted file mode 100644 index d1d5e307d8..0000000000 --- a/frontend_v2/angular.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "$schema": "./node_modules/@angular/cli/lib/config/schema.json", - "version": 1, - "newProjectRoot": "projects", - "projects": { - "evalai": { - "root": "", - "sourceRoot": "src", - "projectType": "application", - "architect": { - "build": { - "builder": "@angular-devkit/build-angular:browser", - "options": { - "outputPath": "dist", - "index": "src/index.html", - "main": "src/main.ts", - "tsConfig": "src/tsconfig.app.json", - "polyfills": "src/polyfills.ts", - "stylePreprocessorOptions": { - "includePaths": ["src", "src/styles"] - }, - "assets": ["src/assets", "src/favicon.ico"], - "styles": [ - "./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css", - "node_modules/normalize.css/normalize.css", - "node_modules/materialize-css/dist/css/materialize.css", - "src/styles/base.scss", - "./node_modules/ng-pick-datetime/assets/style/picker.min.css", - "./node_modules/quill/dist/quill.core.css", - "./node_modules/quill/dist/quill.snow.css" - ] - }, - "configurations": { - "staging": { - "optimization": true, - "outputHashing": "all", - "sourceMap": false, - "extractCss": true, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true, - "fileReplacements": [ - { - "replace": "src/environments/environment.ts", - "with": "src/environments/environment.staging.ts" - } - ] - }, - "production": { - "optimization": true, - "outputHashing": "all", - "sourceMap": false, - "extractCss": true, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true, - "fileReplacements": [ - { - "replace": "src/environments/environment.ts", - "with": "src/environments/environment.prod.ts" - } - ] - } - } - }, - "serve": { - "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "browserTarget": "evalai:build" - }, - "configurations": { - "staging": { - "browserTarget": "evalai:build:staging" - }, - "production": { - "browserTarget": "evalai:build:production" - } - } - }, - "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", - "options": { - "browserTarget": "evalai:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "main": "src/test.ts", - "karmaConfig": "./karma.conf.js", - "polyfills": "src/polyfills.ts", - "tsConfig": "src/tsconfig.spec.json", - "scripts": [], - "stylePreprocessorOptions": { - "includePaths": ["src", "src/styles"] - }, - "styles": ["node_modules/normalize.css/normalize.css", "src/styles/base.scss"], - "assets": ["src/assets", "src/favicon.ico"] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"], - "exclude": ["**/node_modules/**"] - } - } - } - }, - "evalai-e2e": { - "root": "e2e", - "sourceRoot": "e2e", - "projectType": "application", - "architect": { - "e2e": { - "builder": "@angular-devkit/build-angular:protractor", - "options": { - "protractorConfig": "./protractor.conf.js", - "devServerTarget": "evalai:serve" - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": ["e2e/tsconfig.e2e.json"], - "exclude": ["**/node_modules/**"] - } - } - } - } - }, - "defaultProject": "evalai", - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "styleext": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - } -} diff --git a/frontend_v2/e2e/app.e2e-spec.ts b/frontend_v2/e2e/app.e2e-spec.ts deleted file mode 100644 index 2ff828b9c7..0000000000 --- a/frontend_v2/e2e/app.e2e-spec.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { AppPage } from './app.po'; - -describe('evalai App', () => { - let page: AppPage; - - beforeEach(() => { - page = new AppPage(); - }); - - it('should display welcome message', () => { - page.navigateTo(); - expect(page.getHeadingH3Text()).toEqual('Evaluating state-of-the-art in AI'); - }); -}); diff --git a/frontend_v2/e2e/app.po.ts b/frontend_v2/e2e/app.po.ts deleted file mode 100644 index ac00221241..0000000000 --- a/frontend_v2/e2e/app.po.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { browser, by, element } from 'protractor'; - -export class AppPage { - navigateTo() { - return browser.get('/'); - } - - getHeadingH3Text() { - return element(by.css('app-root app-home h3')).getText(); - } -} diff --git a/frontend_v2/e2e/tsconfig.e2e.json b/frontend_v2/e2e/tsconfig.e2e.json deleted file mode 100644 index f60fd80412..0000000000 --- a/frontend_v2/e2e/tsconfig.e2e.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "outDir": "../out-tsc/e2e", - "baseUrl": "./", - "module": "commonjs", - "target": "es5", - "types": ["jasmine", "jasminewd2", "node"] - } -} diff --git a/frontend_v2/karma.conf.js b/frontend_v2/karma.conf.js deleted file mode 100644 index 7a18daba8a..0000000000 --- a/frontend_v2/karma.conf.js +++ /dev/null @@ -1,32 +0,0 @@ -// Karma configuration file, see link for more information -// https://karma-runner.github.io/1.0/config/configuration-file.html - -module.exports = function (config) { - config.set({ - basePath: '', - frameworks: ['jasmine', '@angular-devkit/build-angular'], - plugins: [ - require('karma-jasmine'), - require('karma-chrome-launcher'), - require('karma-jasmine-html-reporter'), - require('karma-coverage-istanbul-reporter'), - require('@angular-devkit/build-angular/plugins/karma'), - ], - client: { - clearContext: false, // leave Jasmine Spec Runner output visible in browser - }, - coverageIstanbulReporter: { - dir: require('path').join(__dirname, 'coverage'), - reports: ['html', 'lcovonly'], - fixWebpackSourcePaths: true, - }, - - reporters: ['progress', 'kjhtml'], - port: 9876, - colors: true, - logLevel: config.LOG_ERROR, - autoWatch: true, - browsers: ['Chrome'], - singleRun: false, - }); -}; diff --git a/frontend_v2/package.json b/frontend_v2/package.json deleted file mode 100644 index 18baa14fa0..0000000000 --- a/frontend_v2/package.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "name": "evalai", - "version": "0.0.0", - "license": "MIT", - "scripts": { - "build": "ng build --prod", - "doc:build": "compodoc -p src/tsconfig.app.json", - "doc:buildandserve": "compodoc -p src/tsconfig.app.json;mkdir -p documentation/src/assets;cp -R src/assets/images documentation/src/assets/;compodoc -s", - "doc:serve": "compodoc -s", - "e2e": "ng e2e", - "format:check": "prettier --config ./.prettierrc --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"", - "format:fix": "pretty-quick --staged", - "lint": "ng lint", - "ng": "ng", - "start": "ng serve", - "test": "ng test" - }, - "husky": { - "hooks": { - "pre-commit": "run-s format:fix lint" - } - }, - "private": true, - "dependencies": { - "@angular/animations": "^7.2.15", - "@angular-devkit/build-angular": "~0.13.0", - "@angular/cdk": "^7.3.7", - "@angular/common": "^7.2.15", - "@angular/compiler": "^7.2.15", - "@angular/compiler-cli": "^7.2.15", - "@angular/core": "^7.2.15", - "@angular/forms": "^7.2.15", - "@angular/http": "^7.2.15", - "@angular/material": "^7.2.0", - "@angular/platform-browser": "^7.2.15", - "@angular/platform-browser-dynamic": "^7.2.15", - "@angular/router": "^7.2.15", - "@types/moment-timezone": "^0.5.12", - "core-js": "^2.4.1", - "hammerjs": "^2.0.8", - "materialize-css": "^0.97.8", - "moment": "^2.24.0", - "ng-pick-datetime": "^7.0.0", - "ngx-logger": "^4.1.9", - "ngx-quill": "^6.3.1", - "ngx-textarea-autosize": "^2.0.3", - "normalize.css": "^8.0.0", - "quill": "^1.3.7", - "rxjs": "^6.5.2", - "tslib": "^1.9.0", - "typescript": "~3.2.0", - "zone.js": "^0.8.29" - }, - "devDependencies": { - "@angular/cli": "^7.3.8", - "@angular/language-service": "^7.2.15", - "@compodoc/compodoc": "^1.1.2", - "@types/jasmine": "~2.8.3", - "@types/jasminewd2": "~2.0.2", - "@types/node": "~6.0.60", - "codelyzer": "^4.0.1", - "husky": "^4.2.5", - "jasmine-core": "~2.8.0", - "jasmine-spec-reporter": "~4.2.1", - "karma": "^4.0.1", - "karma-chrome-launcher": "~2.2.0", - "karma-cli": "~1.0.1", - "karma-coverage-istanbul-reporter": "^1.2.1", - "karma-jasmine": "~1.1.0", - "karma-jasmine-html-reporter": "^0.2.2", - "npm-run-all": "^4.1.5", - "prettier": "^2.0.5", - "pretty-quick": "^2.0.1", - "protractor": "~5.1.2", - "ts-node": "~4.1.0", - "tslint": "^5.9.1" - } -} diff --git a/frontend_v2/pr_deploy.sh b/frontend_v2/pr_deploy.sh deleted file mode 100644 index 9ddc65c119..0000000000 --- a/frontend_v2/pr_deploy.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then - echo "Not a Pull Request. Skipping surge deployment" - exit 0 -fi -echo "PR deployment start" -npm i -g surge -echo "Installed surge successfully" -export DEPLOY_DOMAIN=https://pr-${TRAVIS_PULL_REQUEST}-evalai.surge.sh -echo "Deployment domain -" -echo $DEPLOY_DOMAIN - -surge --project ./dist --domain $DEPLOY_DOMAIN --token $SURGE_TOKEN diff --git a/frontend_v2/protractor.conf.js b/frontend_v2/protractor.conf.js deleted file mode 100644 index b6f8837cf1..0000000000 --- a/frontend_v2/protractor.conf.js +++ /dev/null @@ -1,26 +0,0 @@ -// Protractor configuration file, see link for more information -// https://github.com/angular/protractor/blob/master/lib/config.ts - -const { SpecReporter } = require('jasmine-spec-reporter'); - -exports.config = { - allScriptsTimeout: 11000, - specs: ['./e2e/**/*.e2e-spec.ts'], - capabilities: { - browserName: 'chrome', - }, - directConnect: true, - baseUrl: 'http://localhost:4200/', - framework: 'jasmine', - jasmineNodeOpts: { - showColors: true, - defaultTimeoutInterval: 30000, - print: function () {}, - }, - onPrepare() { - require('ts-node').register({ - project: 'e2e/tsconfig.e2e.json', - }); - jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); - }, -}; diff --git a/frontend_v2/src/app/Directives/email.validator.ts b/frontend_v2/src/app/Directives/email.validator.ts deleted file mode 100644 index 4525c4bcd5..0000000000 --- a/frontend_v2/src/app/Directives/email.validator.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Directive } from '@angular/core'; -import { AbstractControl, NG_VALIDATORS, ValidationErrors, Validator } from '@angular/forms'; -import { GlobalService } from '../services/global.service'; - -@Directive({ - selector: '[appValidateEmail]', - providers: [{ provide: NG_VALIDATORS, useExisting: EmailValidatorDirective, multi: true }], -}) -export class EmailValidatorDirective implements Validator { - constructor(private globalService: GlobalService) {} - - validate(control: AbstractControl): ValidationErrors { - const email = control.get('email'); - if (email) { - return this.globalService.validateEmail(email.value) ? null : { InvalidEmail: true }; - } - return null; - } -} diff --git a/frontend_v2/src/app/Directives/image.lazyload.ts b/frontend_v2/src/app/Directives/image.lazyload.ts deleted file mode 100644 index 89f9516c11..0000000000 --- a/frontend_v2/src/app/Directives/image.lazyload.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { AfterViewInit, Directive, ElementRef, HostBinding, Input } from '@angular/core'; - -@Directive({ - selector: 'img[appLazyLoadImage]' -}) - -export class LazyImageDirective implements AfterViewInit { - - @HostBinding('attr.src') srcAttribute = null; - - @Input() src: string; - - constructor(private el: ElementRef) {} - - ngAfterViewInit() { - if(window && 'IntersectionObserver' in window) { - const obs = new IntersectionObserver(entries => { - entries.forEach(({ isIntersecting }) => { - if (isIntersecting) { - this.srcAttribute = this.src; - obs.unobserve(this.el.nativeElement); - } - }); - }); - obs.observe(this.el.nativeElement); - } - else { - this.srcAttribute = this.src; - } - } -} diff --git a/frontend_v2/src/app/Directives/password.validator.ts b/frontend_v2/src/app/Directives/password.validator.ts deleted file mode 100644 index 8757691af7..0000000000 --- a/frontend_v2/src/app/Directives/password.validator.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Directive } from '@angular/core'; -import { AbstractControl, NG_VALIDATORS, ValidationErrors, Validator } from '@angular/forms'; - -@Directive({ - selector: '[appComparePassword]', - providers: [{ provide: NG_VALIDATORS, useExisting: PasswordMismatchValidatorDirective, multi: true }], -}) -export class PasswordMismatchValidatorDirective implements Validator { - validate(control: AbstractControl): ValidationErrors { - const pswrd = control.get('password'); - const confirmpswrd = control.get('confirm_password'); - return pswrd && confirmpswrd && pswrd.value !== confirmpswrd.value ? { passwordMismatch: true } : null; - } -} diff --git a/frontend_v2/src/app/app-routing.module.ts b/frontend_v2/src/app/app-routing.module.ts deleted file mode 100644 index d9a9f6aad6..0000000000 --- a/frontend_v2/src/app/app-routing.module.ts +++ /dev/null @@ -1,87 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; - -// import component -import { NotFoundComponent } from './components/not-found/not-found.component'; - -const routes: Routes = [ - { - path: '', - loadChildren: './components/home/home.module#HomeModule', - data: { - title: 'EvalAI - Welcome', - }, - }, - { - path: 'about', - loadChildren: './components/about/about.module#AboutModule', - }, - { - path: 'auth', - loadChildren: './components/auth/auth.module#AuthModule', - }, - { - path: 'challenge', - redirectTo: 'challenges', - }, - { - path: 'challenge/:id', - loadChildren: './components/challenge/challenge.module#ChallengeModule', - }, - { - path: 'challenges', - loadChildren: './components/publiclists/publiclist.module#PubliclistModule', - }, - { - path: 'challenge-create', - loadChildren: './components/challenge-create/challenge-create.module#ChallengeCreateModule', - }, - { - path: 'contact', - loadChildren: './components/contact/contact.module#ContactModule', - }, - { - path: 'get-involved', - loadChildren: './components/get-involved/get-involved.module#GetInvolvedModule', - }, - { - path: 'our-team', - loadChildren: './components/our-team/our-team.module#OurTeamModule', - }, - { - path: 'privacy-policy', - loadChildren: './components/privacy-policy/privacy-policy.module#PrivacyPolicyModule', - }, - { - path: 'profile', - loadChildren: './components/profile/profile.module#ProfileModule', - }, - { - path: 'teams', - loadChildren: './components/publiclists/publiclist.module#TeamlistsModule', - }, - { - path: 'permission-denied', - loadChildren: './components/permission-denied/permission-denied.module#PermissionDeniedModule', - }, - { - path: 'template-challenge-create/:id/:phases', - loadChildren: - './components/template-challenge-create/template-challenge-create.module#TemplateChallengeCreateModule', - }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -@NgModule({ - imports: [RouterModule.forRoot(routes)], - exports: [RouterModule], -}) -export class AppRoutingModule {} diff --git a/frontend_v2/src/app/app.component.html b/frontend_v2/src/app/app.component.html deleted file mode 100644 index cf3416e7c7..0000000000 --- a/frontend_v2/src/app/app.component.html +++ /dev/null @@ -1,23 +0,0 @@ - -
- -
- - - - - - - diff --git a/frontend_v2/src/app/app.component.scss b/frontend_v2/src/app/app.component.scss deleted file mode 100644 index 37ad5bf1a6..0000000000 --- a/frontend_v2/src/app/app.component.scss +++ /dev/null @@ -1,18 +0,0 @@ -#up-arrow { - display: none; - position: fixed; - bottom: 20px; - right: 30px; - z-index: 99; - border: none; - outline: none; - background-color: #ffbe25; - color: white; - cursor: pointer; - padding: 10px 12px 12px 12px; - border-radius: 100px; -} - -#up-arrow:hover { - background-color: #808080; -} diff --git a/frontend_v2/src/app/app.component.spec.ts b/frontend_v2/src/app/app.component.spec.ts deleted file mode 100644 index aef15d945f..0000000000 --- a/frontend_v2/src/app/app.component.spec.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { Location } from '@angular/common'; -import { TestBed, fakeAsync, tick, async } from '@angular/core/testing'; -import { RouterTestingModule } from '@angular/router/testing'; -import { Router } from '@angular/router'; -import { GlobalService } from './services/global.service'; -import { AuthService } from './services/auth.service'; -import { EndpointsService } from './services/endpoints.service'; -import { AppComponent } from './app.component'; -import { HomeComponent } from './components/home/home.component'; -import { HomemainComponent } from './components/home/homemain/homemain.component'; -import { ToastComponent } from './components/utility/toast/toast.component'; -import { HeaderStaticComponent } from './components/nav/header-static/header-static.component'; -import { ApiService } from './services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { FooterComponent } from './components/nav/footer/footer.component'; -import { LoadingComponent } from './components/utility/loading/loading.component'; -import { ConfirmComponent } from './components/utility/confirm/confirm.component'; -import { ModalComponent } from './components/utility/modal/modal.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; - -describe('AppComponent', () => { - let location: Location; - let router: Router; - let fixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ - AppComponent, - HomeComponent, - HeaderStaticComponent, - FooterComponent, - ToastComponent, - LoadingComponent, - ConfirmComponent, - HomemainComponent, - ], - imports: [RouterTestingModule, HttpClientModule], - providers: [GlobalService, AuthService, ApiService, ModalComponent, EndpointsService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - - router = TestBed.get(Router); - location = TestBed.get(Location); - - fixture = TestBed.createComponent(AppComponent); - router.initialNavigation(); - })); - - // Mocking promis - it('fakeAsync works', fakeAsync(() => { - const promise = new Promise((resolve) => { - setTimeout(resolve, 10); - }); - let done = false; - promise.then(() => (done = true)); - tick(50); - expect(done).toBeTruthy(); - })); - - // mocking routes location - it('navigate to "" set location to root', fakeAsync(() => { - router.navigate(['/']); - tick(50); - expect(location.path()).toBe('/'); - })); - - // creation of app done - it('should create the app', async(() => { - const compFixture = TestBed.createComponent(AppComponent); - const app = compFixture.debugElement.componentInstance; - expect(app).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/app.component.ts b/frontend_v2/src/app/app.component.ts deleted file mode 100644 index dc77dba5f7..0000000000 --- a/frontend_v2/src/app/app.component.ts +++ /dev/null @@ -1,167 +0,0 @@ -import { mergeMap, map, filter } from 'rxjs/operators'; -import { Component, OnInit, OnDestroy, HostListener, Inject, ChangeDetectorRef } from '@angular/core'; -import { GlobalService } from './services/global.service'; -import { AuthService } from './services/auth.service'; -import { Router, NavigationEnd, ActivatedRoute, Event } from '@angular/router'; -import { DOCUMENT } from '@angular/common'; -import { Title } from '@angular/platform-browser'; -import { BehaviorSubject } from 'rxjs'; - -@Component({ - selector: 'app-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'], -}) -export class AppComponent implements OnInit, OnDestroy { - private scrolledState = false; - isLoading = false; - confirmParams = { isConfirming: false }; - modalParams = { isModalVisible: false }; - editPhaseModalParams = { isEditPhaseModalVisible: false }; - termsAndConditionsModalParams = { isTermsAndConditionsModalVisible: false }; - globalServiceSubscription: any; - globalLogoutTrigger: any; - globalLoadingSubscription: any; - globalConfirmSubscription: any; - globalModalSubscription: any; - globalEditPhaseModalSubscription: any; - globalTermsAndConditionsModalSubscription: any; - globalServiceSubscriptionScrollTop: any; - currentRoutePath: any; - isAuthSubscrption: any; - isAuth = new BehaviorSubject(false); - - /** - * Constructor. - * @param document Window document injection - * @param router Router Injection. - * @param activatedRoute ActivatedRoute Injection. - * @param titleService Title from angular's platform-browser Injection. - * @param globalService GlobalService Injection. - * @param authService AuthService Injection. - */ - constructor( - @Inject(DOCUMENT) private document: Document, - public router: Router, - public activatedRoute: ActivatedRoute, - public titleService: Title, - private globalService: GlobalService, - private authService: AuthService, - private changeDetector: ChangeDetectorRef, - ) {} - - /** - * Scroll event listener. - */ - @HostListener('window:scroll', []) - onWindowScroll(): void { - if (this.document.documentElement.scrollTop > 50) { - if (this.scrolledState === false) { - this.globalService.scrolledStateChange(true); - document.getElementById('up-arrow').style.display = 'block'; - } - } else { - if (this.scrolledState === true) { - this.globalService.scrolledStateChange(false); - document.getElementById('up-arrow').style.display = 'none'; - } - } - } - - /** - * Component when initialized. Subscribes to observables - */ - ngOnInit() { - this.router.events.subscribe((event: Event) => { - if (event instanceof NavigationEnd) { - this.currentRoutePath = event.url; // current url path - } - }); - this.isAuthSubscrption = this.authService.change.subscribe((authState) => { - this.isAuth.next(authState.isLoggedIn); - }); - const SELF = this; - this.globalServiceSubscription = this.globalService.currentScrolledState.subscribe((scrolledState) => { - this.scrolledState = scrolledState; - }); - this.globalLogoutTrigger = this.globalService.logout.subscribe(() => { - this.authService.logOut(); - }); - this.globalLoadingSubscription = this.globalService.currentisLoading.subscribe((isLoading) => { - setTimeout(() => { - this.isLoading = isLoading; - }, 0); - }); - this.globalConfirmSubscription = this.globalService.currentConfirmParams.subscribe((params) => { - setTimeout(() => { - this.confirmParams = params; - }, 0); - }); - this.globalModalSubscription = this.globalService.currentModalParams.subscribe((params) => { - setTimeout(() => { - this.modalParams = params; - }, 0); - }); - - this.globalEditPhaseModalSubscription = this.globalService.editPhaseModalParams.subscribe((params) => { - this.editPhaseModalParams = params; - }); - - this.globalTermsAndConditionsModalSubscription = this.globalService.termsAndConditionsModalParams.subscribe( - (params) => { - this.termsAndConditionsModalParams = params; - } - ); - - this.globalServiceSubscriptionScrollTop = this.globalService.scrolltop.subscribe(() => { - SELF.document.body.scrollTop = SELF.document.documentElement.scrollTop = 0; - }); - - // set page title form routes data - this.router.events - .pipe( - // filter for navigation end - filter((event) => event instanceof NavigationEnd), - // check it with current activated route - map(() => this.activatedRoute), - // loop state routes to get the last activated route, first child and return it - map((route) => { - while (route.firstChild) { - route = route.firstChild; - } - return route; - }), - // filter for primary route - filter((route) => route.outlet === 'primary'), - mergeMap((route) => route.data) - ) - // set platform based title service - .subscribe((event) => this.titleService.setTitle(event['title'])); - } - - /** - * Component On-Destroy. (Unsubscribes from subscriptions) - */ - ngOnDestroy() { - if (this.globalServiceSubscription) { - this.globalServiceSubscription.unsubscribe(); - } - if (this.globalLogoutTrigger) { - this.globalLogoutTrigger.unsubscribe(); - } - if (this.globalLoadingSubscription) { - this.globalLoadingSubscription.unsubscribe(); - } - if (this.globalServiceSubscriptionScrollTop) { - this.globalServiceSubscriptionScrollTop.unsubscribe(); - } - } - - ngAfterViewChecked() { - this.changeDetector.detectChanges(); - } - - scrollUp() { - document.body.scrollIntoView({ behavior: 'smooth' }); - } -} diff --git a/frontend_v2/src/app/app.module.ts b/frontend_v2/src/app/app.module.ts deleted file mode 100644 index 0868c6f767..0000000000 --- a/frontend_v2/src/app/app.module.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { BrowserModule, HAMMER_GESTURE_CONFIG } from '@angular/platform-browser'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { GestureConfig } from '@angular/material'; -import { HttpClientModule } from '@angular/common/http'; -import { QuillModule } from 'ngx-quill'; -import { LoggerModule, NgxLoggerLevel } from 'ngx-logger'; - -// Import services -import { WindowService } from './services/window.service'; -import { ApiService } from './services/api.service'; -import { GlobalService } from './services/global.service'; -import { ChallengeService } from './services/challenge.service'; -import { EndpointsService } from './services/endpoints.service'; - -// Import Components -import { AppComponent } from './app.component'; -import { AppRoutingModule } from './app-routing.module'; -import { AuthService } from './services/auth.service'; -import { ModalComponent } from './components/utility/modal/modal.component'; -import { ToastComponent } from './components/utility/toast/toast.component'; -import { EditphasemodalComponent } from './components/challenge/challengephases/editphasemodal/editphasemodal.component'; -import { TermsAndConditionsModalComponent } from './components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component'; - -// import module -import { SharedModule } from './shared/shared.module'; -import { environment } from '../environments/environment'; - -@NgModule({ - declarations: [ - AppComponent, - ModalComponent, - ToastComponent, - EditphasemodalComponent, - TermsAndConditionsModalComponent, - ], - imports: [ - BrowserModule, - BrowserAnimationsModule, - AppRoutingModule, - SharedModule, - HttpClientModule, - QuillModule.forRoot({ - modules: { - toolbar: [ - ['bold', 'italic', 'underline', 'strike'], - ['blockquote', 'code-block'], - [{ header: 1 }, { header: 2 }], // custom button values - [{ list: 'ordered' }, { list: 'bullet' }], // superscript/subscript - [{ indent: '-1' }, { indent: '+1' }], // outdent/indent - [{ direction: 'rtl' }], - [{ header: [1, 2, 3, 4, 5, 6, false] }], - [{ align: [] }], - ['link', 'image'], - ], - }, - }), - LoggerModule.forRoot({ - level: !environment.production ? NgxLoggerLevel.TRACE : NgxLoggerLevel.OFF, - serverLogLevel: NgxLoggerLevel.ERROR, - }), - ], - providers: [ - WindowService, - AuthService, - ApiService, - GlobalService, - ChallengeService, - EndpointsService, - { provide: HAMMER_GESTURE_CONFIG, useClass: GestureConfig }, - ], - schemas: [CUSTOM_ELEMENTS_SCHEMA], - bootstrap: [AppComponent], -}) -export class AppModule {} diff --git a/frontend_v2/src/app/components/about/about-routing.module.ts b/frontend_v2/src/app/components/about/about-routing.module.ts deleted file mode 100644 index 833013eb15..0000000000 --- a/frontend_v2/src/app/components/about/about-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { AboutComponent } from './about.component'; - -const routes: Routes = [ - { - path: '', - component: AboutComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class AboutRoutingModule {} diff --git a/frontend_v2/src/app/components/about/about.component.html b/frontend_v2/src/app/components/about/about.component.html deleted file mode 100644 index 703615f90e..0000000000 --- a/frontend_v2/src/app/components/about/about.component.html +++ /dev/null @@ -1,32 +0,0 @@ - - -
-
-
-

About Us

-

- EvalAI is built by a team of open source enthusiasts working at - CloudCV. CloudCV aims to make AI research - reproducible and easily accessible. We want to reduce the barrier to entry for doing research and make it easier - for researchers, students and developers to develop and use state-of-the-art algorithms as a service. -

-

- With EvalAI, we want to standardize the process of evaluating different methods on a dataset and make it simple - to host a competition. Comparing a new method with other existing approaches is an essential component of - research and this process has traditionally been affected by difference in evaluation metric implementation, - different splits of the dataset or minor modifications in the algorithm. This makes it extremely hard to - reproduce numbers from published papers and reliably compare your method with other existing approaches. By - building EvalAI, we hope to make this easier by standardizing the dataset splits, evaluation metrics and by - maintaining a public leaderboard of hosted challenges. -

-
-
-
-
- -
-
-
-
-
- diff --git a/frontend_v2/src/app/components/about/about.component.scss b/frontend_v2/src/app/components/about/about.component.scss deleted file mode 100644 index c728633a51..0000000000 --- a/frontend_v2/src/app/components/about/about.component.scss +++ /dev/null @@ -1,81 +0,0 @@ -@import './styles/variables.scss'; -@import './styles/mixins.scss'; - -.about-container { - max-width: 1450px; - margin: 0 auto; - padding: 50px 100px 10px 60px; - clear: both; - min-height: calc(100vh - 300px); -} - -.about-content-column { - margin-top: 68px; - box-sizing: border-box; - padding: 0 0.75rem; - min-height: 1px; - margin-left: auto; - left: 75px; - right: auto; -} - -.about-title { - color: #4d4d4d; - margin: 1.14rem 0 0.912rem 0; - font-size: 34px; - font-weight: $fw-regular; -} - -.about-content { - color: #4d4d4d; - font-size: 15px; - line-height: 1.5; - font-weight: $fw-light; -} - -@include screen-small { - .about-title { - text-align: center; - } - .about-content-column { - left: 0px; - } -} - -@include screen-medium { - .about-content-column { - left: 0px; - } -} - -/*space man*/ -.spaceman { - width: 200px; - position: absolute; - right: 15%; - top: 100px; - - animation: spaceman-anim 4s alternate linear infinite; -} -.spaceman img { - width: 100%; -} - -@keyframes spaceman-anim { - 0% { - transform: rotate(0deg); - top: 100px; - } - 30% { - transform: rotate(20deg); - top: 150px; - } - 70% { - transform: rotate(0deg); - top: 190px; - } - 100% { - transform: rotate(-10deg); - top: 240px; - } -} diff --git a/frontend_v2/src/app/components/about/about.component.spec.ts b/frontend_v2/src/app/components/about/about.component.spec.ts deleted file mode 100644 index 7ef86a3e8d..0000000000 --- a/frontend_v2/src/app/components/about/about.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { ApiService } from '../../services/api.service'; -import { AboutComponent } from './about.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { ActivatedRoute, Router } from '@angular/router'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; - -describe('AboutComponent', () => { - let component: AboutComponent; - let fixture: ComponentFixture; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [AboutComponent, HeaderStaticComponent, FooterComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(AboutComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/about/about.component.ts b/frontend_v2/src/app/components/about/about.component.ts deleted file mode 100644 index ea75489bd3..0000000000 --- a/frontend_v2/src/app/components/about/about.component.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { GlobalService } from '../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-about', - templateUrl: './about.component.html', - styleUrls: ['./about.component.scss'], -}) -export class AboutComponent implements OnInit { - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor(private globalService: GlobalService) {} - - /** - * Component on Initialization. - */ - ngOnInit() { - this.globalService.scrollToTop(); - } -} diff --git a/frontend_v2/src/app/components/about/about.module.ts b/frontend_v2/src/app/components/about/about.module.ts deleted file mode 100644 index a115023055..0000000000 --- a/frontend_v2/src/app/components/about/about.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { AboutComponent } from './about.component'; -import { AboutRoutingModule } from './about-routing.module'; - -// import module -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [AboutComponent], - imports: [CommonModule, AboutRoutingModule, SharedModule], - exports: [AboutComponent], -}) -export class AboutModule {} diff --git a/frontend_v2/src/app/components/auth/auth-routing.module.ts b/frontend_v2/src/app/components/auth/auth-routing.module.ts deleted file mode 100644 index 655bd86ea0..0000000000 --- a/frontend_v2/src/app/components/auth/auth-routing.module.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; - -// import component -import { AuthComponent } from './auth.component'; -import { LoginComponent } from './login/login.component'; -import { ResetPasswordComponent } from './reset-password/reset-password.component'; -import { ResetPasswordConfirmComponent } from './reset-password-confirm/reset-password-confirm.component'; -import { SignupComponent } from './signup/signup.component'; -import { VerifyEmailComponent } from './verify-email/verify-email.component'; - -const routes: Routes = [ - { - path: '', - component: AuthComponent, - children: [ - { path: '', redirectTo: 'login', pathMatch: 'full' }, - { path: 'login', component: LoginComponent }, - { path: 'reset-password', component: ResetPasswordComponent }, - { path: 'api/password/reset/confirm/:user_id/:reset_token', component: ResetPasswordConfirmComponent }, - { path: 'signup', component: SignupComponent }, - { path: 'verify-email/:token', component: VerifyEmailComponent }, - { path: '**', redirectTo: 'login' }, - ], - }, -]; -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class AuthRoutingModule {} diff --git a/frontend_v2/src/app/components/auth/auth.component.html b/frontend_v2/src/app/components/auth/auth.component.html deleted file mode 100644 index 7624152ce1..0000000000 --- a/frontend_v2/src/app/components/auth/auth.component.html +++ /dev/null @@ -1,50 +0,0 @@ -
- -
- - -
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
- -
-

Evaluating state of the art in AI!

-
-
-
-
-
{{ authService.regMsg }}
- -
-
- -
-
-
-
diff --git a/frontend_v2/src/app/components/auth/auth.component.scss b/frontend_v2/src/app/components/auth/auth.component.scss deleted file mode 100644 index c17fe7a71c..0000000000 --- a/frontend_v2/src/app/components/auth/auth.component.scss +++ /dev/null @@ -1,205 +0,0 @@ -@import 'styles/variables'; - -.auth-light-link { - &:hover { - color: $highlight; - } -} - -.fg-pass { - font-size: 0.8em; -} - -.auth-container { - transition: all 0.2s ease-in-out; -} - -.auth-home { - padding-top: 0px; - margin-top: 5px; -} - -img.auth-logo { - width: 90px; -} - -.graphic-cont, -.auth-cont { - display: inline-block; - padding: 10vh 40px 40px; - width: 70%; - background: #fff; - float: left; - min-height: 100vh; - overflow: hidden; - position: relative; -} - -.graphic-cont { - background: $dark-gray; - /* For browsers that do not support gradients */ - background: -webkit-linear-gradient($dark-gray, $grad-sec-gray); - /* For Safari 5.1 to 6.0 */ - background: -o-linear-gradient($dark-gray, $grad-sec-gray); - /* For Opera 11.1 to 12.0 */ - background: -moz-linear-gradient($dark-gray, $grad-sec-gray); - /* For Firefox 3.6 to 15 */ - background: linear-gradient($dark-gray, $grad-sec-gray); - /* Standard syntax */ - width: 30%; -} - -.auth-cloud-cont { - position: absolute; - bottom: 0; - height: 30%; - width: 100%; - left: 0; - - img { - width: 120%; - position: absolute; - bottom: 0; - } -} - -.social-auth-group { - margin-top: 20px; -} - -.moon { - width: 80px; - position: absolute; - top: 10px; - left: 10px; - - img { - width: 100%; - } - - animation: plane 50s linear infinite; -} - -@keyframes plane { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -.sun { - width: 200px; - position: absolute; - bottom: 15%; - right: -45px; - - img { - width: 100%; - } - - animation: sun 70s linear infinite; -} - -@keyframes sun { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -.star-img { - width: 100%; - position: absolute; - top: 0; - left: 0; -} - -.star1 { - animation: starone 2s alternate linear infinite; -} - -.star2 { - animation: startwo 3s alternate linear infinite; -} - -@keyframes starone { - 0% { - opacity: 1; - } - 50% { - opacity: 0.5; - } - 75% { - opacity: 0.8; - } - 100% { - opacity: 0.2; - } -} - -@keyframes startwo { - 0% { - opacity: 0.7; - } - 50% { - opacity: 0.2; - } - 75% { - opacity: 0.8; - } - 100% { - opacity: 1; - } -} - -.ufo { - width: 120px; - position: absolute; - - img { - width: 100%; - } - - animation: spaceman 14s alternate linear infinite; -} - -@keyframes spaceman { - 0% { - transform: rotate(0deg); - top: 10%; - left: 10%; - } - 50% { - transform: rotate(15deg); - top: 60%; - left: 20%; - } - 75% { - transform: rotate(-10deg); - top: 40%; - left: 60%; - } - 100% { - transform: rotate(0deg); - top: 20%; - left: 20%; - } -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .graphic-cont { - position: absolute; - width: 100%; - opacity: 0.4; - } - .auth-cont { - width: 100%; - background-color: rgba(255, 255, 255, 0.9); - } -} diff --git a/frontend_v2/src/app/components/auth/auth.component.spec.ts b/frontend_v2/src/app/components/auth/auth.component.spec.ts deleted file mode 100644 index 007fc4962e..0000000000 --- a/frontend_v2/src/app/components/auth/auth.component.spec.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { AuthComponent } from './auth.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ApiService } from '../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('AuthComponent', () => { - let component: AuthComponent; - let fixture: ComponentFixture; - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [AuthComponent, HeaderStaticComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(AuthComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/auth.component.ts b/frontend_v2/src/app/components/auth/auth.component.ts deleted file mode 100644 index dd5d0a8160..0000000000 --- a/frontend_v2/src/app/components/auth/auth.component.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'; -import { Router } from '@angular/router'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-auth', - templateUrl: './auth.component.html', - styleUrls: ['./auth.component.scss'], -}) -export class AuthComponent implements OnInit { - /** - * router local instance - */ - localRouter: any; - - @ViewChild('authContainer') authContainer: ElementRef; - - /** - * Constructor. - * @param router Router Injection. - * @param globalService GlobalService Injection. - * @param authService AuthServiceInjection - */ - constructor( - private router: Router, - private globalService: GlobalService, - public authService: AuthService - ) {} - - /** - * Component on initialization. - */ - ngOnInit() { - this.localRouter = this.router; - this.globalService.scrollToTop(); - this.authService.resetForm(); - } - - /** - * Navigate to a certain URL. - * @param url URL to navigate to (not in paranthesis) - */ - navigateTo(url) { - this.router.navigate([url]); - } -} diff --git a/frontend_v2/src/app/components/auth/auth.module.ts b/frontend_v2/src/app/components/auth/auth.module.ts deleted file mode 100644 index a4698360c4..0000000000 --- a/frontend_v2/src/app/components/auth/auth.module.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import components -import { LoginComponent } from './login/login.component'; -import { SignupComponent } from './signup/signup.component'; -import { ResetPasswordConfirmComponent } from './reset-password-confirm/reset-password-confirm.component'; -import { ResetPasswordComponent } from './reset-password/reset-password.component'; -import { VerifyEmailComponent } from './verify-email/verify-email.component'; -import { AuthComponent } from './auth.component'; - -// import service -import { AuthService } from '../../services/auth.service'; - -// import module -import { SharedModule } from '../../shared/shared.module'; -import { AuthRoutingModule } from './auth-routing.module'; - -@NgModule({ - declarations: [ - LoginComponent, - SignupComponent, - ResetPasswordConfirmComponent, - ResetPasswordComponent, - VerifyEmailComponent, - AuthComponent, - ], - imports: [CommonModule, AuthRoutingModule, SharedModule], - exports: [ - AuthComponent, - LoginComponent, - SignupComponent, - ResetPasswordComponent, - ResetPasswordConfirmComponent, - VerifyEmailComponent, - ], - providers: [AuthService], -}) -export class AuthModule {} diff --git a/frontend_v2/src/app/components/auth/login/login.component.html b/frontend_v2/src/app/components/auth/login/login.component.html deleted file mode 100644 index 37dd4390a7..0000000000 --- a/frontend_v2/src/app/components/auth/login/login.component.html +++ /dev/null @@ -1,94 +0,0 @@ -
- You are already logged In!
- please see the challenges - here! -
-
- -
-
- -
- -
- - - -
-

Username is too short.

-

Username is required.

-
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
-
-
-
- -
- -
-
{{ authService.FormError }}
-
-

- Start with a new account Sign Up -

-
-
-
diff --git a/frontend_v2/src/app/components/auth/login/login.component.scss b/frontend_v2/src/app/components/auth/login/login.component.scss deleted file mode 100644 index 0ea02caaa0..0000000000 --- a/frontend_v2/src/app/components/auth/login/login.component.scss +++ /dev/null @@ -1,33 +0,0 @@ -@import 'styles/variables'; - -a.active-auth { - color: $dark-black; -} - -.auth-light-link { - &:hover { - color: $highlight; - } -} - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} - -.wrn-msg { - font-size: 0.8em; -} - -input { - margin-bottom: 0px !important; -} - -.input-field { - height: 72px !important; - max-height: 72px !important; -} - -.fg-pass { - font-size: 0.8em; -} diff --git a/frontend_v2/src/app/components/auth/login/login.component.spec.ts b/frontend_v2/src/app/components/auth/login/login.component.spec.ts deleted file mode 100644 index b9a0d7492a..0000000000 --- a/frontend_v2/src/app/components/auth/login/login.component.spec.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { LoginComponent } from './login.component'; -import { InputComponent } from '../../utility/input/input.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { WindowService } from '../../../services/window.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { FormsModule } from '@angular/forms'; - -describe('LoginComponent', () => { - let component: LoginComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [LoginComponent, InputComponent], - providers: [GlobalService, AuthService, WindowService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule, FormsModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(LoginComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/login/login.component.ts b/frontend_v2/src/app/components/auth/login/login.component.ts deleted file mode 100644 index b16735a5da..0000000000 --- a/frontend_v2/src/app/components/auth/login/login.component.ts +++ /dev/null @@ -1,130 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { GlobalService } from '../../../services/global.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { Router } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-login', - templateUrl: './login.component.html', - styleUrls: ['./login.component.scss'], -}) -export class LoginComponent implements OnInit { - isNameFocused = false; - isPasswordFocused = false; - - /** - * Route path for challenge list - */ - challengesRoute = '/challenges/all'; - - /** - * Route path for login - */ - loginRoute = '/auth/login'; - - /** - * Route path for signup - */ - signupRoute = '/auth/signup'; - - /** - * All challenges common route path - */ - allChallengesRoutePathCommon = '/challenges/all'; - - /** - * Is user Logged in - */ - isLoggedIn: any = false; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection - * @param authService AuthService Injection - * @param router Router Injection. - * @param endpointsService EndPointsService Injection. - */ - constructor( - private globalService: GlobalService, - private apiService: ApiService, - public authService: AuthService, - private router: Router, - private endpointsService: EndpointsService - ) {} - - /** - * Constructor on initialization - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.authService.resetForm(); - } - - /** - * Constructor. - * @param self Router Injection. - */ - redirectCheck(self) { - let redirectTo = this.challengesRoute; - const REDIRECT_URL = self.globalService.getData(self.globalService.redirectStorageKey); - if (REDIRECT_URL && REDIRECT_URL['path']) { - redirectTo = REDIRECT_URL['path']; - self.globalService.deleteData(self.globalService.redirectStorageKey); - } - self.router.navigate([redirectTo]); - } - - // Function to login - userLogin(loginFormValid) { - if (!loginFormValid) { - this.globalService.stopLoader(); - return; - } - - this.globalService.startLoader('Taking you to EvalAI!'); - - const LOGIN_BODY = { - username: this.authService.getUser['name'], - password: this.authService.getUser['password'], - }; - - this.apiService.postUrl(this.endpointsService.loginURL(), LOGIN_BODY).subscribe( - (data) => { - this.globalService.storeData(this.globalService.authStorageKey, data['token']); - this.authService.loggedIn(true); - this.authService.setRefreshJWT(); - this.globalService.stopLoader(); - this.redirectCheck(this); - }, - - (err) => { - this.globalService.stopLoader(); - - if (err.status === 400) { - this.authService.isFormError = true; - try { - const non_field_errors = typeof err.error.non_field_errors !== 'undefined'; - if (non_field_errors) { - this.authService.FormError = err.error.non_field_errors[0]; - } - } catch (error) { - setTimeout(() => { - this.globalService.showToast('Error', 'Unable to Login.Please Try Again!', 5); - }, 1000); - } - } else { - this.globalService.handleApiError(err); - } - }, - () => {} - ); - } -} diff --git a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.html b/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.html deleted file mode 100644 index 9c1fe12ea9..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.html +++ /dev/null @@ -1,120 +0,0 @@ -
-
-
    -
  • - {{ authService.deliveredMsg }} -
  • -
- - - -
-
-
- -
-
-
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
-
- - - - - - -
-

Password is less than 8 characters.

-

Password confirmation is required.

-
-
-

Passwords do not match

-
-
-
-
-
- -
- -
-
{{ authService.FormError }}
-
-

- Start with a new account Sign Up -

-
-
-
-
diff --git a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.scss b/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.scss deleted file mode 100644 index db34ceb840..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.scss +++ /dev/null @@ -1,37 +0,0 @@ -@import 'styles/variables'; - -a.active-auth { - color: $dark-black; -} - -.auth-light-link { - &:hover { - color: $highlight; - } -} - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} - -.wrn-msg { - font-size: 0.8em; -} - -input { - margin-bottom: 0px !important; -} - -.input-field { - height: 72px !important; - max-height: 72px !important; -} - -.fg-pass { - font-size: 0.8em; -} - -.reg-control { - margin-top: 15px; -} diff --git a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.spec.ts b/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.spec.ts deleted file mode 100644 index bb26a01984..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ResetPasswordConfirmComponent } from './reset-password-confirm.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { FormsModule } from '@angular/forms'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { WindowService } from '../../../services/window.service'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -describe('ResetPasswordConfirmComponent', () => { - let component: ResetPasswordConfirmComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ResetPasswordConfirmComponent], - providers: [GlobalService, AuthService, WindowService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule, FormsModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ResetPasswordConfirmComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.ts b/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.ts deleted file mode 100644 index 67647e8a7a..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password-confirm/reset-password-confirm.component.ts +++ /dev/null @@ -1,103 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { GlobalService } from '../../../services/global.service'; -import { ActivatedRoute } from '@angular/router'; - -@Component({ - selector: 'app-reset-password-confirm', - templateUrl: './reset-password-confirm.component.html', - styleUrls: ['./reset-password-confirm.component.scss'], -}) -export class ResetPasswordConfirmComponent implements OnInit { - uid: any = ''; - token: any = ''; - - isNewPassword1Focused = false; - isNewPassword2Focused = false; - - /** - * Login route path - */ - loginRoute = '/auth/login'; - - /** - * Signup route path - */ - signupRoute = '/auth/signup'; - - constructor( - public authService: AuthService, - private apiService: ApiService, - private endpointService: EndpointsService, - private globalService: GlobalService, - private route: ActivatedRoute - ) {} - - ngOnInit() { - this.route.params.subscribe((params) => { - if (params['user_id']) { - this.uid = params['user_id']; - } - if (params['reset_token']) { - this.uid = params['reset_token']; - } - }); - } - - resetPasswordConfirm(resetconfirmFormValid) { - if (resetconfirmFormValid) { - this.globalService.startLoader('Resetting Your Password'); - - const RESET_BODY = JSON.stringify({ - new_password1: this.authService.getUser['new_password1'], - new_password2: this.authService.getUser['new_password2'], - uid: this.uid, - token: this.token, - }); - - const API_PATH = this.endpointService.resetPasswordConfirmURL(); - - this.apiService.postUrl(API_PATH, RESET_BODY).subscribe( - (response) => { - this.authService.isResetPassword = true; - this.authService.deliveredMsg = response.data.detail; - this.globalService.stopLoader(); - }, - - (err) => { - this.globalService.stopLoader(); - if (err.status === 400) { - this.authService.isFormError = true; - let non_field_errors, token_valid, password1_valid, password2_valid; - try { - non_field_errors = typeof err.error.non_field_errors !== 'undefined'; - token_valid = typeof err.error.token !== 'undefined'; - password1_valid = typeof err.error.new_password1 !== 'undefined'; - password2_valid = typeof err.error.new_password2 !== 'undefined'; - if (non_field_errors) { - this.authService.FormError = err.error.non_field_errors[0]; - } else if (token_valid) { - this.authService.FormError = err.error.token[0]; - } else if (password1_valid) { - this.authService.FormError = err.error.new_password1[0]; - } else if (password2_valid) { - this.authService.FormError = err.error.new_password2[0]; - } - } catch (error) { - setTimeout(() => { - this.authService.FormError = 'Something went wrong! Please refresh the page and try again.'; - this.globalService.showToast('Error', 'Reset Password UnSuccessful.Please Try Again!', 5); - }, 1000); - } - } else { - this.globalService.handleApiError(err); - } - }, - - () => {} - ); - } - } -} diff --git a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.html b/frontend_v2/src/app/components/auth/reset-password/reset-password.component.html deleted file mode 100644 index e95ada3247..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.html +++ /dev/null @@ -1,102 +0,0 @@ -
-
-
    -
  • -
    - Password reset link has been sent to your registered email address. Please check your email inbox. -
  • -
  • -
    - Back to Log In -
  • -
-
-
-
- -
-
- -
- - - -
-

Email address is required.

-
-
-

Please enter valid email address.

-
-
-
-
-
- -
- -
-
{{ authService.FormError }}
-
-

- Start with a new account Sign Up -

-
-
-
-
diff --git a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.scss b/frontend_v2/src/app/components/auth/reset-password/reset-password.component.scss deleted file mode 100644 index 0bf9b8f5c1..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.scss +++ /dev/null @@ -1,23 +0,0 @@ -@import 'styles/variables'; - -.fg-pass { - font-size: 0.8em; -} - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} - -.wrn-msg { - font-size: 0.8em; -} - -input { - margin-bottom: 0px !important; -} - -.input-field { - height: 72px !important; - max-height: 72px !important; -} diff --git a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.spec.ts b/frontend_v2/src/app/components/auth/reset-password/reset-password.component.spec.ts deleted file mode 100644 index 7b7f2b098c..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.spec.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ResetPasswordComponent } from './reset-password.component'; -import { FormsModule } from '@angular/forms'; -import { AuthService } from '../../../services/auth.service'; -import { GlobalService } from '../../../services/global.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; - -describe('ResetPasswordComponent', () => { - let component: ResetPasswordComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ResetPasswordComponent], - providers: [AuthService, GlobalService, EndpointsService, ApiService], - imports: [HttpClientModule, RouterTestingModule, FormsModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ResetPasswordComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.ts b/frontend_v2/src/app/components/auth/reset-password/reset-password.component.ts deleted file mode 100644 index 338cee8207..0000000000 --- a/frontend_v2/src/app/components/auth/reset-password/reset-password.component.ts +++ /dev/null @@ -1,81 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { GlobalService } from '../../../services/global.service'; - -@Component({ - selector: 'app-reset-password', - templateUrl: './reset-password.component.html', - styleUrls: ['./reset-password.component.scss'], -}) -export class ResetPasswordComponent implements OnInit { - isemailFocused = false; - - /** - * Login route path - */ - loginRoute = '/auth/login'; - - /** - * Signup route path - */ - signupRoute = '/auth/signup'; - - /** - * Reset-password route path - */ - resetPasswordRoute = '/auth/reset-password'; - - /** - * - * @param authService - * @param globalService - * @param apiService - * @param endpointService - */ - constructor( - public authService: AuthService, - private globalService: GlobalService, - private apiService: ApiService, - private endpointService: EndpointsService - ) {} - - ngOnInit() { - this.authService.resetForm(); - } - - // function to reset password - resetPassword(resetPassFormValid) { - if (resetPassFormValid) { - this.globalService.startLoader('Sending Mail'); - - const RESET_BODY = JSON.stringify({ - email: this.authService.getUser['email'], - }); - - const API_PATH = this.endpointService.resetPasswordURL(); - - this.apiService.postUrl(API_PATH, RESET_BODY).subscribe( - (response) => { - this.authService.isMail = false; - this.authService.getUser['error'] = false; - this.authService.isFormError = false; - this.authService.deliveredMsg = response.detail; - this.authService.getUser['email'] = ''; - this.globalService.stopLoader(); - }, - - (err) => { - this.authService.isFormError = true; - this.authService.FormError = 'Something went wrong. Please try again'; - this.globalService.stopLoader(); - }, - - () => {} - ); - } else { - this.globalService.stopLoader(); - } - } -} diff --git a/frontend_v2/src/app/components/auth/signup/signup.component.html b/frontend_v2/src/app/components/auth/signup/signup.component.html deleted file mode 100644 index 15bbf5072f..0000000000 --- a/frontend_v2/src/app/components/auth/signup/signup.component.html +++ /dev/null @@ -1,157 +0,0 @@ -
- -
-
- -
- -
- - - -
-

Username is too short.

-

Username is required.

-
-
- -
- - - -
-

Please enter a valid email address.

-

Email address is required.

-
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password is required.

-
-
- -
- - - - - - -
-

Password is less than 8 characters.

-

Password confirmation is required.

-
-
-

Passwords do not match

-
-
- -
- -
-
{{ authService.FormError }}
-
-

- Already have an account? - Log In -

-
-
-
diff --git a/frontend_v2/src/app/components/auth/signup/signup.component.scss b/frontend_v2/src/app/components/auth/signup/signup.component.scss deleted file mode 100644 index db34ceb840..0000000000 --- a/frontend_v2/src/app/components/auth/signup/signup.component.scss +++ /dev/null @@ -1,37 +0,0 @@ -@import 'styles/variables'; - -a.active-auth { - color: $dark-black; -} - -.auth-light-link { - &:hover { - color: $highlight; - } -} - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} - -.wrn-msg { - font-size: 0.8em; -} - -input { - margin-bottom: 0px !important; -} - -.input-field { - height: 72px !important; - max-height: 72px !important; -} - -.fg-pass { - font-size: 0.8em; -} - -.reg-control { - margin-top: 15px; -} diff --git a/frontend_v2/src/app/components/auth/signup/signup.component.spec.ts b/frontend_v2/src/app/components/auth/signup/signup.component.spec.ts deleted file mode 100644 index 877b3c2567..0000000000 --- a/frontend_v2/src/app/components/auth/signup/signup.component.spec.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { SignupComponent } from './signup.component'; -import { InputComponent } from '../../../components/utility/input/input.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { WindowService } from '../../../services/window.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { FormsModule } from '@angular/forms'; - -describe('SignupComponent', () => { - let component: SignupComponent; - let fixture: ComponentFixture; - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [SignupComponent, InputComponent], - providers: [GlobalService, AuthService, WindowService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule, FormsModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(SignupComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/signup/signup.component.ts b/frontend_v2/src/app/components/auth/signup/signup.component.ts deleted file mode 100644 index 13ecb199f5..0000000000 --- a/frontend_v2/src/app/components/auth/signup/signup.component.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { AfterViewInit } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { GlobalService } from '../../../services/global.service'; -import { Router } from '@angular/router'; -import { AuthService } from '../../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-signup', - templateUrl: './signup.component.html', - styleUrls: ['./signup.component.scss'], -}) -export class SignupComponent implements OnInit, AfterViewInit { - color = ''; - message = ''; - - isnameFocused = false; - ispasswordFocused = false; - iscnfrmpasswordFocused = false; - isemailFocused = false; - - /** - * Login route path - */ - loginRoute = '/auth/login'; - - /** - * Signup route path - */ - signupRoute = '/auth/signup'; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - * @param authService AuthService Injection. - * @param endpointsService EndPointsService Injection. - * @param router Router Injection. - */ - constructor( - private globalService: GlobalService, - private apiService: ApiService, - public authService: AuthService, - private endpointsService: EndpointsService, - private router: Router - ) {} - - /** - * Component init function. - */ - ngOnInit() {} - - /** - * Component after view initialized. - */ - ngAfterViewInit() {} - - // Function to signup - userSignUp(signupFormValid) { - if (signupFormValid) { - let email = this.authService.regUser['email']; - this.globalService.startLoader('Setting up your details!'); - const SIGNUP_BODY = JSON.stringify({ - username: this.authService.regUser['name'], - email: email.toLowerCase(), - password1: this.authService.regUser['password'], - password2: this.authService.regUser['confirm_password'], - }); - - this.apiService.postUrl(this.endpointsService.signupURL(), SIGNUP_BODY).subscribe( - (data) => { - if (data.status === 201) { - this.authService.isFormError = false; - this.authService.regMsg = 'Registered successfully, Login to continue!'; - } - - // Success Message in data.message - setTimeout(() => { - this.globalService.showToast('success', 'Registered successfully. Please verify your email address!', 5); - }, 1000); - - this.router.navigate([this.loginRoute]); - this.globalService.stopLoader(); - }, - - (err) => { - this.globalService.stopLoader(); - if (err.status === 400) { - this.authService.isFormError = true; - let non_field_errors, isUsername_valid, isEmail_valid, isPassword1_valid, isPassword2_valid; - try { - non_field_errors = typeof err.error.non_field_errors !== 'undefined'; - isUsername_valid = typeof err.error.username !== 'undefined'; - isEmail_valid = typeof err.error.email !== 'undefined'; - isPassword1_valid = typeof err.error.password1 !== 'undefined'; - isPassword2_valid = typeof err.error.password2 !== 'undefined'; - if (non_field_errors) { - this.authService.FormError = err.error.non_field_errors[0]; - } else if (isUsername_valid) { - this.authService.FormError = err.error.username[0]; - } else if (isEmail_valid) { - this.authService.FormError = err.error.email[0]; - } else if (isPassword1_valid) { - this.authService.FormError = err.error.password1[0]; - } else if (isPassword2_valid) { - this.authService.FormError = err.error.password2[0]; - } - } catch (error) { - setTimeout(() => { - this.globalService.showToast('Error', 'Registration UnSuccessful.Please Try Again!', 5); - }, 1000); - } - } else { - this.globalService.handleApiError(err); - } - }, - - () => {} - ); - } - } - - // function to check password strength - checkStrength(password) { - const passwordStrength = this.authService.passwordStrength(password); - this.message = passwordStrength[0]; - this.color = passwordStrength[1]; - } -} diff --git a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.html b/frontend_v2/src/app/components/auth/verify-email/verify-email.component.html deleted file mode 100644 index 181aec2b74..0000000000 --- a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
-
    -
  • {{ email_verify_msg }}.
  • -
- - - -
-
diff --git a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.scss b/frontend_v2/src/app/components/auth/verify-email/verify-email.component.scss deleted file mode 100644 index 9c747ee04e..0000000000 --- a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.scss +++ /dev/null @@ -1,6 +0,0 @@ -@import 'styles/variables'; - -.ev-horiz-list { - display: inline-block; - margin-right: 20px; -} diff --git a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.spec.ts b/frontend_v2/src/app/components/auth/verify-email/verify-email.component.spec.ts deleted file mode 100644 index cddcff478e..0000000000 --- a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { VerifyEmailComponent } from './verify-email.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('VerifyEmailComponent', () => { - let component: VerifyEmailComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [VerifyEmailComponent], - imports: [HttpClientModule, RouterTestingModule], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(VerifyEmailComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.ts b/frontend_v2/src/app/components/auth/verify-email/verify-email.component.ts deleted file mode 100644 index cfa9d54722..0000000000 --- a/frontend_v2/src/app/components/auth/verify-email/verify-email.component.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ActivatedRoute } from '@angular/router'; -import { AuthService } from '../../../services/auth.service'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-verify-email', - templateUrl: './verify-email.component.html', - styleUrls: ['./verify-email.component.scss'], -}) -export class VerifyEmailComponent implements OnInit { - /** - * Email verification token local - */ - token = ''; - - /** - * Is Email verified - */ - email_verify_msg = ''; - - /** - * Login route path - */ - loginRoute = '/auth/login'; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param globalService GlobalService Injection. - * @param route ActivatedRoute Injection. - */ - constructor( - private route: ActivatedRoute, - private globalService: GlobalService, - private authService: AuthService - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.globalService.startLoader('Verifying Email'); - this.route.params.subscribe((params) => { - if (params['token']) { - this.token = params['token']; - this.authService.verifyEmail( - this.token, - () => { - this.email_verify_msg = 'Your email has been verified successfully'; - this.globalService.stopLoader(); - }, - () => { - this.email_verify_msg = 'Something went wrong!! Please try again.'; - this.globalService.stopLoader(); - } - ); - } - }); - } -} diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create-routing.module.ts b/frontend_v2/src/app/components/challenge-create/challenge-create-routing.module.ts deleted file mode 100644 index 1c8bd07ae5..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { ChallengeCreateComponent } from './challenge-create.component'; - -const routes: Routes = [ - { - path: '', - component: ChallengeCreateComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class ChallengeCreateRoutingModule {} diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create.component.html b/frontend_v2/src/app/components/challenge-create/challenge-create.component.html deleted file mode 100644 index 99409079e5..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create.component.html +++ /dev/null @@ -1,112 +0,0 @@ - - -
-
-
-
-
-
-
-
Challenge creation using GitHub
-
-
-
    -
  1. Use this repository as template.
  2. -
  3. Generate your github personal acccess token and copy it in clipboard.
  4. -
  5. Add the github personal access token in the forked repository's secrets with the name AUTH_TOKEN.
  6. -
  7. Now, go to EvalAI to fetch the following details -
  8. -
      -
    1. evalai_user_auth_token - Go to profile page after logging in and click on Get your Auth Token to copy your auth token.
    2. -
    3. host_team_pk - Go to host team page and copy the ID for the team you want to use for challenge creation.
    4. -
    5. evalai_host_url - Use https://eval.ai for production server and https://staging.eval.ai for staging server.
    6. -
    -
  9. Create a branch with name challenge in the forked repository from the `master` branch. -
    - Note: Only changes to challenge branch will be synchronized with challenge on EvalAI.
  10. -
  11. Add evalai_user_auth_token and host_team_pk in github/host_config.json.
  12. -
  13. Read EvalAI challenge creation documentation to know more about how you want to structure your challenge. Once you are ready, start making changes in the yaml file, HTML templates, evaluation script according to your need.
  14. -
  15. Commit the changes and push the challenge branch in the repository and wait for the build to complete. View the logs of your build.
  16. -
  17. If challenge config contains errors then a issue will be opened automatically in the repository with the errors otherwise the challenge will be created on EvalAI.
  18. -
  19. Go to Hosted Challenges to view your challenge. The challenge will be publicly available once EvalAI admin approves the challenge.
  20. -
  21. To update the challenge on EvalAI, make changes in the repository and push to the challenge branch and wait for the build to complete.
  22. -
-
-
-
-
-
- - -
- - -
-
- -
-
- - diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create.component.scss b/frontend_v2/src/app/components/challenge-create/challenge-create.component.scss deleted file mode 100644 index 719b96e8e2..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create.component.scss +++ /dev/null @@ -1,86 +0,0 @@ -@import 'styles/variables'; - -.challenge-create-flex { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.challenge-create-content { - flex: 1; - min-height: 100vh; -} - -.web-container { - width: calc(100% - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -.use-template { - margin-left: 45%; - margin-top: 20px; - font-size: 16px; -} - -.center-element { - margin-left: 50%; - margin-top: 50px; -} - -.zip-file-title { - margin-bottom: 20px; - margin-left: 11px; -} - -.syntax-wrn-msg { - font-size: 1em; -} - -.hr-line { - line-height: 1em; - position: relative; - outline: 0; - border: 0; - color: black; - text-align: center; - height: 1.5em; - opacity: 0.5; - &:before { - content: ''; - background: linear-gradient(to right, transparent, #818078, transparent); - position: absolute; - left: 0; - top: 50%; - width: 100%; - height: 1px; - } - &:after { - content: ''; - position: relative; - display: inline-block; - padding: 0 0.5em; - line-height: 1.5em; - color: #818078; - background-color: #fcfcfa; - } -} - -.create-card { - padding-bottom: 20px; -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create.component.spec.ts b/frontend_v2/src/app/components/challenge-create/challenge-create.component.spec.ts deleted file mode 100644 index 4a4317c354..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create.component.spec.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeCreateComponent } from './challenge-create.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { ApiService } from '../../services/api.service'; -import { GlobalService } from '../../services/global.service'; -import { ChallengeService } from '../../services/challenge.service'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { Router, Routes } from '@angular/router'; -import { NotFoundComponent } from '../not-found/not-found.component'; -import { FormsModule } from '@angular/forms'; - -const routes: Routes = [ - { - path: 'challenge-create', - component: ChallengeCreateComponent, - }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -describe('ChallengecreateComponent', () => { - let component: ChallengeCreateComponent; - let fixture: ComponentFixture; - let router: Router; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeCreateComponent, HeaderStaticComponent, FooterComponent, NotFoundComponent], - schemas: [NO_ERRORS_SCHEMA], - imports: [RouterTestingModule.withRoutes(routes), HttpClientModule, FormsModule], - providers: [GlobalService, AuthService, ApiService, ChallengeService, EndpointsService], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(ChallengeCreateComponent); - component = fixture.componentInstance; - }); - - it('should create', () => { - fixture.ngZone.run(() => { - router.navigate(['/challenge-create/']).then(() => { - fixture.detectChanges(); - expect(component).toBeTruthy(); - }); - }); - }); -}); diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create.component.ts b/frontend_v2/src/app/components/challenge-create/challenge-create.component.ts deleted file mode 100644 index a5b4330281..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create.component.ts +++ /dev/null @@ -1,131 +0,0 @@ -import { Component, OnInit, Inject } from '@angular/core'; -import { AuthService } from '../../services/auth.service'; -import { GlobalService } from '../../services/global.service'; -import { ChallengeService } from '../../services/challenge.service'; -import { Router } from '@angular/router'; -import { DOCUMENT } from '@angular/common'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challenge-create', - templateUrl: './challenge-create.component.html', - styleUrls: ['./challenge-create.component.scss'], -}) -export class ChallengeCreateComponent implements OnInit { - isFormError = false; - isSyntaxErrorInYamlFile = false; - ChallengeCreateForm = { - input_file: null, - file_path: null, - }; - syntaxErrorInYamlFile = {}; - - /** - * Auth Service public instance - */ - authServicePublic = null; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Router public instance - */ - routerPublic = null; - - /** - * Selected Host team object - */ - hostTeam: any = null; - - /** - * Route for hosted challenges - */ - hostedChallengesRoute = '/challenges/me'; - - /** - * Route path for host teams - */ - hostTeamsRoute = '/teams/hosts'; - - /** - * Route path for listing all challenge templates - */ - challengeTemplatesListRoute = '/challenges/templates'; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param router Router Injection. - * @param challengeService ChallengeService Injection. - * @param document - * @param globalService GlobalService Injection. - */ - constructor( - public authService: AuthService, - private router: Router, - private challengeService: ChallengeService, - @Inject(DOCUMENT) private document, - private globalService: GlobalService - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.authServicePublic = this.authService; - this.routerPublic = this.router; - this.challengeService.currentHostTeam.subscribe((hostTeam) => { - this.hostTeam = hostTeam; - if (!hostTeam) { - this.router.navigate([this.hostTeamsRoute]); - } - }); - } - - challengeCreate() { - if (this.ChallengeCreateForm['input_file'] !== null) { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('status', 'submitting'); - FORM_DATA.append('zip_configuration', this.ChallengeCreateForm['input_file']); - this.globalService.startLoader('Creating Challenge'); - this.challengeService.challengeCreate(this.hostTeam['id'], FORM_DATA).subscribe( - (data) => { - this.globalService.stopLoader(); - this.globalService.showToast('success', 'Successfuly sent to EvalAI admin for approval.'); - this.router.navigate([this.hostedChallengesRoute]); - }, - (err) => { - this.globalService.stopLoader(); - this.globalService.showToast('error', err.error.error); - this.isSyntaxErrorInYamlFile = true; - this.syntaxErrorInYamlFile = err.error.error; - }, - () => {} - ); - } else { - this.isFormError = true; - this.globalService.showToast('error', 'Please Upload File'); - } - } - - handleUpload(event) { - const files = event.target.files; - - if (files.length >= 1) { - this.isFormError = false; - this.ChallengeCreateForm['input_file'] = event.target.files[0]; - this.ChallengeCreateForm['file_path'] = event.target.files[0]['name']; - this.document.getElementsByClassName('file-path')[0].value = event.target.files[0]['name']; - } else { - this.isFormError = true; - } - } -} diff --git a/frontend_v2/src/app/components/challenge-create/challenge-create.module.ts b/frontend_v2/src/app/components/challenge-create/challenge-create.module.ts deleted file mode 100644 index a2e1d80ec5..0000000000 --- a/frontend_v2/src/app/components/challenge-create/challenge-create.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { ChallengeCreateComponent } from './challenge-create.component'; - -// import module -import { ChallengeCreateRoutingModule } from './challenge-create-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [ChallengeCreateComponent], - imports: [CommonModule, ChallengeCreateRoutingModule, SharedModule], - exports: [ChallengeCreateComponent], -}) -export class ChallengeCreateModule {} diff --git a/frontend_v2/src/app/components/challenge/challenge-routing.module.ts b/frontend_v2/src/app/components/challenge/challenge-routing.module.ts deleted file mode 100644 index c71b1ba86f..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge-routing.module.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; - -// import component -import { ChallengeComponent } from './challenge.component'; -import { ChallengeoverviewComponent } from './challengeoverview/challengeoverview.component'; -import { ChallengeevaluationComponent } from './challengeevaluation/challengeevaluation.component'; -import { ChallengephasesComponent } from './challengephases/challengephases.component'; -import { ChallengeparticipateComponent } from './challengeparticipate/challengeparticipate.component'; -import { ChallengesubmitComponent } from './challengesubmit/challengesubmit.component'; -import { ChallengesubmissionsComponent } from './challengesubmissions/challengesubmissions.component'; -import { ChallengeviewallsubmissionsComponent } from './challengeviewallsubmissions/challengeviewallsubmissions.component'; -import { ChallengeleaderboardComponent } from './challengeleaderboard/challengeleaderboard.component'; -import { ChallengesettingsComponent } from './challengesettings/challengesettings.component'; -import { ChallengediscussComponent } from './challengediscuss/challengediscuss.component'; -import { ChallengeanalyticsComponent } from './challengeanalytics/challengeanalytics.component'; - -const routes: Routes = [ - { - path: '', - component: ChallengeComponent, - children: [ - { path: '', redirectTo: 'overview', pathMatch: 'full' }, - { path: 'overview', component: ChallengeoverviewComponent }, - { path: 'evaluation', component: ChallengeevaluationComponent }, - { path: 'phases', component: ChallengephasesComponent }, - { path: 'participate', component: ChallengeparticipateComponent }, - { path: 'submit', component: ChallengesubmitComponent }, - { path: 'my-submissions', component: ChallengesubmissionsComponent }, - { path: 'my-submissions/:phase', component: ChallengesubmissionsComponent }, - { path: 'mysubmissions/:phase/:submission', component: ChallengesubmissionsComponent }, - { path: 'view-all-submissions', component: ChallengeviewallsubmissionsComponent }, - { path: 'leaderboard', component: ChallengeleaderboardComponent }, - { path: 'leaderboard/:split', component: ChallengeleaderboardComponent }, - { path: 'leaderboard/:split/:metricName', component: ChallengeleaderboardComponent }, - { path: 'leaderboard/:split/:metricName/:entry', component: ChallengeleaderboardComponent }, - { path: 'settings', component: ChallengesettingsComponent }, - { path: 'discuss', component: ChallengediscussComponent }, - { path: 'analytics', component: ChallengeanalyticsComponent }, - ], - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class ChallengeRoutingModule {} diff --git a/frontend_v2/src/app/components/challenge/challenge.component.html b/frontend_v2/src/app/components/challenge/challenge.component.html deleted file mode 100644 index 50c969021c..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge.component.html +++ /dev/null @@ -1,186 +0,0 @@ -
- - -
-
-
-
-
-
-
-
-
Thank you for successfully creating a challenge on EvalAI. - The challenge is ready to accept submissions from host the team. Please note that the submissions from the host team won't be visible on leaderboard until you mark them as baseline submission. - In order for the challenge to accept submissions from the public, it requires approval from the EvalAI Team. Please reach out to us at - team@cloudcv.org for challenge approval. -
-
-
-
-
-
-
-
-
- -
-
-
-
-

- {{ challenge['title'] }} -

- Organized by: - {{ challenge['creator']['team_name'] }} - - - Organized by: - {{ challenge['creator']['team_name'] }} - -
- - - Starts on: - {{ challenge['start_date'] | date: 'medium' }} {{ challenge['start_zone'] }} - -
- - - Ends on: - {{ challenge['end_date'] | date: 'medium' }} {{ challenge['end_zone'] }} - -
-
-
-
- -
-
- -
-
- -
-
-
- -
-
-
- diff --git a/frontend_v2/src/app/components/challenge/challenge.component.scss b/frontend_v2/src/app/components/challenge/challenge.component.scss deleted file mode 100644 index e979ffeaf1..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge.component.scss +++ /dev/null @@ -1,103 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.challenge-flex { - display: flex; - flex-direction: column; - min-height: 100vh; - width: calc(100% - 223px); - float: right; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -.challenge-content { - flex: 1; - min-height: 100vh; -} - -.dash-container { - padding-top: 70px; - overflow-x: hidden; -} - -.challenge-container { - margin: 0 auto; - margin-bottom: 50px; -} - -.card-content p { - padding-bottom: 10px; -} - -.top-card-container { - padding: 40px 40px 0 40px; -} - -.toggle-participation-text { - display: inline-block; - padding-left: 10px; -} - -.top-card-container { - .stars { - cursor: default; - margin-left: 45%; - padding: 0.5rem 2.2rem; - &.is-clickable { - cursor: pointer; - } - i .start { - font-size: 1 rem; - } - } - - .card-img-row { - margin-bottom: 20px; - padding: 0 15px 0 15px; - } - - .card-tab-row { - padding: 0 12px 0 12px; - } -} - -.top-card-container ul.inline-list { - margin: 0px; -} - -.top-card-container ul.inline-list li { - margin: 0 40px 1.5% 0; - min-height: 40px; -} - -.challenge-title { - padding-top: 0px; -} - -.edit-title { - padding-right: 4px; -} - -.title-line { - line-height: 1.5; -} - -.image-container { - margin-top: 20px; -} - -@media only screen and (max-width: $med-screen) { - .challenge-flex { - width: 100%; - } - .top-card-container { - .stars { - margin-left: 0px; - } - } -} diff --git a/frontend_v2/src/app/components/challenge/challenge.component.spec.ts b/frontend_v2/src/app/components/challenge/challenge.component.spec.ts deleted file mode 100644 index f9b30a8052..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge.component.spec.ts +++ /dev/null @@ -1,300 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { ChallengeComponent } from './challenge.component'; -import { ApiService } from '../../services/api.service'; -import { GlobalService } from '../../services/global.service'; -import { ChallengeService } from '../../services/challenge.service'; -import { HttpClientModule } from '@angular/common/http'; -import { ChallengeoverviewComponent } from '../../components/challenge/challengeoverview/challengeoverview.component'; -import { ChallengeevaluationComponent } from '../../components/challenge/challengeevaluation/challengeevaluation.component'; -import { ChallengephasesComponent } from '../../components/challenge/challengephases/challengephases.component'; -import { ChallengeparticipateComponent } from '../../components/challenge/challengeparticipate/challengeparticipate.component'; -import { ChallengeleaderboardComponent } from '../../components/challenge/challengeleaderboard/challengeleaderboard.component'; -import { ChallengesubmitComponent } from '../../components/challenge/challengesubmit/challengesubmit.component'; -import { ChallengesubmissionsComponent } from '../../components/challenge/challengesubmissions/challengesubmissions.component'; -import { PhasecardComponent } from '../../components/challenge/challengephases/phasecard/phasecard.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { ForceloginComponent } from '../../components/utility/forcelogin/forcelogin.component'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { TeamlistComponent } from '../../components/publiclists/teamlist/teamlist.component'; -import { SelectphaseComponent } from '../../components/utility/selectphase/selectphase.component'; -import { InputComponent } from '../../components/utility/input/input.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { Router, ActivatedRoute } from '@angular/router'; -import { Observable, of } from 'rxjs'; -import { MatTableModule } from '@angular/material'; -import { FormsModule } from '@angular/forms'; - -describe('ChallengeComponent', () => { - let component: ChallengeComponent; - let fixture: ComponentFixture; - let router, authService, authServiceSpy; - const fakeActivatedRoute = { - id: 1, - }; - let challengeService, challengeServiceSpy; - let globalService, apiService, endpointsService; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ - ChallengeComponent, - HeaderStaticComponent, - ChallengeoverviewComponent, - ChallengeevaluationComponent, - ChallengephasesComponent, - ChallengeparticipateComponent, - ChallengeleaderboardComponent, - ChallengesubmitComponent, - ChallengesubmissionsComponent, - PhasecardComponent, - ForceloginComponent, - FooterComponent, - TeamlistComponent, - SelectphaseComponent, - ], - providers: [ - ApiService, - GlobalService, - ChallengeService, - AuthService, - EndpointsService, - { - provide: ActivatedRoute, - useValue: { - snapshot: {}, - params: of(fakeActivatedRoute), - }, - }, - ], - imports: [HttpClientModule, RouterTestingModule, FormsModule, MatTableModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeComponent); - router = TestBed.get(Router); - challengeService = TestBed.get(ChallengeService); - globalService = TestBed.get(GlobalService); - authService = TestBed.get(AuthService); - apiService = TestBed.get(ApiService); - endpointsService = TestBed.get(EndpointsService); - component = fixture.componentInstance; - - spyOn(router, 'navigate'); - spyOn(globalService, 'handleApiError'); - spyOn(globalService, 'showToast'); - spyOn(globalService, 'showModal'); - spyOn(globalService, 'showConfirm'); - spyOn(endpointsService, 'editChallengeDetailsURL'); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('Global variables', () => { - expect(component.isStarred).toBeFalsy(); - expect(component.isChallengeHost).toBeFalsy(); - expect(component.publishChallenge).toEqual({ - state: 'Not Published', - icon: 'fa fa-eye-slash red-text', - }); - expect(component.isParticipated).toBeFalsy(); - expect(component.isLoggedIn).toBeFalsy(); - }); - - it('check if user is logged in', () => { - authServiceSpy = spyOn(authService, 'isLoggedIn').and.returnValue(true); - fixture.detectChanges(); - expect(authServiceSpy).toHaveBeenCalled(); - expect(component.isLoggedIn).toBeTruthy(); - }); - - it('check activated routed subscribe method called on init', async(() => { - challengeServiceSpy = spyOn(challengeService, 'fetchChallenge'); - fixture.detectChanges(); - expect(component.id).toBe(fakeActivatedRoute['id']); - expect(challengeServiceSpy).toHaveBeenCalledWith(fakeActivatedRoute['id']); - })); - - it('should call `starToggle` method when user is logged in', () => { - challengeServiceSpy = spyOn(challengeService, 'starToggle'); - const challengeId = 1; - component.isLoggedIn = true; - component.starToggle(challengeId); - expect(challengeServiceSpy).toHaveBeenCalledWith(challengeId); - }); - - it('should show login to star the challenge message when user is not logged in', () => { - const challengeId = 1; - component.isLoggedIn = false; - component.starToggle(challengeId); - expect(globalService.showToast).toHaveBeenCalledWith('error', 'Please login to star the challenge!', 5); - }); - - it('should toggle the publish challenge state from public to private', async(() => { - component.publishChallenge = { - state: 'Published', - icon: 'fa fa-eye green-text', - }; - const expectedSuccessMsg = 'The challenge was successfully made private'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ results: [{}] }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.togglePublishChallengeState(); - fixture.detectChanges(); - expect(globalService.showConfirm).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(component.publishChallenge.state).toEqual('Not Published'); - expect(component.publishChallenge.icon).toEqual('fa fa-eye-slash red-text'); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - })); - - it('should toggle the publish challenge state from private to public', async(() => { - component.publishChallenge = { - state: 'Not Published', - icon: 'fa fa-eye-slash red-text', - }; - const expectedSuccessMsg = 'The challenge was successfully made public'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ results: [{}] }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.togglePublishChallengeState(); - fixture.detectChanges(); - expect(globalService.showConfirm).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(component.publishChallenge.state).toEqual('Published'); - expect(component.publishChallenge.icon).toEqual('fa fa-eye green-text'); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - })); - - it('should handle the API error for `togglePublishChallengeState` method', async(() => { - const expectedApiError = { - error: 'Api error', - }; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedApiError.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.togglePublishChallengeState(); - fixture.detectChanges(); - expect(globalService.showConfirm).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.handleApiError).toHaveBeenCalledWith(expectedApiError, true); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedApiError); - })); - - it('should show the modal and successfully edit the title of a challenge', async(() => { - component.challenge = { - id: 1, - title: 'Challenge title', - creator: 'Host user', - description: 'Challenge description', - }; - const expectedUpdateTitle = 'Updated challenge title'; - const expectedSuccessMsg = 'The challenge title is successfully updated!'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ title: expectedUpdateTitle }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editChallengeTitle(); - fixture.detectChanges(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(component.challenge.title).toEqual(expectedUpdateTitle); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - })); - - it('should handle the API error for `editChallengeTitle` method', async(() => { - component.challenge = { - id: 1, - title: 'Challenge title', - creator: 'Host user', - description: 'Challenge description', - }; - const expectedApiError = { - error: 'Api error', - }; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedApiError.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editChallengeTitle(); - fixture.detectChanges(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.handleApiError).toHaveBeenCalledWith(expectedApiError, true); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedApiError); - })); - - it('should show the modal with the form fields and successfully delete the challenge', async(() => { - const expectedSuccessMsg = 'The Challenge is successfully deleted!'; - spyOn(apiService, 'postUrl').and.returnValue( - new Observable((observer) => { - observer.next({ results: [{}] }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.deleteChallenge(); - fixture.detectChanges(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.postUrl).toHaveBeenCalled(); - expect(router.navigate).toHaveBeenCalledWith(['/challenges/all']); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - })); - - it('should handle the API error for `deleteChallenge` method', async(() => { - const expectedApiError = { - error: 'Api error', - }; - spyOn(apiService, 'postUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedApiError.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.deleteChallenge(); - fixture.detectChanges(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(); - expect(apiService.postUrl).toHaveBeenCalled(); - expect(globalService.handleApiError).toHaveBeenCalledWith(expectedApiError, true); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedApiError); - })); -}); diff --git a/frontend_v2/src/app/components/challenge/challenge.component.ts b/frontend_v2/src/app/components/challenge/challenge.component.ts deleted file mode 100644 index 002f467007..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge.component.ts +++ /dev/null @@ -1,175 +0,0 @@ -import { Component, Inject, OnInit } from '@angular/core'; -import { Router, ActivatedRoute } from '@angular/router'; -import { Meta } from '@angular/platform-browser'; -import { DOCUMENT } from '@angular/common'; - -// import services -import { AuthService } from '../../services/auth.service'; -import { GlobalService } from '../../services/global.service'; -import { ChallengeService } from '../../services/challenge.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challenge', - templateUrl: './challenge.component.html', - styleUrls: ['./challenge.component.scss'], -}) -export class ChallengeComponent implements OnInit { - /** - * Router local instance - */ - localRouter: any; - - /** - * Challenge id - */ - id: any; - - /** - * Is challenge starred - */ - isStarred = false; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * Is challenge approved by admin - */ - isApprovedByAdmin = false; - - /** - * Is participated in Challenge - */ - isParticipated = false; - - /** - * Is Forum enabled in Challenge - */ - isForumEnabled: boolean; - - /** - * Forum Url of Challenge - */ - forumURL: any; - - /** - * Challenge object - */ - challenge: any; - - /** - * Challenge stars - */ - stars: any; - - /** - * Is logged in the Challenge - */ - isLoggedIn: any = false; - - /** - * Is past challenge - */ - isPast: any = false; - - /** - * Challenge phases - */ - phases: any = []; - - /** - * Constructor. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param globalService GlobalService Injection. - * @param challengeService ChallengeService Injection. - * @param authService AuthService Injection. - */ - constructor( - @Inject(DOCUMENT) document: any, - private router: Router, - private route: ActivatedRoute, - private globalService: GlobalService, - private challengeService: ChallengeService, - public authService: AuthService, - private meta: Meta - ) {} - - /** - * Component on initialized - */ - ngOnInit() { - this.globalService.startLoader(''); - const SELF = this; - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.localRouter = this.router; - this.globalService.scrollToTop(); - this.route.params.subscribe((params) => { - if (params['id']) { - // this.fetchChallenge(params['id']); - this.id = params['id']; - this.challengeService.fetchChallenge(params['id']); - } - }); - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.isForumEnabled = challenge.enable_forum; - this.forumURL = challenge.forum_url; - this.isApprovedByAdmin = challenge.approved_by_admin; - this.isPast = this.isPastChallenge(); - // update meta tag - SELF.meta.updateTag({ - property: 'og:title', - content: SELF.challenge.title, - }); - SELF.meta.updateTag({ - property: 'og:description', - content: SELF.challenge.short_description, - }); - SELF.meta.updateTag({ - property: 'og:image', - content: SELF.challenge.image, - }); - SELF.meta.updateTag({ - property: 'og:url', - content: document.location.href, - }); - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - }); - this.challengeService.currentStars.subscribe((stars) => (this.stars = stars)); - this.challengeService.currentParticipationStatus.subscribe((status) => { - this.isParticipated = status; - }); - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - this.globalService.stopLoader(); - } - - /** - * Star click function. - */ - starToggle(challengeId) { - if (this.isLoggedIn) { - this.challengeService.starToggle(challengeId); - } else { - this.globalService.showToast('error', 'Please login to star the challenge!', 5); - } - } - - isPastChallenge() { - const PRESENT = new Date(); - const START_DATE = new Date(Date.parse(this.challenge['start_date'])); - const END_DATE = new Date(Date.parse(this.challenge['end_date'])); - return (PRESENT > END_DATE); - } -} diff --git a/frontend_v2/src/app/components/challenge/challenge.module.ts b/frontend_v2/src/app/components/challenge/challenge.module.ts deleted file mode 100644 index 2ef886e3c6..0000000000 --- a/frontend_v2/src/app/components/challenge/challenge.module.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { - MatChipsModule, - MatTableModule, - MatMenuModule, - MatSelectModule, - MatIconModule, - MatDividerModule, - MatCheckboxModule, - MatRadioModule, - MatDialogModule, - MatSliderModule, - MatTabsModule, -} from '@angular/material'; - -// import components -import { ChallengeevaluationComponent } from './challengeevaluation/challengeevaluation.component'; -import { ChallengeleaderboardComponent } from './challengeleaderboard/challengeleaderboard.component'; -import { ChallengeoverviewComponent } from './challengeoverview/challengeoverview.component'; -import { ChallengeparticipateComponent } from './challengeparticipate/challengeparticipate.component'; -import { ChallengephasesComponent } from './challengephases/challengephases.component'; -import { ChallengesettingsComponent } from './challengesettings/challengesettings.component'; -import { ChallengesubmissionsComponent } from './challengesubmissions/challengesubmissions.component'; -import { ChallengesubmitComponent } from './challengesubmit/challengesubmit.component'; -import { ChallengeviewallsubmissionsComponent } from './challengeviewallsubmissions/challengeviewallsubmissions.component'; -import { PhasecardComponent } from './challengephases/phasecard/phasecard.component'; -import { ChallengeComponent } from './challenge.component'; - -// import module -import { ChallengeRoutingModule } from './challenge-routing.module'; -import { SharedModule } from '../../shared/shared.module'; -import { ChallengelistModule } from '../publiclists/challengelist/challengelist.module'; -import { SubmissionMetaAttributesDialogueComponent } from './submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component'; -import { ChallengediscussComponent } from './challengediscuss/challengediscuss.component'; -import { ChallengeanalyticsComponent } from './challengeanalytics/challengeanalytics.component'; - -@NgModule({ - declarations: [ - ChallengeComponent, - ChallengesettingsComponent, - ChallengeoverviewComponent, - ChallengeevaluationComponent, - ChallengephasesComponent, - ChallengeparticipateComponent, - ChallengeleaderboardComponent, - ChallengesubmitComponent, - ChallengesubmissionsComponent, - ChallengeviewallsubmissionsComponent, - PhasecardComponent, - SubmissionMetaAttributesDialogueComponent, - ChallengediscussComponent, - ChallengeanalyticsComponent, - ], - imports: [ - CommonModule, - ChallengeRoutingModule, - SharedModule, - MatChipsModule, - MatIconModule, - ChallengelistModule, - MatSelectModule, - MatTableModule, - MatCheckboxModule, - MatDividerModule, - MatMenuModule, - MatRadioModule, - MatDialogModule, - MatSliderModule, - MatTabsModule, - ], - exports: [ - ChallengeComponent, - ChallengesettingsComponent, - ChallengeoverviewComponent, - ChallengeevaluationComponent, - ChallengephasesComponent, - ChallengeparticipateComponent, - ChallengeleaderboardComponent, - ChallengesubmitComponent, - ChallengesubmissionsComponent, - ChallengeviewallsubmissionsComponent, - PhasecardComponent, - ], - schemas: [CUSTOM_ELEMENTS_SCHEMA], - entryComponents: [SubmissionMetaAttributesDialogueComponent], -}) -export class ChallengeModule {} diff --git a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.html b/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.html deleted file mode 100644 index 83f74d4d87..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.html +++ /dev/null @@ -1,96 +0,0 @@ -
-
-
-
-
-
Challenges Analytics
-
-
- Here you get the complete analysis of {{ challenge['title'] }} challenge. This includes getting the - number of submissions, number of participating teams, number of phases, number of submissions in each phase, - etc. -
-
-
-
-
-
-
-
- - -
-
-
-
-
- {{ challenge['title'] }} -
- Hosted by: - {{ challenge['creator']['team_name'] }}
- - Total Participant Teams: - - - {{ totalChallengeTeams }} - - Download -
-
-
-
- -
-
-
-
-
-
- {{ item.name }} -
-
-
-
- Challenge Phase Duration -
-

- {{ item.start_date | date: 'medium' }} - {{ item.end_date | date: 'medium' }} -

-
-
-
-
- Total Submissions -
-

- {{ totalSubmission[item.id] || 0 }} -

-
-
-
- Participant Teams -
-

- {{ totalParticipatedTeams[item.id] || 0 }} -

-
-
-
- Latest Submission At -
-

- {{ lastSubmissionTime[item.id] | date: 'medium' }} -

-

- None -

-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.scss b/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.scss deleted file mode 100644 index df4c21568f..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.scss +++ /dev/null @@ -1,30 +0,0 @@ -.analytics-image { - img { - width: 70%; - } -} - -.analytics-card-content { - h3 { - margin-bottom: 2px; - } -} - -.ev-btn { - padding: 8px 20px 8px 20px; - margin-left: 10px; - border-radius: 20px; -} - -.analytics-challenge-card { - .analytics-phases-card { - padding-bottom: 2%; - } -} - -/*media queries*/ -@media screen and (min-width: 993px) { - .analytics-card-content { - padding-top: 10px; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.spec.ts deleted file mode 100644 index e1502dc4c5..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeanalyticsComponent } from './challengeanalytics.component'; - -describe('ChallengeanalyticsComponent', () => { - let component: ChallengeanalyticsComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeanalyticsComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeanalyticsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.ts b/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.ts deleted file mode 100644 index 266153c374..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeanalytics/challengeanalytics.component.ts +++ /dev/null @@ -1,179 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { Router } from '@angular/router'; - -// import service -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { WindowService } from '../../../services/window.service'; -import { ChallengeService } from '../../../services/challenge.service'; - -@Component({ - selector: 'app-challengeanalytics', - templateUrl: './challengeanalytics.component.html', - styleUrls: ['./challengeanalytics.component.scss'], -}) -export class ChallengeanalyticsComponent implements OnInit { - /** - * Challenge object - */ - challenge: any; - - /** - * Challenge Id - */ - challengeId = null; - - /** - * Current challenge phase - */ - currentPhase = []; - - /** - * Total submissions - */ - totalSubmission = {}; - - /** - * Total participated teams - */ - totalParticipatedTeams = {}; - - /** - * Last submission time - */ - lastSubmissionTime = {}; - - /** - * Total challenge teams - */ - totalChallengeTeams = []; - - /** - * Lohin route path - */ - loginRoutePath = '/auth/login'; - - constructor( - private apiService: ApiService, - private globalService: GlobalService, - private endpointService: EndpointsService, - private challengeService: ChallengeService, - private router: Router, - private windowService: WindowService - ) {} - - ngOnInit() { - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.challengeId = this.challenge['id']; - if (this.challengeId !== undefined && this.challengeId !== null) { - this.showChallengeAnalysis(); - } - }); - } - - errCallBack(err) { - this.globalService.stopLoader(); - this.globalService.handleApiError(err); - if (err.status === 403) { - this.router.navigate(['permission-denied']); - this.globalService.showToast('error', 'Permission Denied'); - } else if (err.status === 401) { - this.globalService.showToast('error', 'Timeout, Please login again to continue!'); - this.globalService.resetStorage(); - this.router.navigate([this.loginRoutePath]); - } - } - - showChallengeAnalysis() { - this.globalService.startLoader(''); - let API_PATH = this.endpointService.teamCountAnalyticsURL(this.challengeId); - this.apiService.getUrl(API_PATH).subscribe( - (response) => { - this.globalService.stopLoader(); - this.totalChallengeTeams = response.participant_team_count; - }, - (err) => { - this.errCallBack(err); - }, - () => {} - ); - - this.globalService.startLoader(''); - API_PATH = this.endpointService.challengePhaseURL(this.challengeId); - this.apiService.getUrl(API_PATH).subscribe( - (response) => { - this.globalService.stopLoader(); - this.currentPhase = response.results; - const challengePhaseId = []; - - for (let phaseCount = 0; phaseCount < this.currentPhase.length; phaseCount++) { - challengePhaseId.push(this.currentPhase[phaseCount].id); - const PATH_API = this.endpointService.challengePhaseAnalyticsURL( - this.challengeId, - this.currentPhase[phaseCount].id - ); - this.apiService.getUrl(PATH_API).subscribe( - (res) => { - for (let i = 0; i < challengePhaseId.length; i++) { - if (challengePhaseId[i] === res.challenge_phase) { - this.totalSubmission[challengePhaseId[i]] = res.total_submissions; - this.totalParticipatedTeams[challengePhaseId[i]] = res.participant_team_count; - break; - } - } - }, - (err) => { - this.errCallBack(err); - }, - () => {} - ); - } - - for (let phaseCount = 0; phaseCount < this.currentPhase.length; phaseCount++) { - const PATH_API = this.endpointService.lastSubmissionAnalyticsURL( - this.challengeId, - this.currentPhase[phaseCount].id - ); - this.apiService.getUrl(PATH_API).subscribe( - (res) => { - for (let i = 0; i < challengePhaseId.length; i++) { - if (challengePhaseId[i] === res.challenge_phase) { - const reg = new RegExp('^[0-9]'); - if (reg.test(res.last_submission_timestamp_in_challenge_phase)) { - this.lastSubmissionTime[challengePhaseId[i]] = res.last_submission_timestamp_in_challenge_phase; - } else { - this.lastSubmissionTime[challengePhaseId[i]] = undefined; - } - break; - } - } - }, - (err) => { - this.errCallBack(err); - }, - () => {} - ); - } - }, - (err) => { - this.errCallBack(err); - }, - () => {} - ); - } - - downloadChallengeParticipantTeams() { - const API_PATH = this.endpointService.downloadParticipantsAnalyticsURL(this.challengeId); - this.apiService.getUrl(API_PATH, false).subscribe( - (response) => { - this.windowService.downloadFile(response, 'participant_teams_' + this.challengeId + '.csv'); - }, - (err) => { - this.globalService.showToast('error', err.error.error); - }, - () => {} - ); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.html b/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.html deleted file mode 100644 index 3484e245f1..0000000000 --- a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.html +++ /dev/null @@ -1,33 +0,0 @@ -
-
-
-
-
-
Discuss
- Here you can discuss anything related to the {{ challenge.title }}. Get all the answers for your queries, discuss any new idea or get to know the host team and other - participants at the discussion pannel. -
-
- -
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.scss b/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.scss deleted file mode 100644 index e1af41cecc..0000000000 --- a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.scss +++ /dev/null @@ -1,12 +0,0 @@ -.edit-btn { - margin-top: 12px; -} - -.ev-btn { - padding: 10px 30px 10px 30px; - border-radius: 20px; -} - -.discuss-intro { - font-weight: 300; -} diff --git a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.spec.ts b/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.spec.ts deleted file mode 100644 index f2b8bfca3d..0000000000 --- a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengediscussComponent } from './challengediscuss.component'; - -describe('ChallengediscussComponent', () => { - let component: ChallengediscussComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengediscussComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengediscussComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.ts b/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.ts deleted file mode 100644 index 09f1d0d1bd..0000000000 --- a/frontend_v2/src/app/components/challenge/challengediscuss/challengediscuss.component.ts +++ /dev/null @@ -1,108 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { Router } from '@angular/router'; - -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -@Component({ - selector: 'app-challengediscuss', - templateUrl: './challengediscuss.component.html', - styleUrls: ['./challengediscuss.component.scss'], -}) -export class ChallengediscussComponent implements OnInit { - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * Has view been initialized - */ - viewInit = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Router's public instance - */ - routerPublic: any; - - /** - * To call the API inside modal for editing the challenge forum URL - */ - apiCall: any; - - constructor( - private authService: AuthService, - private router: Router, - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private endpointsService: EndpointsService - ) {} - - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - editForumURL() { - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.forum_url = data.forum_url; - SELF.globalService.showToast('success', 'The challenge forum url is successfully updated!', 5); - }, - (err) => { - SELF.globalService.showToast('error', 'Please enter a valid URL', 5); - }, - () => {} - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Change Forum URL', - content: '', - confirm: 'Confirm', - deny: 'Cancel', - form: [ - { - isRequired: true, - label: 'forum_url', - placeholder: 'Forum URL', - value: this.challenge.forum_url, - type: 'text', - }, - ], - isButtonDisabled: true, - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.html b/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.html deleted file mode 100644 index d42d0a02b6..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.html +++ /dev/null @@ -1,22 +0,0 @@ -
-
-
-
-
-
Evaluation Criteria
-
-
-
-
-
-
-
-
-
-
Terms And Conditions
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.scss b/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.scss deleted file mode 100644 index 7694c09340..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.scss +++ /dev/null @@ -1,51 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.ev-pad { - padding-left: 15px; - padding-right: 10px; -} - -.tnc-pad { - padding-left: 10px; - padding-right: 15px; -} - -.challenge-card { - padding-bottom: 0px; - margin-bottom: -40px; -} - -.terms-and-condition { - text-align: right; - padding-right: 0px; -} - -.ev-action { - display: flex; - flex-direction: row; - justify-content: flex-end; - align-items: center; - margin-top: 35px; -} - -.ev-upload-action { - margin-right: 10px; -} - -@include screen-small { - .ev-pad { - padding-right: 15px; - } - - .tnc-pad { - padding-left: 15px; - } - - .ev-action { - margin-top: 10px; - padding-left: 15px; - display: inline-block; - } - -} diff --git a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.spec.ts deleted file mode 100644 index 47e9d95a38..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.spec.ts +++ /dev/null @@ -1,169 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeevaluationComponent } from './challengeevaluation.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { Observable } from 'rxjs'; - -describe('ChallengeevaluationComponent', () => { - let component: ChallengeevaluationComponent; - let fixture: ComponentFixture; - let globalService, apiService; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeevaluationComponent], - providers: [ChallengeService, ApiService, GlobalService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeevaluationComponent); - globalService = TestBed.get(GlobalService); - apiService = TestBed.get(ApiService); - component = fixture.componentInstance; - - spyOn(globalService, 'showModal'); - spyOn(globalService, 'showToast'); - spyOn(component, 'updateView'); - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('global variables', () => { - expect(component.isChallengeHost).toBeFalsy(); - }); - - it('should show modal and successfully edit the evaluation details', () => { - const updatedEvaluationDetails = 'Updated challenge evaluation details'; - const expectedSuccessMsg = 'The evaluation details is successfully updated!'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ evaluation_details: updatedEvaluationDetails }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editEvaluationCriteria(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedEvaluationDetails); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(component.challenge.evaluation_details).toEqual(updatedEvaluationDetails); - expect(component.updateView).toHaveBeenCalled(); - expect(component.challenge.evaluation_details).toEqual(updatedEvaluationDetails); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - }); - - it('should handle the API error for `editEvaluationCriteria` method', () => { - const updatedEvaluationDetails = 'Updated challenge evaluation details'; - const expectedErrorMsg = { - error: 'Api error', - }; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedErrorMsg.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editEvaluationCriteria(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedEvaluationDetails); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedErrorMsg); - }); - - it('should show modal and successfully edit the terms and conditions', () => { - const updatedTermsAndConditions = 'Updated terms and conditions of challenge'; - const expectedSuccessMsg = 'The terms and conditions are successfully updated!'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ terms_and_conditions: updatedTermsAndConditions }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editTermsAndConditions(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedTermsAndConditions); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(component.challenge.terms_and_conditions).toEqual(updatedTermsAndConditions); - expect(component.updateView).toHaveBeenCalled(); - expect(component.challenge.terms_and_conditions).toEqual(updatedTermsAndConditions); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - }); - - it('should handle the API error for `editTermsAndConditions` method', () => { - const updatedTermsAndConditions = 'Updated terms and conditions of challenge'; - const expectedErrorMsg = { - error: 'Api error', - }; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedErrorMsg.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editTermsAndConditions(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedTermsAndConditions); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedErrorMsg); - }); - - it('should show modal and successfully edit evaluation script', () => { - const parameters = { - evaluation_script: 'evaluation_script', - }; - const expectedSuccessMsg = 'The evaluation script is successfully updated!'; - spyOn(apiService, 'patchFileUrl').and.returnValue( - new Observable((observer) => { - observer.next({ results: [{}] }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editEvaluationScript(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(parameters); - expect(apiService.patchFileUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg); - }); - - it('should handle the API error for `editEvaluationScript` method', () => { - const parameters = { - evaluation_script: 'evaluation_script', - }; - const expectedErrorMsg = { - error: 'Api error', - }; - spyOn(apiService, 'patchFileUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedErrorMsg.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editEvaluationScript(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(parameters); - expect(apiService.patchFileUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedErrorMsg); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.ts b/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.ts deleted file mode 100644 index f06b141980..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeevaluation/challengeevaluation.component.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { Component, OnInit, Inject } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; - -// import service -import { ChallengeService } from '../../../services/challenge.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengeevaluation', - templateUrl: './challengeevaluation.component.html', - styleUrls: ['./challengeevaluation.component.scss'], -}) -export class ChallengeevaluationComponent implements OnInit { - /** - * Challenge object - */ - challenge: any; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * Challenge evaluation DOM element - */ - evaluationElement: any; - - /** - * Challenge tnc DOM element - */ - tncElement: any; - - /** - * Constructor. - * @param document window document Injection. - * @param challengeService ChallengeService Injection. - */ - constructor( - private challengeService: ChallengeService, - @Inject(DOCUMENT) private document: Document, - ) {} - - /** - * Component on init function. - */ - ngOnInit() { - this.evaluationElement = this.document.getElementById('challenge-evaluation'); - this.tncElement = this.document.getElementById('challenge-tnc'); - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.updateView(); - }); - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - /** - * Updating view function (Called after onInit) - */ - updateView() { - this.evaluationElement.innerHTML = this.challenge['evaluation_details']; - this.tncElement.innerHTML = this.challenge['terms_and_conditions']; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.html b/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.html deleted file mode 100644 index 68d37f1ee1..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.html +++ /dev/null @@ -1,237 +0,0 @@ -
-
-
-
-
-
Leaderboard
-
-
-
-
-
-
- Page is outdated, Click to update  -
-
-
- - -
-
-
-
- - - Metric as - - - - Metric: {{ selectedMetric }}   - - - - - Metric: {{ key }}   - - - - - -
-
-
-
-
-
-
-
- No phase selected. -
-
-
- - B - Baseline submission - - - P - Private submission - - -
- - - -
- - - - - - - - - - - - - - - - - - - - -
- - Rank - - - - - - - - Participant Team - - - - - - - - {{ key }} (↑) {{getLabelDescription(key)}} - {{ key }} (↓) {{getLabelDescription(key)}} - - - - - - - - Submitted at - - - - - - - Meta Attributes -
{{ initial_ranking[key.id] }} - {{ key.submission__participant_team__team_name }} - ({{key.submission__method_name | slice:0:30}}) - - - P -   - - - - B - - - - - - E - - - {{ score | number: setLeaderboardPrecisionValue }} - -
{{ key.submission__submitted_at_formatted }}
-
- -
-
-

No results to show!

-
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.scss b/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.scss deleted file mode 100644 index a4dd2b177a..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.scss +++ /dev/null @@ -1,216 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.challenge-leaderboard-container { - padding: 20px; - overflow: auto; - .leaderboard-empty { - padding: 30px; - display: block; - position: relative; - text-align: center; - } - .leaderboard-table-div { - text-align: center; - font-size: $fs-16; - color: $gray-darker; - font-weight: $fw-light; - top: 20px; - width: 100%; - position: relative; - display: block; - padding: 30px; - padding-top: 0px; - overflow-x: scroll; - overflow-y: scroll; - max-height: 500px; - .leaderboard-table { - width: 100%; - tr { - &:hover { - background: white; - } - &.highlight { - background: $red-lighter; - } - th { - color: $gray-dark; - .fa-stack-1x { - left: unset; - width: auto; - } - div { - font-weight: $fw-light; - &:hover { - font-weight: $fw-regular; - } - &.fat { - min-width: 180px; - } - &.fa-stack { - height: auto; - line-height: unset; - } - span, - i { - cursor: pointer; - &.dark { - color: $gray-darker; - } - } - } - } - - td { - } - } - } - } -} - -.ev-card-body { - .row-lr-margin { - margin-bottom: 20px; - } - - .mat-standard-chip { - padding: 3px 5px; - font-size: 16px; - } -} - -.pull-right { - margin-left: auto; - margin-top: -3%; -} - -.btn-switch { - position: relative; - display: block; - width: 30px; - height: 15px; - cursor: pointer; - background-color: rgb(167, 163, 163); - border: 2px solid rgb(167, 163, 163); - border-radius: 40px; - - .btn-switch-circle { - position: absolute; - top: 0; - left: 0; - display: block; - height: 10px; - width: 10px; - background-color: #fff; - border-radius: 40px; - } -} - -.btn-switch--on { - background-color: #ffaf4b; - border: 2px solid #ffaf4b; - - .btn-switch-circle--on { - left: auto; - right: 0; - } -} - -.sort-leaderboard-switch { - vertical-align: middle; - display: inline-block; -} - -.ev-md-container { - padding-bottom: 0px; -} - -.complete-leaderboard { - margin-right: 2%; -} - -.leaderboard-description { - color: $yellow !important; - border-radius: 2px !important; - min-height: 25px !important; -} - -.leaderboard-description-span { - margin-left: 2%; -} - -.private { - mat-chip { - background: rgb(146, 79, 146) !important; - } -} - -.complete-leaderboard-text { - font-size: $fs-16; - color: $gray-darker; -} - -.ev-md-container { - padding-bottom: 0px; - .phase-select-box { - margin-bottom: 0px; - } -} - -.ev-card-body { - padding-top: 0px; -} - -@media only screen and (max-width: 485px) { - .leaderboard-description-span { - margin-top: 2%; - margin-left: 0; - } -} - -.partial-evaluation { - min-width: 3rem; - padding: 0 6px; - text-align: center; - font-size: 1rem; - line-height: inherit; - float: left; - box-sizing: border-box; -} - -.highlight-leaderboard { - border-color: #fff3e0; - box-shadow: 0 0 0 0.2em #ffcc80 !important; - border: 1px solid #d1d5da; - border-radius: 3px; - background-color: #f2f2f2; -} - -.hide-label { - display: none; -} - -.leaderboard-label .description { - visibility: hidden; - width: auto; - max-width: 250px; - height: auto; - background-color: #f2f2f2; - color: #000000; - text-align: center; - border-radius: 6px; - padding: 10px 10px 10px 10px; - font-size: 1.05rem; - - /* Position the tooltip */ - position: absolute; - z-index: 1; -} - -.leaderboard-label:hover .description { - visibility: visible; -} - -.horizontal-scroll { - overflow-x: auto; -} diff --git a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.spec.ts deleted file mode 100644 index 7c2f456fd3..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.spec.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeleaderboardComponent } from './challengeleaderboard.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { SelectphaseComponent } from '../../../components/utility/selectphase/selectphase.component'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { HttpClientModule } from '@angular/common/http'; -import { ForceloginComponent } from '../../../components/utility/forcelogin/forcelogin.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; - -describe('ChallengeleaderboardComponent', () => { - let component: ChallengeleaderboardComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeleaderboardComponent, SelectphaseComponent], - providers: [ChallengeService, AuthService, GlobalService, ApiService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeleaderboardComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.ts b/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.ts deleted file mode 100644 index 5fedf5ca32..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeleaderboard/challengeleaderboard.component.ts +++ /dev/null @@ -1,715 +0,0 @@ -import { Component, OnInit, QueryList, ViewChildren, AfterViewInit, OnDestroy } from '@angular/core'; -import { MatDialog } from '@angular/material/dialog'; -import { Router, ActivatedRoute } from '@angular/router'; - -// import component -import { SelectphaseComponent } from '../../utility/selectphase/selectphase.component'; -import { SubmissionMetaAttributesDialogueComponent } from '../submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component'; - -// import service -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengeleaderboard', - templateUrl: './challengeleaderboard.component.html', - styleUrls: ['./challengeleaderboard.component.scss'], -}) -export class ChallengeleaderboardComponent implements OnInit, AfterViewInit, OnDestroy { - /** - * Phase select card components - */ - @ViewChildren('phasesplitselect') - components: QueryList; - - /** - * Leaderboard precision value - */ - leaderboardPrecisionValue = 2; - - /** - * Set leaderboard precision value - */ - setLeaderboardPrecisionValue = '1.2-2'; - - /** - * Challenge phase split ID - */ - challengePhaseSplitId; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * Has view been initialized - */ - viewInit = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Router's public instance - */ - routerPublic: any; - - /** - * Phases list - */ - phases = []; - - /** - * Private phases list - */ - showPrivateIds = []; - - /** - * Phase split list - */ - phaseSplits = []; - - /** - * Phase splits filtered - */ - filteredPhaseSplits = []; - - /** - * Phase selection type (radio button or select box) - */ - phaseSelectionType = 'selectBox'; - - /** - * Select box list type - */ - phaseSelectionListType = 'phaseSplit'; - - /** - * Leaderboard entries list - */ - leaderboard = []; - - /** - * Show leaderboard updates - */ - showLeaderboardUpdate = false; - - /** - * Returns true if leaderboard is public for the selected phase - */ - isSelectedPhaseLeaderboardPublic = true; - - /** - * Currently selected phase split's id - */ - selectedPhaseSplitId: any = null; - - /** - * Currently selected phase split - */ - selectedPhaseSplit: any = null; - - /** - * Meta attribute data - */ - metaAttributesData: any; - - /** - * Flag for meta attribute data - */ - showSubmissionMetaAttributesOnLeaderboard: any; - - /** - * Current state of whether leaderboard is sorted by latest - */ - showLeaderboardByLatest = false; - - /** - * Current state of whether complete leaderboard - */ - getAllEntries = false; - - /** - * Number of entries on complete leaderboard - */ - numberOfAllEntries = 0; - - /** - * Current state of whether private leaderboard - */ - showLeaderboardToggle = true; - - /** - * Sort leaderboard based on this column - */ - sortColumn = 'rank'; - - /** - * Text option for leadeboard sort - */ - sortLeaderboardTextOption: string; - - /** - * Text option for complete leadeboard - */ - getAllEntriesTextOption = 'Include private submissions'; - - /** - * Reverse sort flag - */ - reverseSort = false; - - /** - * Used if leaderboard is sorted based on one of the schema labels - */ - columnIndexSort = 0; - - /** - * Initial rankings object - */ - initial_ranking = {}; - - /** - * Component Class - */ - entryHighlighted: any = null; - - /** - * An interval for fetching the leaderboard data in every 1 minute - */ - pollingInterval: any; - - /** - * Challenge phase visibility - */ - challengePhaseVisibility = { - owner_and_host: 1, - host: 2, - public: 3, - }; - - /** - * Highlighted row in leaderboard - */ - highlightedEntry = null; - - /** - * Selected order by metric name - */ - selectedMetric: any = ''; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param challengeService ChallengeService Injection. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - * @param endpointsService EndPointsService Injection. - */ - constructor( - private authService: AuthService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private endpointsService: EndpointsService, - public dialog: MatDialog - ) {} - - /** - * Component after view initialized. - */ - ngAfterViewInit() { - this.viewInit = true; - } - - /** - * Component on initialized. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - this.filterPhases(); - }); - this.challengeService.currentPhaseSplit.subscribe((phaseSplits) => { - this.phaseSplits = phaseSplits; - this.filterPhases(); - }); - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - /** - * Filter phases based on visibility and leaderboard public flag. - */ - filterPhases() { - if (this.phases.length > 0 && this.phaseSplits.length > 0) { - for (let i = 0; i < this.phaseSplits.length; i++) { - if (this.phaseSplits[i].visibility !== this.challengePhaseVisibility.public) { - this.phaseSplits[i].showPrivate = true; - this.showPrivateIds.push(this.phaseSplits[i].id); - } else { - this.phaseSplits[i].showPrivate = false; - } - } - this.filteredPhaseSplits = this.phaseSplits; - setTimeout(() => { - this.checkUrlParams(); - }, 100); - } - } - - /** - * Called after filtering phases to check URL for phase-split-id and highlighted-leaderboard-entry - */ - checkUrlParams() { - this.route.params.subscribe((params) => { - if (params['split']) { - this.selectedPhaseSplitId = params['split']; - if (params.hasOwnProperty("metricName")) { - this.selectedMetric = decodeURIComponent(params["metricName"]); - } - this.selectPhaseSplitId(this.selectedPhaseSplitId, this); - } - }); - } - - /** - * Select a phase split from the list for a given id - * @param id phase split id - * @param self context value of this - */ - selectPhaseSplitId(id, self) { - let i = 0; - for (i = 0; i < self.filteredPhaseSplits.length; i++) { - if (parseInt(id, 10) === self.filteredPhaseSplits[i]['id']) { - self.selectedPhaseSplit = self.filteredPhaseSplits[i]; - if (self.selectedMetric === '') { - self.selectedMetric = self.selectedPhaseSplit.leaderboard_schema.default_order_by; - } - const checkViewInit = () => { - if (self.viewInit) { - self.components.map((item) => { - item.selectPhaseSplitNoURLChange(self.selectedPhaseSplit, 'selectBox', 'phaseSplit'); - }); - this.phaseSplitSelected(self.selectedPhaseSplit); - } else { - setTimeout(() => { - checkViewInit(); - }, 200); - } - }; - checkViewInit(); - break; - } - } - if (i === self.filteredPhaseSplits.length) { - self.selectedPhaseSplit = null; - } - } - - /** - * This is called when a phase split is selected (from child components) - * Updates the router URL with phase-split-id - */ - selectedPhaseSplitUrlChange = (phaseSplit) => { - const SELF = this; - if (SELF.router.url.endsWith('leaderboard')) { - SELF.router.navigate([phaseSplit['id']], { relativeTo: this.route }); - } else if (SELF.router.url.split('/').length === 5) { - SELF.router.navigate(['../' + phaseSplit['id']], { relativeTo: this.route }); - } else if (SELF.router.url.split('/').length === 6) { - SELF.router.navigate(['../../' + phaseSplit['id']], { relativeTo: this.route }); - } - }; - - /** - * This is called when a metric is selected (from child components) - * Updates the router URL with phase-split-id and metric name - */ - selectedMetricUrlChange = (phaseSplit, metricName) => { - const SELF = this; - this.selectedMetric = metricName; - if (SELF.router.url.endsWith('leaderboard')) { - SELF.router.navigate([phaseSplit['id'] + '/' + SELF.encodeMetricURI(metricName)], { relativeTo: this.route }); - } else if (SELF.router.url.split('/').length === 5) { - SELF.router.navigate(['../' + phaseSplit['id'] + '/' + SELF.encodeMetricURI(metricName)], { relativeTo: this.route }); - } else if (SELF.router.url.split('/').length === 6) { - SELF.router.navigate(['../../' + phaseSplit['id'] + '/' + SELF.encodeMetricURI(metricName)], { relativeTo: this.route }); - } - }; - - /** - * This is called when a phase split is selected - */ - phaseSplitSelected(phaseSplit) { - const SELF = this; - SELF.selectedPhaseSplit = phaseSplit; - SELF.highlightedEntry = null; - - const API_PATH = SELF.endpointsService.particularChallengePhaseSplitUrl(SELF.selectedPhaseSplit['id']); - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.leaderboardPrecisionValue = data.leaderboard_decimal_precision; - SELF.setLeaderboardPrecisionValue = `1.${SELF.leaderboardPrecisionValue}-${SELF.leaderboardPrecisionValue}`; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - - if (SELF.selectedPhaseSplit && SELF.router.url.includes('leaderboard/' + phaseSplit['id'])) { - if (SELF.getAllEntriesTextOption === 'Exclude private submissions') { - SELF.fetchAllEnteriesOnPublicLeaderboard(SELF.selectedPhaseSplit['id'], SELF.selectedMetric); - } else { - SELF.fetchLeaderboard(SELF.selectedPhaseSplit['id'], SELF.selectedMetric); - } - SELF.showLeaderboardByLatest = SELF.selectedPhaseSplit.show_leaderboard_by_latest_submission; - SELF.sortLeaderboardTextOption = SELF.showLeaderboardByLatest ? 'Sort by best' : 'Sort by latest'; - const selectedPhase = SELF.phases.find((phase) => { - return phase.id === SELF.selectedPhaseSplit.challenge_phase; - }); - SELF.isSelectedPhaseLeaderboardPublic = selectedPhase.leaderboard_public; - } - } - - /** - * This updates the leaderboard results after fetching them from API - * @param leaderboardApi API results for leaderboard - * @param self context value of this - */ - updateLeaderboardResults(leaderboardApi, self) { - const leaderboard = leaderboardApi.slice(); - for (let i = 0; i < leaderboard.length; i++) { - self.initial_ranking[leaderboard[i].id] = i + 1; - const DATE_NOW = new Date(); - const SUBMISSION_TIME = new Date(Date.parse(leaderboard[i].submission__submitted_at)); - const DURATION = self.globalService.getDateDifferenceString(DATE_NOW, SUBMISSION_TIME); - leaderboard[i]['submission__submitted_at_formatted'] = DURATION + ' ago'; - this.showSubmissionMetaAttributesOnLeaderboard = !(leaderboard[i].submission__submission_metadata == null); - } - self.leaderboard = leaderboard.slice(); - self.sortLeaderboard(); - self.route.params.subscribe((params) => { - if (params['entry']) { - self.entryHighlighted = params['entry']; - self.leaderboard.map((item) => { - item['is_highlighted'] = false; - if (self.entryHighlighted && item['submission__participant_team__team_name'] === self.entryHighlighted) { - item['is_highlighted'] = true; - } - }); - } - }); - } - - /** - * Sort leaderboard entries wrapper - */ - sortLeaderboard() { - this.leaderboard = this.leaderboard.sort((obj1, obj2) => { - const RET1 = this.sortFunction(obj1); - const RET2 = this.sortFunction(obj2); - if (RET1 > RET2) { - return 1; - } - if (RET2 > RET1) { - return -1; - } - return 0; - }); - if (this.reverseSort) { - this.leaderboard = this.leaderboard.reverse(); - } - } - - /** - * Sort function for leaderboard. - * @param key key for column clicked. - */ - sortFunction(key) { - if (this.sortColumn === 'date') { - return Date.parse(key.submission__submitted_at); - } else if (this.sortColumn === 'rank') { - return this.initial_ranking[key.id]; - } else if (this.sortColumn === 'number') { - return parseFloat(key.result[this.columnIndexSort]); - } else if (this.sortColumn === 'string') { - return key.submission__participant_team__team_name; - } - return 0; - } - - /** - * Sort the rank and participant team leaderboard column - * @param sortColumn sort column ('rank' or 'string') - */ - sortNonMetricsColumn(sortColumn) { - const SELF = this; - if (SELF.sortColumn === sortColumn) { - SELF.reverseSort = !SELF.reverseSort; - } else { - SELF.reverseSort = false; - } - SELF.sortColumn = sortColumn; - SELF.sortLeaderboard(); - } - - /** - * To sort by the metrics column - * @param index Schema labels index - */ - sortMetricsColumn(index) { - const SELF = this; - if (SELF.sortColumn === 'number' && SELF.columnIndexSort === index) { - SELF.reverseSort = !SELF.reverseSort; - } else { - SELF.reverseSort = false; - } - SELF.sortColumn = 'number'; - SELF.columnIndexSort = index; - SELF.sortLeaderboard(); - } - - /** - * Fetch leaderboard for a phase split - * @param phaseSplitId id of the phase split - */ - fetchLeaderboard(phaseSplitId, metricName) { - const API_PATH = this.endpointsService.challengeLeaderboardURL(phaseSplitId, metricName); - const SELF = this; - SELF.showPrivateIds.forEach((id) => { - id === phaseSplitId ? (SELF.showLeaderboardToggle = false) : (SELF.showLeaderboardToggle = true); - }); - clearInterval(SELF.pollingInterval); - SELF.leaderboard = []; - SELF.showLeaderboardUpdate = false; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.numberOfAllEntries = data['count']; - SELF.updateLeaderboardResults(data['results'], SELF); - SELF.startLeaderboard(phaseSplitId, metricName); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - /** - * Fetch complete leaderboard for a phase split public/private - * @param phaseSplitId id of the phase split - */ - fetchAllEnteriesOnPublicLeaderboard(phaseSplitId, metricName) { - const API_PATH = this.endpointsService.challengeCompleteLeaderboardURL(phaseSplitId, metricName); - const SELF = this; - clearInterval(SELF.pollingInterval); - SELF.leaderboard = []; - SELF.showLeaderboardUpdate = false; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.numberOfAllEntries = data['count']; - this.challengePhaseSplitId = data.results[0].challenge_phase_split; - SELF.updateLeaderboardResults(data['results'], SELF); - SELF.updateLeaderboardResults(data['results'], SELF); - SELF.startLeaderboard(phaseSplitId, metricName); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - /** - * function for toggeling between public leaderboard and complete leaderboard [public/private] - */ - toggleLeaderboard(getAllEntries) { - this.getAllEntries = getAllEntries; - if (getAllEntries) { - this.getAllEntriesTextOption = 'Exclude private submissions'; - this.fetchAllEnteriesOnPublicLeaderboard(this.selectedPhaseSplitId, this.selectedMetric); - } else { - this.getAllEntriesTextOption = 'Include private submissions'; - this.fetchLeaderboard(this.selectedPhaseSplitId, this.selectedMetric); - } - } - - /** - * Call leaderboard API in the interval of 5 seconds - * @param phaseSplitId id of the phase split - */ - startLeaderboard(phaseSplitId, metricName) { - let API_PATH; - if (this.getAllEntriesTextOption === 'Exclude private submissions') { - API_PATH = this.endpointsService.challengeCompleteLeaderboardURL(phaseSplitId, metricName); - } else { - API_PATH = this.endpointsService.challengeLeaderboardURL(phaseSplitId, metricName); - } - const SELF = this; - clearInterval(SELF.pollingInterval); - SELF.pollingInterval = setInterval(function () { - SELF.apiService.getUrl(API_PATH, true, false).subscribe( - (data) => { - if (SELF.leaderboard.length !== data['results'].length) { - SELF.showLeaderboardUpdate = true; - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - }, 60000); - } - - /** - * Refresh leaderboard if there is any update in data - */ - refreshLeaderboard() { - const API_PATH = this.endpointsService.challengeLeaderboardURL(this.selectedPhaseSplit['id'], this.selectedMetric); - const SELF = this; - SELF.leaderboard = []; - SELF.showLeaderboardUpdate = false; - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.updateLeaderboardResults(data['results'], SELF); - SELF.startLeaderboard(SELF.selectedPhaseSplit['id'], SELF.selectedMetric); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - showLeaderboardByLatestOrBest() { - const API_PATH = this.endpointsService.particularChallengePhaseSplitUrl(this.selectedPhaseSplit['id']); - const SELF = this; - const BODY = JSON.stringify({ - show_leaderboard_by_latest_submission: !SELF.showLeaderboardByLatest, - }); - - SELF.apiService.patchUrl(API_PATH, BODY).subscribe( - (data) => { - SELF.showLeaderboardByLatest = !SELF.showLeaderboardByLatest; - SELF.sortLeaderboardTextOption = SELF.showLeaderboardByLatest ? 'Sort by best' : 'Sort by latest'; - SELF.refreshLeaderboard(); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - openDialog(metaAttribute) { - const dialogueData = { - width: '30%', - data: { attribute: metaAttribute }, - }; - const dialogRef = this.dialog.open(SubmissionMetaAttributesDialogueComponent, dialogueData); - return dialogRef.afterClosed(); - } - - /** - * Show dialogue box for viewing metadata - */ - showMetaAttributesDialog(attributes) { - const SELF = this; - if (attributes !== false) { - SELF.metaAttributesData = []; - attributes.forEach(function (attribute) { - if (attribute.type !== 'checkbox') { - SELF.metaAttributesData.push({ name: attribute.name, value: attribute.value }); - } else { - SELF.metaAttributesData.push({ name: attribute.name, values: attribute.values }); - } - }); - } - SELF.openDialog(SELF.metaAttributesData); - } - - encodeMetricURI(metric) { - return encodeURIComponent(metric); - }; - - /** - * Update highlighted entry - */ - updateHighlightedEntry(entryId) { - const SELF = this; - if (entryId !== null) { - SELF.highlightedEntry = entryId; - } - } - - /** - * Fetch leaderboard metric order by flag - */ - isMetricOrderedAscending(metric) { - const SELF = this; - let schema = SELF.leaderboard[0].leaderboard__schema; - let metadata = schema.metadata; - if (metadata != null && metadata != undefined) { - // By default all metrics are considered higher is better - if (metadata[metric] == undefined) { - return true; - } - return metadata[metric].sort_ascending; - } - // By default all metrics are considered higher is better - return true; - }; - - /** - * Fetch leaderboard metric description for tooltip - */ - getLabelDescription(metric) { - const SELF = this; - let schema = SELF.leaderboard[0].leaderboard__schema; - let metadata = schema.metadata; - if (metadata != null && metadata != undefined) { - // By default all metrics are considered higher is better - if (metadata[metric] == undefined || metadata[metric].description == undefined) { - return ""; - } - return metadata[metric].description; - } - return ""; - }; - - /** - * Clear the polling interval - */ - ngOnDestroy() { - clearInterval(this.pollingInterval); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.html b/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.html deleted file mode 100644 index 68995de79b..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.html +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
Challenge Overview
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.scss b/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.spec.ts deleted file mode 100644 index 47779c2c51..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.spec.ts +++ /dev/null @@ -1,82 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeoverviewComponent } from './challengeoverview.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { Observable } from 'rxjs'; - -describe('ChallengeoverviewComponent', () => { - let component: ChallengeoverviewComponent; - let fixture: ComponentFixture; - let globalService, apiService; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeoverviewComponent], - providers: [ChallengeService, ApiService, GlobalService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeoverviewComponent); - globalService = TestBed.get(GlobalService); - apiService = TestBed.get(ApiService); - component = fixture.componentInstance; - - spyOn(globalService, 'showModal'); - spyOn(globalService, 'showToast'); - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('global variables', () => { - expect(component.isChallengeHost).toBeFalsy(); - }); - - it('should show modal and successfully edit the challenge description', () => { - const updatedDescription = 'Updated challenge description'; - const expectedSuccessMsg = 'The description is successfully updated!'; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.next({ results: [{}] }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editChallengeOverview(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedDescription); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('success', expectedSuccessMsg, 5); - }); - - it('should handle the API error for `editChallengeOverview` method', () => { - const updatedDescription = 'Updated challenge description'; - const expectedErrorMsg = { - error: 'Api error', - }; - spyOn(apiService, 'patchUrl').and.returnValue( - new Observable((observer) => { - observer.error({ error: expectedErrorMsg.error }); - observer.complete(); - return { unsubscribe() {} }; - }) - ); - - component.editChallengeOverview(); - expect(globalService.showModal).toHaveBeenCalled(); - component.apiCall(updatedDescription); - expect(apiService.patchUrl).toHaveBeenCalled(); - expect(globalService.showToast).toHaveBeenCalledWith('error', expectedErrorMsg); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.ts b/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.ts deleted file mode 100644 index 20d26d4cf1..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeoverview/challengeoverview.component.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -// import service -import { ChallengeService } from '../../../services/challenge.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengeoverview', - templateUrl: './challengeoverview.component.html', - styleUrls: ['./challengeoverview.component.scss'], -}) -export class ChallengeoverviewComponent implements OnInit { - /** - * Challenge object - */ - challenge: any = null; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * Constructor. - * @param challengeService ChallengeService Injection. - */ - constructor(private challengeService: ChallengeService) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.html b/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.html deleted file mode 100644 index 1f52cb6cf9..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.html +++ /dev/null @@ -1,152 +0,0 @@ -
-
-
- Sorry, The Challenge is not active! -
-
-
-
- -
-
-

You have already participated in the challenge with a team!

-
-
-
-
-
-
-
My Participant Teams
-
-
-
- No team exists for now. Start by creating a new team! -
-
    -
  • -
    -
    -
    - - -
    - - Team: - - - {{ team.team_name }} - - - {{ team.team_name }} - -
    - - Created by: - - - {{ team.created_by }} - -
    -
    -
    -
    -
  • -
-
-
- -
-
-
-
- -
-
-
-
-
-
-
Create New Team
-
-
-
- - - -
- Team name is required -
-
-
- - - -
-
- -
-
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.scss b/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.scss deleted file mode 100644 index 9ca432db6a..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.scss +++ /dev/null @@ -1,25 +0,0 @@ -.team-details { - display: inline-block; - margin: 2px 10px 0px 10px; - max-width: 300px; - overflow: hidden; -} - -label { - margin: 5px 0px 5px 5px; -} - -.card-panel { - margin: 0px; -} - -.participate-card { - margin: 0px 30px; -} - -form { - .input-field { - width: 80%; - margin-bottom: 40px; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.spec.ts deleted file mode 100644 index 36dc5b64cd..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.spec.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeparticipateComponent } from './challengeparticipate.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ForceloginComponent } from '../../../components/utility/forcelogin/forcelogin.component'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { TeamlistComponent } from '../../../components/publiclists/teamlist/teamlist.component'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { FormsModule } from '@angular/forms'; - -describe('ChallengeparticipateComponent', () => { - let component: ChallengeparticipateComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeparticipateComponent, ForceloginComponent, TeamlistComponent], - providers: [ChallengeService, ApiService, GlobalService, AuthService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule, FormsModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeparticipateComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.ts b/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.ts deleted file mode 100644 index 7f7438321d..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/challengeparticipate.component.ts +++ /dev/null @@ -1,324 +0,0 @@ -import { Component, OnInit, ViewChildren, QueryList } from '@angular/core'; -import { BehaviorSubject } from 'rxjs'; -import { Router, ActivatedRoute } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengeparticipate', - templateUrl: './challengeparticipate.component.html', - styleUrls: ['./challengeparticipate.component.scss'], -}) -export class ChallengeparticipateComponent implements OnInit { - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Router's public instance - */ - routerPublic: any; - - /** - * Is user a participant - */ - isParticipated: any; - - /** - * Is challenge active - */ - isActive: any; - - /** - * Is currently selected - */ - isSelected = false; - - /** - * Team list - */ - allTeams = []; - - /** - * Currently selected team - */ - selectedTeam: any = null; - - /** - * See more content in frame - */ - seeMore = 1; - - /** - * Frame size - */ - windowSize = 2; - - /** - * Filtered team list - */ - filteredTeams = []; - - /** - * Is name focused - */ - isnameFocused = false; - - /** - * Is url focused - */ - isurlFocused = false; - - /** - * Is team name required - */ - isTeamNameRequired = false; - - /** - * Create team Object - */ - create_team = { - team_name: '', - team_url: '', - }; - - /** - * Filtered team observable-source - */ - private filteredTeamSource = new BehaviorSubject(this.filteredTeams); - - /** - * Filtered team observable - */ - filteredTeamsObservable = this.filteredTeamSource.asObservable(); - - /** - * Form fields in the team form (team cards) - */ - @ViewChildren('formteam') - components: QueryList; - - /** - * Content for terms and conditions - */ - termsAndConditionContent = [ - 'Participants can train their models with the released training set' + - ', also with other training images as long as they are disjoint with the test set' + - '(see arXiv paper)', - - 'We provide the evaluation codes, along with the released validation dataset, ' + - 'for participants to validate their algorithms on validation set during the validation phase.' + - 'The usage instruction is described in "readme.txt" released along with the train/validation data. ', - - 'For testing phase of identification track, ' + - 'we will release the test set where gallery set is fully labelled with idenitities, ' + - 'and probe images with only pseudo labels (not related to identities). ' + - "Participants will submit a file reporting each probe image's " + - 'feature distance to the top-20 matching gallery identities and the corresponding identity indexes ' + - '(see "submission format" on the "Overview" page), and then their performance will be measured by our system. ', - - 'For testing phase of verification track, ' + - 'we will release the images with only pseudo labels and the constructed image pairs, ' + - 'without indicating they are positive or negative. ' + - "Participants will submit a file reporting each image pair's matching socre, " + - 'and then their performance will be measured by our system. ', - ]; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param apiService ApiService Injection. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param challengeService ChallengeService Injection. - * @param globalService GlobalService Injection. - */ - constructor( - private authService: AuthService, - private apiService: ApiService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService, - private logger: NGXLogger - ) {} - - /** - * Component on initialized - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.isActive = this.challenge['is_active']; - }); - this.challengeService.currentParticipationStatus.subscribe((status) => { - this.isParticipated = status; - if (status) { - const REDIRECT = this.globalService.getData(this.globalService.redirectStorageKey); - if (REDIRECT && REDIRECT['path']) { - this.globalService.deleteData(this.globalService.redirectStorageKey); - this.router.navigate([REDIRECT['path']]); - } else { - this.logger.info('navigating to /submit', status); - this.router.navigate(['../submit'], { relativeTo: this.route }); - } - } - }); - this.fetchTeams(); - } - - /** - * Fetch teams from backend. - */ - fetchTeams() { - const SELF = this; - const path = 'participants/participant_team'; - SELF.globalService.startLoader('Fetching Teams'); - SELF.apiService.getUrl(path).subscribe( - (data) => { - SELF.globalService.stopLoader(); - SELF.allTeams = data['results']; - this.updateTeamsView(true); - }, - (err) => { - if (err.status === 403) { - this.router.navigate(['permission-denied']); - } - this.globalService.stopLoader(); - SELF.globalService.handleApiError(err, false); - }, - () => {} - ); - } - - /** - * Select a team toggle. - */ - selectTeamToggle(team) { - this.isSelected = !this.isSelected; - this.selectedTeam = team; - } - - /** - * Show more results. - */ - seeMoreClicked() { - this.seeMore = this.seeMore + 1; - this.updateTeamsView(false); - } - - /** - * Show less results. - */ - seeLessClicked() { - this.seeMore = this.seeMore - 1; - this.updateTeamsView(false); - } - - /** - * Update teams view (called after fetching teams from API). - * @param reset reset flag - */ - updateTeamsView(reset) { - if (reset) { - this.seeMore = 1; - } - this.filteredTeams = this.allTeams.slice((this.seeMore - 1) * this.windowSize, this.seeMore * this.windowSize); - this.filteredTeamSource.next(this.filteredTeams); - } - - /** - * Participate team function. - */ - participateInChallenge() { - const confirmCallback = () => { - this.challengeService.participateInChallenge(this.challenge['id'], this.selectedTeam['id']); - }; - - let content = '' + '
    '; - this.termsAndConditionContent.forEach((item) => { - content += `
  1. ${item}
  2. `; - }); - content += '
'; - - const PARAMS = { - title: 'Terms and Conditions', - content: content, - confirm: 'Participate', - deny: 'Cancel', - label: 'I accept terms and conditions', - confirmCallback: confirmCallback, - denyCallback: null, - }; - this.globalService.showTermsAndConditionsModal(PARAMS); - } - - /** - * Create Team function. - * @param formname name of form fields (#). - */ - createTeam(formname) { - this.globalService.formValidate(this.components, this.createTeamSubmit, this); - } - - /** - * Called after create team form is validated. - * @param isvalidForm - */ - createTeamSubmit(isvalidForm) { - if (isvalidForm) { - const API_PATH = 'participants/participant_team'; - const url = this.create_team['team_url']; - let TEAM_BODY: any = { - team_name: this.create_team['team_name'], - }; - if (url) { - TEAM_BODY['team_url'] = url; - } - TEAM_BODY = JSON.stringify(TEAM_BODY); - this.globalService.startLoader('Creating Team'); - this.apiService.postUrl(API_PATH, TEAM_BODY).subscribe( - (data) => { - this.globalService.stopLoader(); - // Success Message in data.message - this.globalService.showToast('success', 'Team created successfully!', 5); - this.fetchTeams(); - - // Reset input - this.create_team = { - team_url: '', - team_name: '', - }; - - this.isnameFocused = false; - this.isurlFocused = false; - this.isTeamNameRequired = false; - }, - (err) => { - this.globalService.stopLoader(); - this.globalService.showToast('error', err.error.team_name, 5); - this.globalService.handleFormError(this.components, err); - }, - () => {} - ); - } else if (this.create_team['team_name'] === '') { - this.isTeamNameRequired = true; - } - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.html b/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.html deleted file mode 100644 index 42df90cf22..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.html +++ /dev/null @@ -1,45 +0,0 @@ - diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.scss b/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.scss deleted file mode 100644 index 949a530de0..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.scss +++ /dev/null @@ -1,29 +0,0 @@ -@import './variables.scss'; - -.modal-container { - .modal-card { - min-width: 240px; - max-width: 80%; - width: 80%; - max-height: 80%; - padding: 0px; - - .terms-content { - margin-bottom: 15px; - } - - .content { - padding: 0px; - } - } -} - -ul.inline-list { - margin-top: 15px; -} - -.ev-card-body { - .modal-title { - margin-bottom: 30px; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.spec.ts deleted file mode 100644 index d38e23f3f7..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.spec.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { TermsAndConditionsModalComponent } from './terms-and-conditions-modal.component'; -import { GlobalService } from '../../../../services/global.service'; -import { FormsModule } from '@angular/forms'; - -describe('TermsAndConditionsModalComponent', () => { - let component: TermsAndConditionsModalComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - imports: [FormsModule], - declarations: [TermsAndConditionsModalComponent], - providers: [GlobalService], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(TermsAndConditionsModalComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.ts b/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.ts deleted file mode 100644 index 75f5a993c2..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeparticipate/terms-and-conditions-modal/terms-and-conditions-modal.component.ts +++ /dev/null @@ -1,96 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { GlobalService } from '../../../../services/global.service'; - -@Component({ - selector: 'app-terms-and-conditions-modal', - templateUrl: './terms-and-conditions-modal.component.html', - styleUrls: ['./terms-and-conditions-modal.component.scss'], -}) -export class TermsAndConditionsModalComponent implements OnInit { - /** - * Input parameters object - */ - @Input() params: any; - - /** - * Modal title - */ - title = 'Are you sure ?'; - - /** - * Modal field label - */ - label = ''; - - /** - * Modal body - */ - content = ''; - - /** - * Modal accept button - */ - confirm = 'Yes'; - - /** - * Modal deny button - */ - deny = 'Cancel'; - - /** - * Is checked terms and conditions input - */ - termsAndConditions: any; - - /** - * Modal confirmed callback - */ - confirmCallback = () => {}; - - /** - * Modal denied callback - */ - denyCallback = () => {}; - - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor(private globalService: GlobalService) {} - - ngOnInit() { - if (this.params) { - if (this.params['title']) { - this.title = this.params['title']; - } - if (this.params['label']) { - this.label = this.params['label']; - } - if (this.params['content']) { - this.content = this.params['content']; - } - if (this.params['confirm']) { - this.confirm = this.params['confirm']; - } - if (this.params['deny']) { - this.deny = this.params['deny']; - } - if (this.params['confirmCallback']) { - this.confirmCallback = this.params['confirmCallback']; - } - if (this.params['denyCallback']) { - this.denyCallback = this.params['denyCallback']; - } - } - } - - confirmed() { - this.globalService.hideTermsAndConditionsModal(); - this.confirmCallback(); - } - - denied() { - this.globalService.hideTermsAndConditionsModal(); - this.denyCallback(); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.html b/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.html deleted file mode 100644 index 5f7918614e..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.html +++ /dev/null @@ -1,11 +0,0 @@ -
-
-
- All the phases of this challenge are private. -
-
-
- -
- -
diff --git a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.scss b/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.scss deleted file mode 100644 index aa0570b672..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.scss +++ /dev/null @@ -1,7 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.challenge-phases-container { - padding: 40px; - overflow: auto; -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.spec.ts b/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.spec.ts deleted file mode 100644 index 74df1bdc26..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengephasesComponent } from './challengephases.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { GlobalService } from '../../../services/global.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { PhasecardComponent } from './phasecard/phasecard.component'; -import { EndpointsService } from '../../../services/endpoints.service'; - -describe('ChallengephasesComponent', () => { - let component: ChallengephasesComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengephasesComponent, PhasecardComponent], - providers: [ChallengeService, ApiService, GlobalService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengephasesComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.ts b/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.ts deleted file mode 100644 index 3eae3e6fae..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/challengephases.component.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ChallengeService } from '../../../services/challenge.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengephases', - templateUrl: './challengephases.component.html', - styleUrls: ['./challengephases.component.scss'], -}) -export class ChallengephasesComponent implements OnInit { - /** - * Challenge object - */ - challenge: any; - - /** - * Challenge phases list - */ - phases: any; - - /** - * Constructor. - * @param challengeService ChallengeService Injection. - */ - constructor(private challengeService: ChallengeService) {} - - /** - * Component on intialized - */ - ngOnInit() { - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - }); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.html b/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.html deleted file mode 100644 index de9de7325c..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.html +++ /dev/null @@ -1,202 +0,0 @@ - diff --git a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.scss b/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.scss deleted file mode 100644 index cd7e2290f4..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.scss +++ /dev/null @@ -1,70 +0,0 @@ -@import './mixins.scss'; -@import './variables.scss'; - -.modal-container { - .modal-card { - width: 800px; - max-height: 600px; - padding: 50px 0px; - - .title { - position: fixed; - top: 0; - left: 0; - z-index: 99; - background: #fff; - width: 100%; - padding: 15px 20px; - } - - .form { - max-height: 485px; - overflow-y: auto; - overflow-x: hidden; - padding: 0px 30px; - } - - .buttons { - position: fixed; - width: 100%; - bottom: 0; - left: 0; - padding-bottom: 10px; - padding-top: 10px; - background: #fff; - z-index: 99; - } - - .editor-validation-message { - margin-top: 20px; - } - - .row-lr-margin { - margin-bottom: 20px; - } - } -} - -@include screen-small-medium { - .modal-container { - .modal-card { - width: 720px; - } - } -} - -@include screen-small { - .modal-container { - .modal-card { - width: 400px; - } - } -} - -.mt-20 { - margin-top: 20px; -} - -.mb-20 { - margin-bottom: 20px; -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.spec.ts b/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.spec.ts deleted file mode 100644 index 7277a0dbed..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { HttpClientModule } from '@angular/common/http'; -import { EditphasemodalComponent } from './editphasemodal.component'; -import { InputComponent } from '../../../utility/input/input.component'; -import { GlobalService } from '../../../../services/global.service'; -import { ChallengeService } from '../../../../services/challenge.service'; -import { EndpointsService } from '../../../../services/endpoints.service'; -import { ApiService } from '../../../../services/api.service'; -import { AuthService } from '../../../../services/auth.service'; - -describe('EditphasemodalComponent', () => { - let component: EditphasemodalComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [EditphasemodalComponent, InputComponent], - providers: [GlobalService, ChallengeService, EndpointsService, ApiService, AuthService], - imports: [HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(EditphasemodalComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.ts b/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.ts deleted file mode 100644 index b74a9fab77..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/editphasemodal/editphasemodal.component.ts +++ /dev/null @@ -1,268 +0,0 @@ -import { ViewChildren, QueryList, Component, Input, OnInit } from '@angular/core'; -import { GlobalService } from '../../../../services/global.service'; -import { InputComponent } from '../../../utility/input/input.component'; - -@Component({ - selector: 'app-editphasemodal', - templateUrl: './editphasemodal.component.html', - styleUrls: ['./editphasemodal.component.scss'], -}) -export class EditphasemodalComponent implements OnInit { - /** - * Input parameters object - */ - @Input() params: any; - - /** - * Modal title - */ - title = 'Edit Challenge Phase Details'; - - /** - * Label for the editor field i.e. challenge phase description - */ - label = ''; - - /** - * Challenge phase name - */ - name = ''; - - /** - * Challenge phase allowed submission file types - */ - allowedSubmissionFileTypes = ''; - - /** - * Challenge phase description - */ - description = ''; - - /** - * Challenge phase start date - */ - startDate = ''; - - /** - * Challenge phase end date - */ - endDate = ''; - - /** - * Challenge phase max submissions per day - */ - maxSubmissionsPerDay: number; - - /** - * Challenge phase max submissions per month - */ - maxSubmissionsPerMonth: number; - - /** - * Challenge phase max submissions - */ - maxSubmissions: number; - - /** - * Challenge phase max concurrent submissions allowed - */ - maxConcurrentSubmissionsAllowed: number; - - /** - * If editor error message - */ - isEditorFieldMessage = false; - - /** - * If per day maximum submission error message - */ - isPerDaySubmissionFieldMessage = false; - - /** - * If per month maximum submission error message - */ - isPerMonthSubmissionFieldMessage = false; - - /** - * Editor validation message - */ - editorValidationMessage = ''; - - /** - * per day submission validation message - */ - perDaySubmisionValidationMessage = ''; - - /** - * Editor validation message - */ - PerMonthSubmissionValidationMessage = ''; - - /** - * Modal accept button - */ - confirm = 'Submit'; - - /** - * Modal deny button - */ - deny = 'Cancel'; - - /** - * Today's date time - */ - todayDateTime: Date; - - /** - * delete challenge button disable - */ - isDisabled = false; - - /** - * Is edit phase details - */ - editPhaseDetails = true; - - /** - * Quill editor style - */ - quillEditorStyle = { - height: '320px', - width: '712px', - }; - - /** - * Modal form items - */ - @ViewChildren('formmodal') - formComponents: QueryList; - - /** - * Modal confirmed callback - */ - confirmCallback = (params) => {}; - - /** - * Modal denied callback - */ - denyCallback = () => {}; - - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor( - private globalService: GlobalService, - ) {} - - ngOnInit() { - if (this.params) { - if (this.params['title']) { - this.title = this.params['title']; - } - if (this.params['label']) { - this.label = this.params['label']; - } - if (this.params['name']) { - this.name = this.params['name']; - } - if (this.params['description']) { - this.description = this.params['description']; - } - if (this.params['startDate']) { - this.startDate = this.params['startDate']; - } - if (this.params['endDate']) { - this.endDate = this.params['endDate']; - } - if (this.params['maxSubmissionsPerDay']) { - this.maxSubmissionsPerDay = this.params['maxSubmissionsPerDay']; - } - if (this.params['maxSubmissionsPerMonth']) { - this.maxSubmissionsPerMonth = this.params['maxSubmissionsPerMonth']; - } - if (this.params['maxSubmissions']) { - this.maxSubmissions = this.params['maxSubmissions']; - } - if (this.params['maxConcurrentSubmissionsAllowed']) { - this.maxConcurrentSubmissionsAllowed = this.params['maxConcurrentSubmissionsAllowed']; - } - if (this.params['allowedSubmissionFileTypes']) { - this.allowedSubmissionFileTypes = this.params['allowedSubmissionFileTypes']; - } - if (this.params['confirm']) { - this.confirm = this.params['confirm']; - } - if (this.params['deny']) { - this.deny = this.params['deny']; - } - if (this.params['confirmCallback']) { - this.confirmCallback = this.params['confirmCallback']; - } - if (this.params['denyCallback']) { - this.denyCallback = this.params['denyCallback']; - } - } - this.todayDateTime = new Date(); - } - - /** - * Form Validate function. - */ - formValidate() { - this.formComponents.map((val) => { - if (val.label === 'max_submissions_per_day') { - this.maxSubmissionsPerDay = parseInt(val.value, 10); - } - if (val.label === 'max_submissions_per_month') { - this.maxSubmissionsPerMonth = parseInt(val.value, 10); - } - if (val.label === 'max_submissions') { - this.maxSubmissions = parseInt(val.value, 10); - } - }); - if (this.formComponents.length > 0) { - this.globalService.formValidate(this.formComponents, this.confirmed, this); - } else { - this.confirmed(this); - } - } - - /** - * Modal Confirmed. - */ - confirmed(self) { - if (self.description === '') { - self.denyCallback(); - self.isEditorFieldMessage = true; - self.editorValidationMessage = 'This field cannot be empty!'; - return; - } - if (self.maxSubmissionsPerDay > self.maxSubmissionsPerMonth) { - self.denyCallback(); - self.isPerDaySubmissionFieldMessage = true; - self.perDaySubmisionValidationMessage = - 'Max number of per day submission cannot be greater than max number of per month submissions'; - return; - } - if (self.maxSubmissionsPerMonth > self.maxSubmissions) { - self.denyCallback(); - self.isPerMonthSubmissionFieldMessage = true; - self.PerMonthSubmissionValidationMessage = - 'Max number of per month submissions cannot be greater than max total submissions'; - return; - } - const PARAMS = self.globalService.formFields(self.formComponents); - PARAMS[self.label] = self.description; - self.globalService.hideEditPhaseModal(); - self.confirmCallback(PARAMS); - } - - /** - * Modal Denied. - */ - denied() { - this.globalService.hideEditPhaseModal(); - this.denyCallback(); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.html b/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.html deleted file mode 100644 index b1f1087df1..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.html +++ /dev/null @@ -1,57 +0,0 @@ -
-
-
-
- {{ phase['name'] }} -
-
-
-
-
-
-
-

- Starts on: - {{ startDate }} {{ phase['start_zone'] }} -

-
-
-
-

- Ends on: - {{ endDate }} {{ phase['end_zone'] }} -

-
- -
-
-
-
-
- -
-
-

- Submissions/day: - {{ phase['max_submissions_per_day'] }} -

-
- -
-

- Submissions/month: - {{ phase['max_submissions_per_month'] }} -

-
- -
-

- Total submissions: - {{ phase['max_submissions'] }} -

-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.scss b/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.scss deleted file mode 100644 index 3666c6fc5e..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.scss +++ /dev/null @@ -1,17 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.phase-card { - margin-bottom: 20px; - padding-bottom: 1px; -} - -.phase-value { - color: $overlay-darker; -} - -.phase-card { - .row-lr-margin { - margin-bottom: 20px; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.spec.ts b/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.spec.ts deleted file mode 100644 index d82b8cde3f..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.spec.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PhasecardComponent } from './phasecard.component'; -import { GlobalService } from '../../../../services/global.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { ChallengeService } from '../../../../services/challenge.service'; -import { EndpointsService } from '../../../../services/endpoints.service'; -import { ApiService } from '../../../../services/api.service'; -import { AuthService } from '../../../../services/auth.service'; - -describe('PhasecardComponent', () => { - let component: PhasecardComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [PhasecardComponent], - providers: [GlobalService, ChallengeService, EndpointsService, ApiService, AuthService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PhasecardComponent); - component = fixture.componentInstance; - component['phase'] = { - name: 'test', - start_date: '2018-03-13T00:00:00Z', - end_date: '2099-12-31T00:00:00Z', - max_submissions_per_day: 90, - max_submissions: 100, - }; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.ts b/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.ts deleted file mode 100644 index 46a18b065a..0000000000 --- a/frontend_v2/src/app/components/challenge/challengephases/phasecard/phasecard.component.ts +++ /dev/null @@ -1,78 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { GlobalService } from '../../../../services/global.service'; -import { ChallengeService } from '../../../../services/challenge.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-phasecard', - templateUrl: './phasecard.component.html', - styleUrls: ['./phasecard.component.scss'], -}) -export class PhasecardComponent implements OnInit { - /** - * Phase object input - */ - @Input() phase: object; - - /** - * start date of phase - */ - startDate: string; - - /** - * End date of phase - */ - endDate: string; - - /** - * Challenge object - */ - challenge: any; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * To call the API inside modal for editing the challenge phase details - */ - apiCall: any; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param challengeService ChallengeService Injection. - */ - constructor( - private globalService: GlobalService, - private challengeService: ChallengeService - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.updateViewElements(); - - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - /** - * View elements update (Called after onInit) - */ - updateViewElements() { - const START_DATE = new Date(Date.parse(this.phase['start_date'])); - const END_DATE = new Date(Date.parse(this.phase['end_date'])); - this.startDate = this.globalService.formatDate12Hour(START_DATE); - this.endDate = this.globalService.formatDate12Hour(END_DATE); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.html b/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.html deleted file mode 100644 index 28ad07acf6..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.html +++ /dev/null @@ -1,359 +0,0 @@ -
-
-
-
-
-
Note: By default, we allocate 0.25 vCPU and 0.5 GB memory - to each challenge evaluation worker. In case your evaluation requires additional resources, - please email us at admin@cloudcv.org.
-
-
-
-
-
-
-
-
Challenge Settings
-
-
- - - - -
-
-
-
- - -
-
- - Upload New Image -
-
-
- - {{ challenge['title'] }} - - - - - - - -
-
-
- - Challenge Overview - - - -     - - - -
-
-
-
- - Terms and Conditions - - - -     - - - -
-
- - - Starts on: - {{ challenge['start_date'] | date: 'medium' }} {{ challenge['start_zone'] }} - - - - - - -
- - - Ends on: - {{ challenge['end_date'] | date: 'medium' }} {{ challenge['end_zone'] }} - - - - - - -
- - - {{ publishChallenge.state }} - - - -
- Close Participation - -
-
-
- - -
-
- Banned emails Ids: -
-
- - - - {{ email }} - cancel - - - - -
{{ message }}
-
- Update -
-
-
-
-
- - - -
-
- Edit Phase -
-
-
-
- -
- -
- - Phase Details - - - -     - -     - - Is Public - - -      - - Submission Visibility - - - - -

- - Test Annotations - - - - -
-
-

- Note: For test annotations > 100MB, please use - evalai-cli - to update the test annotations. - View Instructions -

-
-
-
-
- -
-
- Edit Leaderboard -
-
-
-
- - -
-
-
- - Leaderboard Visibility - - - -      - - Leaderboard Schema - - - -      -
-
-
-
- - Leaderboard Precision Value - -
- - Changing the precision value will show the results with that precision value to the participants. - -
- - {{ leaderboardPrecisionValue }} - -
-
-
-
-
-
-
- - - - -
-
-
-
Evaluation script
-
-
-
-
- - - Evaluation Criteria - - - -     - - -    - - - Evaluation Script - - - - -
-
-
- -
-
-
-
Submission worker actions
-
-
-
-
- - - -
-
-
-
-
Submission worker logs
-
-
-
-
{{ log }}
-
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.scss b/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.scss deleted file mode 100644 index d2fc82b7d3..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.scss +++ /dev/null @@ -1,116 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.challenge-card { - .bottom-card-container { - padding: 0px 30px; - .settings-section { - padding: 50px; - border: 1px solid; - border-radius: 5px; - min-height: 50px; - color: rgb(101, 97, 97); - } - } - .row { - margin: 20px 0px 3% 0px; - } -} - -p { - margin: 6px 0px 25px 0px; -} - -.rangeslider { - width: 50%; - display: flex; - margin-top: 15px 5px 0px 0px; -} - -.btn-floating { - margin-top: 4%; - margin-right: 8%; -} - -.plus-btn { - margin-left: 8%; -} - -.rangeslider { - mat-chip { - margin-top: 6%; - background: #252833 !important; - } - .btn { - margin-right: 0px; - } -} - -.row .col { - padding: 0px; -} - -input { - border-bottom: none; -} - -:host ::ng-deep .mat-tab-label .mat-tab-label-content { - font-weight: $fw-light !important; - font-size: $fs-16 !important; -} - -.phase-card { - width: 50vw; -} - -.phase-button { - margin-left: 25px; -} - -.worker-title { - margin-bottom: 2%; -} - -.upload-container { - text-align: center; -} - -@media (max-width: 992px) { - .settings-section { - padding: 50px !important; - } -} - -@media (min-width: 992px) { - .col-md-12 { - width: auto; - } -} - -@media (max-width: 600px) { - .settings-section { - padding: 25px !important; - } - .rangeslider { - justify-content: space-evenly; - } - .btn-floating { - margin: 0%; - } -} - -.example-chip-list { - width: 100%; -} - -.error-message { - color: $highlight; -} - -.challenge-detail { - padding: 8px; -} - -.challenge-title { - color: rgba(0, 0, 0, 0.87); -} diff --git a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.spec.ts b/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.spec.ts deleted file mode 100644 index 5bee4f199e..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengesettingsComponent } from './challengesettings.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { WindowService } from '../../../services/window.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; - -describe('ChallengesettingsComponent', () => { - let component: ChallengesettingsComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengesettingsComponent], - providers: [ChallengeService, GlobalService, AuthService, ApiService, WindowService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengesettingsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.ts b/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.ts deleted file mode 100644 index 6a7e8ad43a..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesettings/challengesettings.component.ts +++ /dev/null @@ -1,1527 +0,0 @@ -import { Component, OnInit, OnDestroy, QueryList, ViewChildren } from '@angular/core'; -import { COMMA, ENTER } from '@angular/cdk/keycodes'; -import { MatChipInputEvent } from '@angular/material/chips'; -import { Router } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; -import * as moment from 'moment'; - -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; - -import { SelectphaseComponent } from '../../utility/selectphase/selectphase.component'; - -@Component({ - selector: 'app-challengesettings', - templateUrl: './challengesettings.component.html', - styleUrls: ['./challengesettings.component.scss'], -}) -export class ChallengesettingsComponent implements OnInit, OnDestroy { - /** - * Phase select card components - */ - @ViewChildren('phaseselect') - components: QueryList; - - /** - * Challenge object - */ - challenge: any; - - /** - * Leaderboard object - */ - leaderboard: any; - - /** - * Id of the currently selected leaderboard - */ - selectedLeaderboardId: any = null; - - /** - * Is challenge host - */ - isChallengeHost = false; - - /** - * To call the API inside modal for editing the challenge details - */ - apiCall: any; - - /** - * Challenge phase list - */ - phases = []; - - /** - * Phase split list - */ - phaseSplits = []; - - /** - * Challenge phases filtered - */ - filteredPhases = []; - - /** - * Phase splits filtered - */ - filteredPhaseSplits = []; - - /** - * Currently selected phase - */ - selectedPhase: any = null; - - /** - * Phase selection type (radio button or select box) - */ - phaseSelectionType = 'selectBox'; - - /** - * Select box list type - */ - phaseSelectionListType = 'phase'; - - /** - * If the submission is public - */ - isSubmissionPublic = false; - - /** - * If the phase is public - */ - isPhasePublic = false; - - /** - * If leaderboard is public - */ - isLeaderboardPublic = false; - - /** - * Currently selected phase split - */ - selectedPhaseSplit: any = null; - - /** - * Phase selection type (radio button or select box) - */ - phaseLeaderboardSelectionType = 'selectBox'; - - /** - * Select box list type - */ - phaseLeaderboardSelectionListType = 'settingsPhaseSplit'; - - /** - * If leaderboard of phase split is public - * 1 -> private - * 3 -> public - */ - isPhaseSplitLeaderboardPublic = 1; - - /** - * Leaderboard precision value - */ - leaderboardPrecisionValue = 2; - - /** - * Set leaderboard precision value - */ - setLeaderboardPrecisionValue = '1.2-2'; - - /** - * If leaderboard precision value is equal to 0 - */ - minusDisabled = false; - - /** - * If leaderboard precision value is equal to 20 - */ - plusDisabled = false; - - /** - * store worker logs - */ - workerLogs = []; - - /** - * An interval for fetching the leaderboard data in every 5 seconds - */ - pollingInterval: any; - - /** - * Participants banned emails ids - */ - bannedEmailIds: string[]; - - /** - * Former participants banned emails ids - */ - formerBannedEmailIds: string[]; - - /** - * Email validation for the banned email ids - */ - isValidationError = false; - - /** - * Email error message - */ - message: string; - - /** - * phase visibility state and it's icon - */ - phaseVisibility = { - state: 'Private', - icon: 'fa fa- text-darken-1', - }; - - /** - * submission visibility state and it's icon - */ - submissionVisibility = { - state: 'Private', - icon: 'fa fa-toggle-off grey-text text-darken-1', - }; - - /** - * phase visibility state and it's icon - */ - leaderboardVisibility = { - state: 'Private', - icon: 'fa fa-toggle-off grey-text text-darken-1', - }; - - /** - * publish challenge state and it's icon - */ - publishChallenge = { - state: 'Not Published', - icon: 'fa fa-eye-slash red-text', - }; - - /** - * Separator key codes - */ - readonly separatorKeysCodes: number[] = [ENTER, COMMA]; - - /** - * Banned email ids chips property - */ - visible = true; - selectable = true; - removable = true; - addOnBlur = true; - - /** - * Input to edit the banned participants emails - */ - isBannedEmailInputVisible: boolean; - - constructor( - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private endpointsService: EndpointsService, - private router: Router, - private logger: NGXLogger - ) {} - - ngOnInit() { - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - - this.challengeService.currentChallengePublishState.subscribe((publishChallenge) => { - this.publishChallenge.state = publishChallenge.state; - this.publishChallenge.icon = publishChallenge.icon; - }); - - if (!this.challenge['remote_evaluation']) { - this.fetchWorkerLogs(); - this.startLoadingLogs(); - } - - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - for (let i = 0; i < this.phases.length; i++) { - if (this.phases[i].is_public === false) { - this.phases[i].showPrivate = true; - } else { - this.phases[i].showPrivate = false; - } - } - this.filteredPhases = this.phases; - }); - - this.challengeService.currentPhaseSplit.subscribe((phaseSplits) => { - this.phaseSplits = phaseSplits; - for (let i = 0; i < this.phaseSplits.length; i++) { - if (this.phaseSplits[i].visibility !== 3) { - this.phaseSplits[i].showPrivate = true; - } else { - this.phaseSplits[i].showPrivate = false; - } - } - this.filteredPhaseSplits = this.phaseSplits; - }); - } - - // Edit Challenge Details -> - - /** - * Edit challenge title function - */ - editChallengeTitle() { - const SELF = this; - - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.title = data.title; - SELF.globalService.showToast('success', 'The challenge title is successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - }; - - const PARAMS = { - title: 'Edit Challenge Title', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'editChallengeTitle', - isRequired: true, - label: 'title', - placeholder: 'Challenge Title', - type: 'text', - value: this.challenge.title, - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Delete challenge - */ - deleteChallenge() { - const SELF = this; - const redirectTo = '/dashboard'; - - SELF.apiCall = () => { - const BODY = JSON.stringify({}); - SELF.apiService.postUrl(SELF.endpointsService.deleteChallengeURL(SELF.challenge.id), BODY).subscribe( - (data) => { - SELF.router.navigate([redirectTo]); - SELF.globalService.showToast('success', 'The Challenge is successfully deleted!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - }; - - const PARAMS = { - title: 'Delete Challenge', - content: '', - confirm: 'I understand consequences, delete the challenge', - deny: 'Cancel', - form: [ - { - name: 'challegenDeleteInput', - isRequired: true, - label: '', - placeholder: 'Please type in the name of the challenge to confirm', - type: 'text', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge image function - */ - editChallengeImage() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('image', params['image']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.challenge.image = data.image; - SELF.globalService.showToast('success', 'The Challenge image successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Challenge Image', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Challenge Image', - isRequired: true, - label: 'image', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge overview with file function - */ - editChallengeOverviewUpload() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('overview_file', params['overview_file']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.challenge.description = data.description; - SELF.globalService.showToast('success', 'Challenge description updated successfully!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-CHALLENGE-DESCRIPTION-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Challenge Overview', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Challenge Overview', - isRequired: true, - label: 'overview_file', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge terms and conditions with file function - */ - editChallengeTermsAndConditionsUpload() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('terms_and_conditions_file', params['terms_and_conditions_file']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.challenge.terms_and_conditions = data.terms_and_conditions; - SELF.globalService.showToast('success', 'Terms and conditions updated successfully!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-TERMS-AND-CONDITIONS-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Terms and Conditions', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Challenge Terms and Descriptions', - isRequired: true, - label: 'terms_and_conditions_file', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge evaluation criteria with file function - */ - editEvaluationCriteriaUpload() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('evaluation_criteria_file', params['evaluation_criteria_file']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.challenge.evaluation_details = data.evaluation_details; - SELF.globalService.showToast('success', 'Evaluation details updated successfully!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-CHALLENGE-EVALUATION-DETAILS-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Evaluation Criteria', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Edit Evaluation Criteria', - isRequired: true, - label: 'evaluation_criteria_file', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - - } - - /** - * Edit phase details criteria with file function - */ - editPhaseDetailsUpload() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('phase_description_file', params['phase_description_file']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.updateChallengePhaseDetailsURL(SELF.challenge.id, SELF.selectedPhase['id']), - FORM_DATA - ) - .subscribe( - (data) => { - for (const attrname of Object.keys(data)) { - SELF.selectedPhase[attrname] = data[attrname]; - } - SELF.globalService.showToast('success', 'Challenge phase description updated successfully!'); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('PHASE-DESCRIPTION-UPDATE-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Phase Description', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Phase Description', - isRequired: true, - label: 'phase_description_file', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge overview function - */ - editChallengeOverview() { - const SELF = this; - - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.description = data.description; - SELF.globalService.showToast('success', 'The description is successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-CHALLENGE-DESCRIPTION-FINISHED') - ); - }; - - const PARAMS = { - title: 'Edit Challenge Description', - label: 'description', - isEditorRequired: true, - editorContent: this.challenge.description, - confirm: 'Submit', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit terms and conditions of the challenge - */ - editTermsAndConditions() { - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.terms_and_conditions = data.terms_and_conditions; - this.updateView(); - SELF.globalService.showToast('success', 'The terms and conditions are successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-TERMS-AND-CONDITIONS-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Terms And Conditions', - label: 'terms_and_conditions', - isEditorRequired: true, - editorContent: this.challenge.terms_and_conditions, - confirm: 'Submit', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge start and end date function - */ - challengeDateDialog() { - const SELF = this; - SELF.apiCall = (params) => { - if (new Date(params.start_date).valueOf() < new Date(params.end_date).valueOf()) { - const BODY = JSON.stringify({ - start_date: new Date(params.start_date).toISOString(), - end_date: new Date(params.end_date).toISOString(), - }); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.start_date = data.start_date; - SELF.challenge.end_date = data.end_date; - SELF.globalService.showToast('success', 'The Challenge start and end date successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - } else { - SELF.globalService.showToast('error', 'The challenge start date cannot be same or greater than end date.', 5); - } - }; - const PARAMS = { - title: 'Edit Challenge Start and End Date', - content: '', - confirm: 'Confirm', - deny: 'Cancel', - form: [ - { - isRequired: false, - label: 'start_date', - placeholder: 'Start Date and Time', - type: 'text', - value: moment(this.challenge.start_date).format('MM-DD-YYYY hh:mm a'), - }, - { - isRequired: false, - label: 'end_date', - placeholder: 'End Date and Time', - type: 'text', - value: moment(this.challenge.end_date).format('MM-DD-YYYY hh:mm a'), - }, - ], - isButtonDisabled: true, - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Publish challenge click function - */ - togglePublishChallengeState() { - const SELF = this; - let toggleChallengePublishState, isPublished; - if (this.publishChallenge.state === 'Published') { - toggleChallengePublishState = 'private'; - isPublished = false; - } else { - toggleChallengePublishState = 'public'; - isPublished = true; - } - SELF.apiCall = () => { - const BODY = JSON.stringify({ - published: isPublished, - }); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - if (isPublished) { - this.publishChallenge.state = 'Published'; - this.publishChallenge.icon = 'fa fa-eye green-text'; - } else { - this.publishChallenge.state = 'Not Published'; - this.publishChallenge.icon = 'fa fa-eye-slash red-text'; - } - SELF.globalService.showToast( - 'success', - 'The challenge was successfully made ' + toggleChallengePublishState, - 5 - ); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('PUBLISH-CHALLENGE-UPDATE-FINISHED') - ); - }; - - const PARAMS = { - title: 'Make this challenge ' + toggleChallengePublishState + '?', - content: '', - confirm: "Yes, I'm sure", - deny: 'No', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - } - - /** - * Close participation function - */ - stopParticipation(event) { - event.preventDefault(); - const participationState = this.challenge['is_registration_open'] ? 'Close' : 'Open'; - const closeParticipationMsg = 'Participation is closed successfully'; - const openParticipationMsg = 'Participation is opened successfully'; - - this.apiCall = () => { - if (this.isChallengeHost && this.challenge['id'] !== null) { - const BODY = JSON.stringify({ - is_registration_open: !this.challenge['is_registration_open'], - }); - this.apiService - .patchUrl(this.endpointsService.editChallengeDetailsURL(this.challenge.creator.id, this.challenge.id), BODY) - .subscribe( - () => { - this.challenge['is_registration_open'] = !this.challenge['is_registration_open']; - if (this.challenge['is_registration_open']) { - this.globalService.showToast('success', openParticipationMsg, 5); - } else { - this.globalService.showToast('success', closeParticipationMsg, 5); - } - }, - (err) => { - this.globalService.handleApiError(err, true); - this.globalService.showToast('error', err); - }, - () => {} - ); - } - }; - - const PARAMS = { - title: participationState + ' participation in the challenge?', - content: '', - confirm: "Yes, I'm sure", - deny: 'No', - confirmCallback: this.apiCall, - }; - this.globalService.showConfirm(PARAMS); - } - - // Banned Email Ids -> - - updateView() { - this.bannedEmailIds = this.challenge.banned_email_ids || []; - this.formerBannedEmailIds = this.bannedEmailIds.concat(); // Creating deep copy - } - - /** - * Add banned email chip - * @param event current event - */ - add(event: MatChipInputEvent): void { - const SELF = this; - const input = event.input; - const value = event.value; - SELF.isValidationError = false; - SELF.message = ''; - - // Add our fruit - if ((value || '').trim()) { - if (!SELF.validateEmail(value.trim())) { - SELF.isValidationError = true; - SELF.message = 'Please enter a valid email!'; - } else { - SELF.bannedEmailIds.push(value.trim()); - } - } - - // Reset the input value - if (input && !SELF.isValidationError) { - input.value = ''; - } - } - - /** - * Remove banned email chip - * @param email Banned email id - */ - remove(email): void { - const SELF = this; - const index = SELF.bannedEmailIds.indexOf(email); - - if (index >= 0) { - SELF.bannedEmailIds.splice(index, 1); - } - - // updating the banned Email Ids list - SELF.updateBannedEmailList(); - } - - validateEmail(email) { - if (email === '') { - return true; - } - const regex = /^\s*[\w\-\+_]+(\.[\w\-\+_]+)*\@[\w\-\+_]+\.[\w\-\+_]+(\.[\w\-\+_]+)*\s*$/; - return String(email).search(regex) !== -1; - } - - reflectChange() { - if (this.bannedEmailIds.toString() === this.formerBannedEmailIds.toString()) { - this.globalService.showToast('error', 'No change to reflect!'); - } else if (this.isValidationError) { - this.globalService.showToast('error', 'Please enter a valid email!'); - } else { - this.updateBannedEmailList(); - } - } - - updateBannedEmailList() { - const SELF = this; - const BODY = JSON.stringify({ - banned_email_ids: SELF.bannedEmailIds, - }); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.banned_email_ids = data.banned_email_ids; - SELF.isBannedEmailInputVisible = false; - SELF.globalService.showToast('success', 'Banned participant emails are successfully updated!', 5); - this.formerBannedEmailIds = this.bannedEmailIds.concat(); // Creating deep copy - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - } - - // Edit Phase Details -> - - /** - * Called when a phase is selected (from child component) - */ - phaseSelected() { - const SELF = this; - return (phase) => { - SELF.selectedPhase = phase; - SELF.isPhasePublic = SELF.selectedPhase['is_public']; - SELF.isSubmissionPublic = SELF.selectedPhase['is_submission_public']; - SELF.isLeaderboardPublic = SELF.selectedPhase['leaderboard_public']; - if (SELF.isPhasePublic) { - SELF.phaseVisibility.state = 'Public'; - SELF.phaseVisibility.icon = 'fa fa-toggle-on green-text'; - } else { - SELF.phaseVisibility.state = 'Private'; - SELF.phaseVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } - if (SELF.isSubmissionPublic) { - SELF.submissionVisibility.state = 'Public'; - SELF.submissionVisibility.icon = 'fa fa-toggle-on green-text'; - } else { - SELF.submissionVisibility.state = 'Private'; - SELF.submissionVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } - }; - } - - /** - * Edit Phase Details function - */ - editPhaseDetails() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - for (const key in params) { - if (params[key]) { - FORM_DATA.append(key, params[key]); - } - } - SELF.apiService - .patchFileUrl( - SELF.endpointsService.updateChallengePhaseDetailsURL(SELF.challenge.id, SELF.selectedPhase['id']), - FORM_DATA - ) - .subscribe( - (data) => { - for (const attrname of Object.keys(data)) { - SELF.selectedPhase[attrname] = data[attrname]; - } - SELF.globalService.showToast('success', 'The challenge phase details are successfully updated!'); - }, - (err) => { - SELF.globalService.showToast('error', err); - }, - () => { - this.logger.info('PHASE-UPDATE-FINISHED'); - } - ); - }; - - const PARAMS = { - title: 'Edit Challenge Phase Details', - name: SELF.selectedPhase['name'], - label: 'description', - description: SELF.selectedPhase['description'], - startDate: SELF.selectedPhase['start_date'], - endDate: SELF.selectedPhase['end_date'], - maxSubmissionsPerDay: SELF.selectedPhase['max_submissions_per_day'], - maxSubmissionsPerMonth: SELF.selectedPhase['max_submissions_per_month'], - maxSubmissions: SELF.selectedPhase['max_submissions'], - maxConcurrentSubmissionsAllowed: SELF.selectedPhase['max_concurrent_submissions_allowed'], - allowedSubmissionFileTypes: SELF.selectedPhase['allowed_submission_file_types'], - confirm: 'Submit', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showEditPhaseModal(PARAMS); - } - - /** - * Phase Visibility toggle function - */ - togglePhaseVisibility() { - const SELF = this; - let togglePhaseVisibilityState, isPublic; - if (SELF.phaseVisibility.state === 'Public') { - togglePhaseVisibilityState = 'private'; - isPublic = false; - SELF.phaseVisibility.state = 'Private'; - SELF.phaseVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } else { - togglePhaseVisibilityState = 'public'; - isPublic = true; - SELF.phaseVisibility.state = 'Public'; - SELF.phaseVisibility.icon = 'fa fa-toggle-on green-text'; - } - const BODY: FormData = new FormData(); - BODY.append('is_public', isPublic); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.updateChallengePhaseDetailsURL(SELF.selectedPhase['challenge'], SELF.selectedPhase['id']), - BODY - ) - .subscribe( - (data) => { - SELF.selectedPhase['is_public'] = data.is_public; - SELF.selectedPhase['showPrivate'] = !data.is_public; - SELF.challengeService.changePhaseSelected(true); - if (!SELF.selectedPhase['is_public']) { - for (let i = 0; i < SELF.phaseSplits.length; i++) { - if ( - SELF.phaseSplits[i]['challenge_phase_name'] === SELF.selectedPhase['name'] && - SELF.phaseSplits[i]['visibility'] === 3 - ) { - const visibility: any = 1; - const FORM: FormData = new FormData(); - FORM.append('visibility', visibility); - SELF.apiService - .patchFileUrl(SELF.endpointsService.particularChallengePhaseSplitUrl(SELF.phaseSplits[i]['id']), FORM) - .subscribe( - (dataPhaseSplit) => { - SELF.phaseSplits[i]['visibility'] = dataPhaseSplit.visibility; - SELF.challengeService.changePhaseSplitSelected(true); - SELF.phaseSplits[i]['showPrivate'] = true; - if (SELF.selectedPhaseSplit === SELF.phaseSplits[i]) { - SELF.leaderboardVisibility.state = 'Private'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('Change leaderboard visibility after phase is updated') - ); - } - } - } - - SELF.globalService.showToast('success', 'The phase was successfully made ' + togglePhaseVisibilityState, 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - if (isPublic) { - SELF.phaseVisibility.state = 'Private'; - SELF.phaseVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } else { - SELF.phaseVisibility.state = 'Public'; - SELF.phaseVisibility.icon = 'fa fa-toggle-on green-text'; - } - }, - () => this.logger.info('PHASE-VISIBILITY-UPDATE-FINISHED') - ); - } - - /** - * Submission Visibility toggle function - */ - toggleSubmissionVisibility() { - const SELF = this; - if (SELF.isLeaderboardPublic === true) { - let toggleSubmissionVisibilityState, isSubmissionPublic; - if (SELF.submissionVisibility.state === 'Public') { - toggleSubmissionVisibilityState = 'private'; - isSubmissionPublic = false; - SELF.submissionVisibility.state = 'Private'; - SELF.submissionVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } else { - toggleSubmissionVisibilityState = 'public'; - isSubmissionPublic = true; - SELF.submissionVisibility.state = 'Public'; - SELF.submissionVisibility.icon = 'fa fa-toggle-on green-text'; - } - const BODY: FormData = new FormData(); - BODY.append('is_submission_public', isSubmissionPublic); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.updateChallengePhaseDetailsURL( - SELF.selectedPhase['challenge'], - SELF.selectedPhase['id'] - ), - BODY - ) - .subscribe( - (data) => { - SELF.selectedPhase['is_submission_public'] = data.is_submission_public; - SELF.globalService.showToast( - 'success', - 'The submissions were successfully made ' + toggleSubmissionVisibilityState, - 5 - ); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - if (isSubmissionPublic) { - SELF.submissionVisibility.state = 'Private'; - SELF.submissionVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } else { - SELF.submissionVisibility.state = 'Public'; - SELF.submissionVisibility.icon = 'fa fa-toggle-on green-text'; - } - }, - () => this.logger.info('SUBMISSION-VISIBILITY-UPDATE-FINISHED') - ); - } else { - SELF.globalService.showToast('error', 'Leaderboard is private, please make the leaderboard public'); - } - } - - showCliInstructions() { - const SELF = this; - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Instructions', - label: 'evaluation_details', - isCliInstructions: true, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit test annotations of the phase - */ - editTestAnnotations() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('test_annotation', params['test_annotation']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.updateChallengePhaseDetailsURL( - SELF.selectedPhase['challenge'], - SELF.selectedPhase['id'] - ), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.globalService.showToast('success', 'The test annotations are successfully updated!'); - }, - (err) => { - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-TEST-ANNOTATION-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Test Annotations', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'testAnnotation', - isRequired: true, - label: 'test_annotation', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - // Edit Leaderboard Details -> - - /** - * This is called when a phase split is selected (from child components) - */ - phaseSplitSelected() { - const SELF = this; - return (phaseSplit) => { - SELF.selectedPhaseSplit = phaseSplit; - SELF.isPhaseSplitLeaderboardPublic = SELF.selectedPhaseSplit['visibility']; - if (SELF.isPhaseSplitLeaderboardPublic === 3) { - SELF.leaderboardVisibility.state = 'Public'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-on green-text'; - } else { - SELF.leaderboardVisibility.state = 'Private'; - SELF.leaderboardVisibility.icon = 'fa fa fa-toggle-off grey-text text-darken-1'; - } - const API_PATH = SELF.endpointsService.particularChallengePhaseSplitUrl(this.selectedPhaseSplit['id']); - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.leaderboardPrecisionValue = data.leaderboard_decimal_precision; - SELF.setLeaderboardPrecisionValue = `1.${SELF.leaderboardPrecisionValue}-${SELF.leaderboardPrecisionValue}`; - SELF.selectedLeaderboardId = data.leaderboard; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - SELF.apiService - .getUrl( - this.endpointsService.getOrUpdateLeaderboardSchemaURL(SELF.selectedLeaderboardId) - ) - .subscribe( - (data) => { - SELF.leaderboard = data; - }, - (err) => { - SELF.globalService.showToast('error', "Could not fetch leaderboard schema"); - }, - () => {} - ); - } - ); - }; - } - - /** - * Leadeboard Visibility toggle function - */ - toggleLeaderboardVisibility() { - const SELF = this; - let toggleLeaderboardVisibilityState, visibility, phaseIsPublic; - for (let i = 0; i < SELF.filteredPhases.length; i++) { - if (SELF.filteredPhases[i]['name'] === SELF.selectedPhaseSplit['challenge_phase_name']) { - phaseIsPublic = SELF.filteredPhases[i]['is_public']; - } - } - if (phaseIsPublic) { - if (SELF.leaderboardVisibility.state === 'Public') { - toggleLeaderboardVisibilityState = 'private'; - visibility = 1; - SELF.leaderboardVisibility.state = 'Private'; - SELF.leaderboardVisibility.icon = 'fa fa fa-toggle-off grey-text text-darken-1'; - } else { - toggleLeaderboardVisibilityState = 'public'; - visibility = 3; - SELF.leaderboardVisibility.state = 'Public'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-on green-text'; - } - const BODY: FormData = new FormData(); - BODY.append('visibility', visibility); - SELF.apiService - .patchFileUrl(SELF.endpointsService.particularChallengePhaseSplitUrl(SELF.selectedPhaseSplit['id']), BODY) - .subscribe( - (data) => { - SELF.selectedPhaseSplit['visibility'] = data.visibility; - SELF.challengeService.changePhaseSplitSelected(true); - if (visibility === 3) { - SELF.selectedPhaseSplit['showPrivate'] = false; - SELF.leaderboardVisibility.state = 'Public'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-on green-text'; - } else { - SELF.selectedPhaseSplit['showPrivate'] = true; - SELF.leaderboardVisibility.state = 'Private'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } - SELF.globalService.showToast( - 'success', - 'The phase split was successfully made ' + toggleLeaderboardVisibilityState, - 5 - ); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - if (visibility === 3) { - SELF.leaderboardVisibility.state = 'Private'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-off grey-text text-darken-1'; - } else { - SELF.leaderboardVisibility.state = 'Public'; - SELF.leaderboardVisibility.icon = 'fa fa-toggle-on green-text'; - } - }, - () => this.logger.info('LEADERBOARD-VISIBILITY-UPDATE-FINISHED') - ); - } else { - SELF.globalService.showToast('error', 'The phase is private, please make the phase public'); - } - } - - /** - * Update leaderboard decimal precision value - * @param updatedLeaderboardPrecisionValue new leaderboard precision value - */ - updateLeaderboardDecimalPrecision(updatedLeaderboardPrecisionValue) { - const API_PATH = this.endpointsService.particularChallengePhaseSplitUrl(this.selectedPhaseSplit['id']); - const SELF = this; - SELF.leaderboardPrecisionValue = updatedLeaderboardPrecisionValue; - SELF.setLeaderboardPrecisionValue = '1.' + SELF.leaderboardPrecisionValue + '-' + SELF.leaderboardPrecisionValue; - const BODY = JSON.stringify({ - leaderboard_decimal_precision: SELF.leaderboardPrecisionValue, - }); - SELF.apiService.patchUrl(API_PATH, BODY).subscribe( - (data) => { - this.minusDisabled = SELF.leaderboardPrecisionValue === 0 ? true : false; - this.plusDisabled = SELF.leaderboardPrecisionValue === 20 ? true : false; - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('EDIT-LEADERBOARD-PRECISION-VALUE-FINISHED') - ); - } - - // Edit Evaluation Script and Criteria -> - - /** - * Edit evaluation criteria of the challenge - */ - editEvaluationCriteria() { - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.challenge.evaluation_details = data.evaluation_details; - this.updateView(); - SELF.globalService.showToast('success', 'The evaluation details is successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-CHALLENGE-EVALUATION-DETAILS-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Evaluation Details', - label: 'evaluation_details', - isEditorRequired: true, - editorContent: this.challenge.evaluation_details, - confirm: 'Submit', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit evaluation script of the challenge - */ - editEvaluationScript() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('evaluation_script', params['evaluation_script']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.globalService.showToast('success', 'The evaluation script is successfully updated!'); - }, - (err) => { - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-EVALUATION-SCRIPT-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Evaluation Script', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'evaluationScript', - isRequired: true, - label: 'evaluation_script', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - // Worker logs -> - - editLeaderboardSchema() { - const SELF = this; - SELF.apiCall = (params) => { - let currentLeaderboard = this.leaderboard; - this.logger.info(params); - currentLeaderboard.schema = params.schema; - const BODY = JSON.stringify(currentLeaderboard); - this.logger.info(BODY); - - SELF.apiService - .patchUrl(SELF.endpointsService.getOrUpdateLeaderboardSchemaURL(SELF.leaderboard.id), BODY) - .subscribe( - (data) => { - SELF.leaderboard = data; - SELF.globalService.showToast('success', 'Schema Succesfully Updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-LEADERBOARD-SCHEMA-FINISHED') - ); - }; - - const PARAMS = { - title: 'Edit Leaderboard Schema', - content: '', - confirm: 'Confirm', - deny: 'Cancel', - form: [ - { - isRequired: false, - label: 'schema', - placeholder: 'schema', - type: 'text', - value: JSON.stringify(this.leaderboard.schema), - }, - ], - isButtonDisabled: true, - confirmCallback: SELF.apiCall, - }; - - SELF.globalService.showModal(PARAMS); - - } - - /** - * API call to manage the worker from UI. - * Response data will be like: {action: "Success" or "Failure", error: } - */ - manageWorker(action) { - const SELF = this; - const API_PATH = SELF.endpointsService.manageWorkerURL(SELF.challenge['id'], action); - const BODY = JSON.stringify(''); - SELF.apiService.putUrl(API_PATH, BODY).subscribe( - (data) => { - if (data[action] === 'Success') { - SELF.globalService.showToast('success', 'Worker(s) ' + action + 'ed succesfully.', 5); - } else { - SELF.globalService.showToast('error', data['error'], 5); - } - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => {} - ); - } - - // Get the logs from worker if submissions are failing. - fetchWorkerLogs() { - if (this.challenge['id']) { - const API_PATH = this.endpointsService.getLogsURL(this.challenge['id']); - const SELF = this; - SELF.apiService.getUrl(API_PATH, true, false).subscribe( - (data) => { - SELF.workerLogs = []; - for (let i = 0; i < data.logs.length; i++) { - SELF.workerLogs.push(data.logs[i]); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - } - - // Get the logs from worker if submissions are failing at an interval of 5sec. - startLoadingLogs() { - const SELF = this; - SELF.pollingInterval = setInterval(function () { - SELF.fetchWorkerLogs(); - }, 5000); - } - - /** - * Component on destroyed. - */ - ngOnDestroy() { - clearInterval(this.pollingInterval); - } -} diff --git a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.html b/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.html deleted file mode 100644 index 32169fd3c2..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.html +++ /dev/null @@ -1,195 +0,0 @@ -
-
-
-
- Page is outdated, Click to update  -
-
-
-
My Submissions
-
-
- My Participated Team:  {{ participatedTeamName }} -
-
-
-
- -
-
-
- - File - - - {{ key.name }} - - - -
- -
-
-
-
- - Total Submissions Done: - - - {{ submissionCount || 0 }} - -
-
- -
-
-
-
-
No phase selected.
-
- No results found. -
-
-
-
-
- - - - - - - - - - - - -
{{ columnsHeadings[i] }} - {{ element[column] }} - {{ element[column] | date: 'medium' }} - {{ element[column] }} sec - {{ 'N/A' }} - - - Link - - {{ - element[column] | uppercase - }} - {{ 'None' }} - -
-
-
- Submission id :   - - {{ element.id }} - -
-
- Submitted at:   - - {{ element.submitted_at | date: 'medium' }} - -
-
-
-
- - Show on leaderboard - -
-
- - Baseline - -
-
- -
-
-
- - -
-
diff --git a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.scss b/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.scss deleted file mode 100644 index 9a72566836..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.scss +++ /dev/null @@ -1,203 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.ev-md-container { - padding-bottom: 0px; - - .phase-title { - margin-bottom: 20px; - } -} - -.ev-btn { - padding: 8px 20px; -} - -.show-submission-count { - background: #252833; - text-align: center; - color: white; - padding: 2px 5px 2px 5px; - border-radius: 3px 3px 3px 3px; - font-weight: $fw-light; - transition: all 0.2s ease-in-out; -} - -@include screen-small-medium { - .download-submissions { - margin-left: 20px; - margin-right: 20px; - } -} - -.add-line-height { - line-height: 51px; -} - -.result-wrn { - margin-top: 15px; - margin-bottom: 20px; -} - -.marker { - margin-right: 10px; -} - -.pad-top { - padding-top: 40px; - padding-bottom: 10px; - - .show-on-leaderboard { - color: rgb(169, 169, 169); - font-size: 14px; - font-weight: $fw-regular; - line-height: 1.25; - } -} - -.cbx-label { - margin-left: 55px; - margin-right: 55px; -} - -.cbx:checked~.cbx-label { - background: #4caf50; -} - -.collapsible-table { - overflow: auto; -} - -tr.detail-row { - height: 0; - overflow: hidden; -} - -.mat-table{ - border-collapse: separate; -} - -.element-row td { - border-bottom-width: 0; -} - -.expanded-row td { - border-bottom-width: 1px; -} - -.cell-outside { - padding: 8px; - color:rgba(0, 0, 0, 0.87); - text-align: center; -} - -tr.element-row:not(.expanded-row):hover { - cursor: pointer; - background: $grad-light-black; -} - -tr.element-row.expanded-row { - cursor: pointer; -} - -tr.element-row:not(.expanded-row):active { - background: #efefef; - border-bottom-width: 0; -} - -.expanded-row { - margin-top: 24px; - margin-bottom: 14px; -} - -.elements { - overflow: hidden; - display: flex; - flex-direction: row; -} - -.elements-margin { - margin-left: 20px; -} - -.elements-detail { - width: 38%; - overflow: hidden; - display: flex; - flex-direction: column; - border-right-style: solid; - border-right-width: 1px; - border-right-color: lightgrey; - margin-left: 30px; -} - -.elements-action { - width: 30%; - overflow: hidden; - display: flex; - flex-direction: column; - margin-left: 30px; -} - -.elements-status { - width: 30%; - overflow: hidden; - display: flex; - flex-direction: column; - border-right-style: solid; - border-right-width: 1px; - border-right-color: lightgrey; - margin-left: 30px; -} - -.element { - margin-bottom: 10px; -} - -.element-description { - margin-left: 10px; -} - -.element-description-attribution { - opacity: 0.5; -} - -@include screen-small { - .elements { - flex-direction: column; - } - - .elements-action { - margin-left: 0; - padding-left: 0; - margin-top: 20px; - } - - .elements-detail { - border-right-style: none; - padding-right: 0; - border-bottom-style: solid; - border-bottom-color: lightgrey; - border-bottom-width: 1px; - padding-bottom: 20px; - } - - .elements-status { - padding-left: 0; - border-right-style:none; - border-bottom-style: solid; - border-bottom-color: lightgrey; - border-bottom-width: 1px; - padding-bottom: 20px; - margin-top: 20px; - } - - .element { - display: flex; - flex-direction: column; - } - - .element-description { - margin-left: 0; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.spec.ts b/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.spec.ts deleted file mode 100644 index f1d700fb67..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.spec.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengesubmissionsComponent } from './challengesubmissions.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { WindowService } from '../../../services/window.service'; -import { AuthService } from '../../../services/auth.service'; -import { HttpClientModule } from '@angular/common/http'; -import { ForceloginComponent } from '../../../components/utility/forcelogin/forcelogin.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { MatTableModule } from '@angular/material'; - -describe('ChallengesubmissionsComponent', () => { - let component: ChallengesubmissionsComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengesubmissionsComponent], - providers: [ChallengeService, GlobalService, AuthService, ApiService, WindowService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule, MatTableModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengesubmissionsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.ts b/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.ts deleted file mode 100644 index 1e96af5963..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmissions/challengesubmissions.component.ts +++ /dev/null @@ -1,659 +0,0 @@ -import { Component, OnInit, QueryList, ViewChildren, Input, AfterViewInit } from '@angular/core'; -import { Router, ActivatedRoute } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { WindowService } from '../../../services/window.service'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -// import component -import { SelectphaseComponent } from '../../utility/selectphase/selectphase.component'; -import { InputComponent } from '../../utility/input/input.component'; -import { environment } from '../../../../environments/environment'; - -import { animate, state, style, transition, trigger } from '@angular/animations'; -/** - * Component Class - */ -@Component({ - selector: 'app-challengesubmissions', - templateUrl: './challengesubmissions.component.html', - styleUrls: ['./challengesubmissions.component.scss'], - animations: [ - trigger('detailExpand', [ - state('collapsed', style({ height: '0px', minHeight: '0' })), - state('expanded', style({ height: '*' })), - transition('expanded <=> collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')), - ]), - ], -}) -export class ChallengesubmissionsComponent implements OnInit, AfterViewInit { - /** - * Phase select card components - */ - @ViewChildren('phaseselect') - components: QueryList; - - /** - * Input parameters object - */ - @Input() params: any; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Has view been initialized - */ - viewInit = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Router's public instance - */ - routerPublic: any; - - /** - * User participated - */ - isParticipated: any; - - /** - * Participated team name - */ - participatedTeamName = ''; - - /** - * Is user a challenge host - */ - isChallengeHost = false; - - /** - * Submissions list - */ - submissions = []; - - /** - * Total submissions - */ - submissionCount = 0; - - /** - * Challenge phase list - */ - phases = []; - - /** - * Challenge phases filtered - */ - filteredPhases = []; - - /** - * Currently selected phase's id - */ - selectedPhaseId: any; - - /** - * Currently selected phase - */ - selectedPhase: any = null; - - /** - * Is phase selected - */ - isPhaseSelected = false; - - /** - * Highlighted submission - */ - submissionHighlighted: any = null; - - /** - * Download file types - */ - fileTypes = [{ name: 'csv' }, { name: 'tsv' }, { name: 'gz' }]; - - /** - * Selected file type - */ - fileSelected = ''; - - /** - * Phase selection type (radio button or select box) - */ - phaseSelectionType = 'selectBox'; - - /** - * Select box list type - */ - phaseSelectionListType = 'phase'; - - /** - * @param showPagination Is pagination - * @param paginationMessage Pagination message - * @param isPrev Previous page state - * @param isNext Next page state - * @param currentPage Current Page number - */ - paginationDetails: any = {}; - - /** - * To call the API inside modal for editing the submission - */ - apiCall: any; - - columnsToDisplay = [ - 's_no', - 'status', - 'execution_time', - 'input_file', - 'submission_result_file', - 'stdout_file', - 'stderr_file', - ]; - columnsHeadings = ['S.No.', 'Status', 'Execution Time', 'Submission File', 'Result File', 'Stdout File', 'Stderr File']; - - expandedElement: null; - - /** - * Modal form items - */ - @ViewChildren('formFilter') - formComponents: QueryList; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param challengeService ChallengeService Injection. - * @param globalService GlobalService Injection. - * @param apiService Router Injection. - * @param windowService WindowService Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private authService: AuthService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private windowService: WindowService, - private endpointsService: EndpointsService, - private logger: NGXLogger - ) {} - - /** - * Component after view initialized. - */ - ngAfterViewInit() { - this.viewInit = true; - } - - /** - * Component on initialized. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.fetchParticipated_team(this.challenge['id']); - }); - this.challengeService.currentParticipationStatus.subscribe((status) => { - this.isParticipated = status; - if (!status) { - this.globalService.storeData(this.globalService.redirectStorageKey, { path: this.routerPublic.url }); - let redirectToPath = ''; - if (this.router.url.split('/').length === 4) { - redirectToPath = '../participate'; - } else if (this.router.url.split('/').length === 5) { - redirectToPath = '../../participate'; - } else if (this.router.url.split('/').length === 6) { - redirectToPath = '../../../participate'; - } - this.router.navigate([redirectToPath], { relativeTo: this.route }); - } - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - for (let i = 0; i < this.phases.length; i++) { - if (this.phases[i].is_public === false) { - this.phases[i].showPrivate = true; - } else { - this.phases[i].showPrivate = false; - } - } - this.filteredPhases = this.phases; - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - /** - * Called when a phase is selected (from child component) - */ - phaseSelected() { - const SELF = this; - return (phase) => { - SELF.selectedPhase = phase; - SELF.isPhaseSelected = true; - SELF.submissionCount = 0; - - // Handle incorrect state change. In some cases phase selected here is not correct one - let isValidPhase = false; - for (let phaseIdx in this.phases) { - if (this.phases[phaseIdx]['id'] == phase['id']) { - isValidPhase = true; - break; - } - } - if (SELF.challenge['id'] && phase['id'] && isValidPhase) { - SELF.fetchSubmissions(SELF.challenge['id'], phase['id']); - } - }; - } - - /** - * Fetch submissions from API. - * @param challenge challenge id - * @param phase phase id - */ - fetchSubmissions(challenge, phase) { - const SELF = this; - let API_PATH; - API_PATH = SELF.endpointsService.challengeSubmissionURL(challenge, phase); - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.submissionCount = data['count']; - SELF.submissions = data['results']; - let index = 0; - SELF.submissions.forEach((submission) => { - submission['s_no'] = index + 1; - index += 1; - }); - SELF.paginationDetails.next = data.next; - SELF.paginationDetails.previous = data.previous; - SELF.paginationDetails.totalPage = Math.ceil(data.count / 100); - - if (data.count === 0) { - SELF.paginationDetails.showPagination = false; - SELF.paginationDetails.paginationMessage = 'No results found'; - } else { - SELF.paginationDetails.showPagination = true; - SELF.paginationDetails.paginationMessage = ''; - } - - // condition for pagination - if (data.next === null) { - SELF.paginationDetails.isNext = 'disabled'; - SELF.paginationDetails.currentPage = 1; - } else { - SELF.paginationDetails.isNext = ''; - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=')[1] - 1); - } - if (data.previous === null) { - SELF.paginationDetails.isPrev = 'disabled'; - } else { - SELF.paginationDetails.isPrev = ''; - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Fetched submissions', challenge, phase); - } - ); - } - - /** - * Download Submission csv. - */ - downloadSubmission() { - if (this.challenge['id'] && this.selectedPhase && this.fileSelected) { - const API_PATH = this.endpointsService.challengeSubmissionDownloadURL( - this.challenge['id'], - this.selectedPhase['id'], - this.fileSelected - ); - const SELF = this; - this.apiService.getUrl(API_PATH, false).subscribe( - (data) => { - SELF.windowService.downloadFile(data, 'all_submissions.csv'); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Download complete.', this.challenge['id'], this.selectedPhase['id']); - } - ); - } else { - if (this.selectedPhase === null) { - this.globalService.showToast('error', 'Please select a challenge phase!'); - } else if (this.fileSelected === '') { - this.globalService.showToast('error', 'The file type requested is not valid!'); - } - } - } - - /** - * load data with pagination - */ - loadPaginationData = function (url) { - if (url !== null) { - const SELF = this; - const API_PATH = url.split(environment.api_endpoint)[1]; - SELF.apiService.getUrl(API_PATH, true).subscribe( - (data) => { - SELF.submissions = data['results']; - SELF.paginationDetails.next = data.next; - SELF.paginationDetails.previous = data.previous; - - // condition for pagination - if (data.next === null) { - SELF.paginationDetails.isNext = 'disabled'; - SELF.paginationDetails.currentPage = Math.ceil(data.count / 100); - } else { - SELF.paginationDetails.isNext = ''; - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=')[1] - 1); - } - - let index = (SELF.paginationDetails.currentPage - 1) * 100; - SELF.submissions.forEach((submission) => { - submission['s_no'] = index + 1; - index += 1; - }); - - if (data.previous === null) { - SELF.paginationDetails.isPrev = 'disabled'; - } else { - SELF.paginationDetails.isPrev = ''; - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Fetched pagination submissions'); - } - ); - } - }; - - /** - * Update submission's leaderboard visibility. - * @param id Submission id - */ - updateSubmissionVisibility(id) { - for (let i = 0; i < this.submissions.length; i++) { - if (this.submissions[i]['id'] === id) { - this.submissions[i]['is_public'] = !this.submissions[i]['is_public']; - break; - } - } - } - - /** - * Change Submission's leaderboard visibility API. - * @param id Submission id - * @param is_public visibility boolean flag - */ - changeSubmissionVisibility(id, is_public) { - is_public = !is_public; - if (this.challenge['id'] && this.selectedPhase && this.selectedPhase['id'] && id) { - const SELF = this; - const API_PATH = this.endpointsService.challengeSubmissionUpdateURL( - this.challenge['id'], - this.selectedPhase['id'], - id - ); - const BODY = JSON.stringify({ is_public: is_public }); - this.apiService.patchUrl(API_PATH, BODY).subscribe( - () => { - this.updateSubmissionVisibility(id); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Updated submission visibility', id); - } - ); - } - } - - /** - * Update baseline status on my submissions tab - * @param submissionId Submission Id - */ - updateBaselineStatus(submissionId) { - for (let i = 0; i < this.submissions.length; i++) { - if (this.submissions[i]['id'] === submissionId) { - this.submissions[i]['is_baseline'] = !this.submissions[i]['is_baseline']; - break; - } - } - } - - /** - * Change baseline status API - * @param submissionId Submission Id - * @param isBaseline baseline boolean flag - */ - changeBaselineStatus(submissionId, isBaseline) { - isBaseline = !isBaseline; - this.updateBaselineStatus(submissionId); - if (this.challenge['id'] && this.selectedPhase && this.selectedPhase['id'] && submissionId) { - const API_PATH = this.endpointsService.challengeSubmissionUpdateURL( - this.challenge['id'], - this.selectedPhase['id'], - submissionId - ); - const SELF = this; - const BODY = JSON.stringify({ - is_baseline: isBaseline, - }); - SELF.apiService.patchUrl(API_PATH, BODY).subscribe( - () => {}, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Updated submission visibility', submissionId); - } - ); - } - } - - /** - * Display Edit Submission Modal. - * @param submission Submission being edited - */ - editSubmission(submission) { - const SELF = this; - SELF.apiCall = (params) => { - let BODY = JSON.parse(JSON.stringify(params)); - if (this.selectedPhase.submission_meta_attributes !== null && this.selectedPhase.submission_meta_attributes !== undefined) { - BODY["submission_metadata"] = [] - for (let idx=0; idx < this.selectedPhase.submission_meta_attributes.length; idx++) { - let metaAttribute = this.selectedPhase.submission_meta_attributes[idx]; - metaAttribute["value"] = BODY[metaAttribute["name"].toLowerCase()]; - BODY["submission_metadata"].push(metaAttribute); - } - } - SELF.apiService - .patchUrl( - SELF.endpointsService.challengeSubmissionUpdateURL( - SELF.challenge.id, - submission.challenge_phase, - submission.id - ), - BODY - ) - .subscribe( - () => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Data updated successfully', 5); - SELF.fetchSubmissions(SELF.challenge.id, SELF.selectedPhase.id); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('SUBMISSION-UPDATE-FINISHED') - ); - }; - const PARAMS = { - title: 'Update Submission Details', - content: '', - isButtonDisabled: true, - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - isRequired: false, - label: 'method_name', - placeholder: 'Method Name', - type: 'text', - value: submission['method_name'], - icon: 'fa fa-pencil', - }, - { - isRequired: false, - label: 'method_description', - placeholder: 'Method Description', - type: 'textarea', - value: submission['method_description'], - icon: 'fa fa-pencil', - }, - { - isRequired: false, - label: 'project_url', - placeholder: 'Project Url', - type: 'url', - value: submission['project_url'], - icon: 'fa fa-pencil', - }, - { - isRequired: false, - label: 'publication_url', - placeholder: 'Publication Url', - type: 'url', - value: submission['publication_url'], - icon: 'fa fa-pencil', - }, - ], - confirmCallback: SELF.apiCall, - }; - if (this.selectedPhase.submission_meta_attributes !== null && this.selectedPhase.submission_meta_attributes !== undefined) { - let attributeDict = {}; - for (let i=0; i < this.selectedPhase.submission_meta_attributes.length; i++) { - let metaAttribute = this.selectedPhase.submission_meta_attributes[i]; - attributeDict[metaAttribute["name"]] = metaAttribute; - } - if (submission.submission_metadata !== undefined && submission.submission_metadata !== null) { - for (let idx=0; idx < submission.submission_metadata.length; idx++) { - let metaAttribute = submission.submission_metadata[idx]; - let data = { - isRequired: metaAttribute["required"] == true, - label: metaAttribute["name"], - placeholder: metaAttribute["description"], - type: metaAttribute["type"], - value: metaAttribute["value"], - icon: 'fa fa-pencil', - } - if (metaAttribute["type"] !== "text") { - data["attributeOptions"] = attributeDict[metaAttribute["name"]]["options"]; - } - //TODO: add support for radio button fields - if (metaAttribute["type"] !== "radio" && metaAttribute["type"] !== "boolean") { - PARAMS["form"].push(data); - } - } - } - } - SELF.globalService.showModal(PARAMS); - } - - /** - * Display Cancel Submission Modal. - * @param submission Submission being cancelled - */ - cancelSubmission(submission) { - const SELF = this; - if (submission.status != "submitted") { - SELF.globalService.showToast('error', 'Only unproccessed submissions can be cancelled', 5); - return; - } - SELF.apiCall = () => { - const BODY = JSON.stringify({ - "status": "cancelled" - }); - SELF.apiService - .patchUrl( - SELF.endpointsService.updateSubmissionMetaURL( - SELF.challenge.id, - submission.id - ), - BODY - ) - .subscribe( - () => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Submission status updated successfully', 5); - SELF.fetchSubmissions(SELF.challenge.id, SELF.selectedPhase.id); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('SUBMISSION-CANCELLED') - ); - }; - const PARAMS = { - title: 'Are you sure you want to cancel submission?', - content: '', - isButtonDisabled: true, - confirm: 'Submit', - deny: 'Cancel', - form: [], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Get participated team name API - * @param challengeId Challenge Id - */ - fetchParticipated_team(challengeId) { - const SELF = this; - if (challengeId !== undefined) { - const API_PATH = SELF.endpointsService.getParticipatedTeamNameURL(challengeId); - this.apiService.getUrl(API_PATH, true, false).subscribe( - (data) => { - SELF.participatedTeamName = data['team_name']; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - } -} diff --git a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.html b/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.html deleted file mode 100644 index 037f0c8594..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.html +++ /dev/null @@ -1,518 +0,0 @@ -
-
-

Sorry, the challenge is not active.

-
-
-
Submission Guidelines
-
-
-

- Note: Your submissions won't be visible on leaderboard for - Public Challenge Phases since you are a challenge host for this - challenge.This feature is only for your testing purposes. -

-
-
-
-
-
-
-
-
-
- - Submission instructions for docker image using evalai-cli - -
    -
  1. - Install evalai-cli
    - $ pip install evalai{{ cliVersion }} - -
  2. -
  3. - Add your EvalAI account token to evalai-cli
    - $ evalai set_token {{ authToken }} - -
  4. -
  5. - Push docker image to EvalAI docker registry
    - $ evalai push <image>:<tag> --phase <phase_name> - -
  6. -
  7. - For more commands, please refer to - evalai-cli documentation. -
  8. -
-
-
-
- - -
- Submission limits

- - Team name: - {{ phaseRemainingSubmissions.participant_team }} - - - - - - - - - - - - - - - - - - -
Phase detailsRemaining submissionsSubmission command
- {{ key.name }} -
- Start date: {{ key.start_date | date: 'medium' }} -
- End date: {{ key.end_date | date: 'medium' }} -
- - Today: - - {{ key.limits.remaining_submissions_today_count }}
- - This month: - - {{ key.limits.remaining_submissions_this_month_count }}
- - Total: - - {{ key.limits.remaining_submissions_count }} -
- {{ key.limits.message }}
- Next submission will be available in
-
- {{ phaseRemainingSubmissionsCountdown[key.id].days }} Days, {{ phaseRemainingSubmissionsCountdown[key.id].hours }} hours : - {{ phaseRemainingSubmissionsCountdown[key.id].minutes }} - minutes : - {{ phaseRemainingSubmissionsCountdown[key.id].seconds }} seconds -
-
- {{ key.limits.message }}
- - {{ key.limits.maxExceededMessage }} - -
- $ evalai push <image>:<tag> --phase {{ key.slug }} - -
-
- - -
-
-
-
-
Make Submission
-
-
-
-
-
-
-
    -

    Select phase:

    - -
    -
    -

    Submission Options:

    - - - - - - - - -
    -
    -
-
-
-
-
-
- Today's remaining Submissions: - - - {{ selectedPhaseSubmissions.remainingSubmissions.remaining_submissions_today_count }} - - -
-
- - Monthly remaining submissions: - - - - {{ selectedPhaseSubmissions.remainingSubmissions.remaining_submissions_this_month_count }} - - -
-
- - Total remaining submissions: - - - - {{ selectedPhaseSubmissions.remainingSubmissions.remaining_submissions_count }} - - -
-
-
- -
-
-

Submission instructions

-
    -
  1. Install evalai-cli
    - $ pip install evalai{{ cliVersion }} - -
  2. -
  3. Add your EvalAI account token to evalai-cli
    - $ evalai set_token {{authToken}} - -
  4. -
  5. Make Submission
    - $ evalai challenge {{challenge.id}} phase {{selectedPhase.id}} submit --file <submission_file_path> --large - -
  6. -
  7. -
    Use   --private  or  --public   flag in the submission - command to make the submission private or public respectively.
    -
    -
  8. -
  9. For more commands, please refer to evalai-cli documentation. -
  10. -
-
-
- -
-
-
-
- -
{{ inputErrorMessage }}
-
-
- -
-
-
-
-
-

Select submission visibility:

- - -
- - -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
-
-
-
-
- * -
-
- - -
- - - -
-
-
- -
-
-
-
-
-
- * -
-
-
- - - -
-
-
-
-
-
-
-
- * -
-
- - -
- -
-
-
-
-
-
-
-
- {{ submissionError }}

-
- -
- -
-
-
- - - {{ selectedPhaseSubmissions.maxExceededMessage }} - - -
-
-
-
-
-
- - Message: - - {{ selectedPhaseSubmissions.clockMessage.message }} -
-
- Next set of submissions will be available after: -
-
- {{ days }} Days, {{ hours }} hours : {{ minutes }} minutes : - {{ seconds }} seconds -
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.scss b/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.scss deleted file mode 100644 index 7dcdf1f554..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.scss +++ /dev/null @@ -1,181 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.ev-submission-card-body { - padding: 10px 30px; -} - -.ev-challenge-view { - margin-top: 0px; - padding-top: 30px; - margin-bottom: 20px; -} - -.row .row-lr-margin { - margin-bottom: 20px; -} - -.guidelines-text-margin { - margin-top: 14px; - margin-bottom: 14px; -} - -.remaining-submission-clock { - padding-top: 55px; -} - -table, -th, -td { - border: none; - border-collapse: collapse; - border-spacing: 0; -} - -table { - width: 100%; -} - -table.centered { - text-align: center; -} - -thead { - border-bottom: 1px solid #d0d0d0; -} - -tr { - border-bottom: 1px solid #d0d0d0; -} - -td, -th { - padding: 15px 5px; - display: table-cell; - vertical-align: middle; - border-radius: 2px; -} - -.exist-team-card { - .col-lr-pad { - padding-left: 16px; - padding-right: 36px; - } - ul { - padding-left: 60px; - } -} - -.remaining-submission-clock { - padding-top: 55px; -} - -.meta-label { - margin-right: 10px; - color: #adb4d0; - font-weight: $fw-semibold; -} - -:host ::ng-deep .mat-radio-container{ - height: 16px; - width: 16px; -} - -:host ::ng-deep .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle { - height: 16px; - width: 16px; - border-color: rgba(0,0,0,0.54); -} - -:host ::ng-deep .mat-radio-outer-circle { - height: 16px; - width: 16px; - border-color: rgba(0,0,0,0.54); -} - -:host ::ng-deep .mat-radio-inner-circle { - height: 16px; - width: 16px; -} - -:host ::ng-deep .mat-radio-button.mat-accent .mat-radio-inner-circle { - height: 16px; - width: 16px; - border-color: rgba(0,0,0,0.54); - background-color: rgba(0,0,0,0.54); -} - -.input-message { - position: relative; - top: 2px; - left: 0; - text-align: left; - margin-top: 10px; - font-size: 12px; - font-weight: $fw-light; - color: $yellow; - &.hidden { - opacity: 0; - } -} - -@include screen-small { - .remaining-submission-clock { - padding-top: 0px; - } -} - -#Submission_option_hidden { - display: none; -} - -#form_hidden { - display: none; -} - -#uploadbutton { - display: none; -} - -#url_field { - display: none; -} - -#submission_option_style { - margin-left: 1em; -} - -.numbered-list { - li { - list-style-type: decimal !important; - } -} - -.center-content { - display: flex; - flex-direction: row; - align-items: center; -} - -.cli-card-container { - margin: 14.5px 0px; - padding: 0px 0px 0px 70px; -} - -.mat-label-radio { - margin-top: 1.0em; - position: relative; - color: $light-gray; - font-size: 0.8em; - font-weight: 400; -} - -.element { - margin-bottom: 10px; - border-color: #adb4d0; - color: #adb4d0; -} - -:host ::ng-deep .mat-checkbox-layout { - margin-bottom: 5px; -} diff --git a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.spec.ts b/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.spec.ts deleted file mode 100644 index 47fa620491..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.spec.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengesubmitComponent } from './challengesubmit.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { Router, Routes } from '@angular/router'; -import { ChallengeparticipateComponent } from '../challengeparticipate/challengeparticipate.component'; -import { NotFoundComponent } from '../../not-found/not-found.component'; - -const routes: Routes = [ - { path: 'challenge/:id/participate', component: ChallengeparticipateComponent }, - { path: 'challenge/:id/submit', component: ChallengesubmitComponent }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -describe('ChallengesubmitComponent', () => { - let router: Router; - let component: ChallengesubmitComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengesubmitComponent, ChallengeparticipateComponent, NotFoundComponent], - providers: [ChallengeService, GlobalService, AuthService, ApiService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule.withRoutes(routes)], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(ChallengesubmitComponent); - component = fixture.componentInstance; - }); - - it('should create', () => { - fixture.ngZone.run(() => { - router.navigate(['/challenge/0/submit']).then(() => { - fixture.detectChanges(); - expect(component).toBeTruthy(); - }); - }); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.ts b/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.ts deleted file mode 100644 index aefdd5ba8b..0000000000 --- a/frontend_v2/src/app/components/challenge/challengesubmit/challengesubmit.component.ts +++ /dev/null @@ -1,767 +0,0 @@ -import { Component, OnInit, QueryList, ViewChildren } from '@angular/core'; -import { Router, ActivatedRoute } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengesubmit', - templateUrl: './challengesubmit.component.html', - styleUrls: ['./challengesubmit.component.scss'], -}) -export class ChallengesubmitComponent implements OnInit { - /** - * Input error Message - */ - inputErrorMessage = ''; - - /** - * Is input valid - */ - validFileUrl = false; - - /** - * Is file url input - */ - isSubmissionUsingUrl: any; - - /** - * Is submission through CLI - */ - isSubmissionUsingCli: any; - - /** - * If phase has been selected - */ - isPhaseSelected = false; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Is submission submitted - */ - isSubmitted = false; - - /** - * Is submission submitted - */ - isPublicSubmission = true; - - /** - * Is submission allowed by host - */ - isLeaderboardPublic = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Is challenge host - */ - isChallengeHost: any; - - /** - * Router public instance - */ - routerPublic: any; - - /** - * Is user a participant - */ - isParticipated: any; - - /** - * Is challenge currently active - */ - isActive: any; - - /** - * Submission error - */ - submissionError = ''; - - /** - * Guidelines text - */ - submissionGuidelines = ''; - - /** - * Stores the attributes format and phase ID for all the phases of a challenge. - */ - submissionMetaAttributes = []; - - /** - * Stores the attributes while making a submission for a selected phase. - */ - metaAttributesforCurrentSubmission = null; - - /** - * Stores the default meta attributes for all the phases of a challenge. - */ - defaultMetaAttributes = []; - - /** - * Stores the default meta attributes for a selected phase. - */ - defaultMetaAttributesforCurrentPhase = null; - /** - * Form fields name - */ - submitForm = 'formsubmit'; - - /** - * Challenge phases list - */ - phases = []; - - /** - * Filtered challenge phases - */ - filteredPhases = []; - - /** - * Selected phase object - */ - selectedPhase = null; - - /** - * Cli version - */ - cliVersion = ''; - - /** - * Auth token - */ - authToken = ''; - - /** - * Phase selection type (radio button or select box) - */ - phaseSelectionType = 'radioButton'; - - /** - * Select box list type - */ - phaseSelectionListType = 'phase'; - - /** - * Api call inside the modal to edit the submission guidelines - */ - apiCall: any; - - /** - * Selected phase submission conditions - * @param showSubmissionDetails show the selected phase submission details - * @param showClock when max submissions per day exceeded - * @param maxExceeded max submissions exceeded - * @param remainingSubmissions remaining submissions details - * @param maxExceededMessage message for max submissions exceeded - * @param clockMessage message for max submissions per day exceeded - */ - selectedPhaseSubmissions = { - showSubmissionDetails: false, - showClock: false, - maxExceeded: false, - remainingSubmissions: {}, - maxExceededMessage: '', - clockMessage: '', - }; - - /** - * Phase remaining submissions for docker based challenge - */ - phaseRemainingSubmissions: any = {}; - - /** - * Flog for phase if submissions max exceeded, details, clock - */ - phaseRemainingSubmissionsFlags = {}; - - /** - * Phase remaining submissions countdown (days, hours, minutes, seconds) - */ - phaseRemainingSubmissionsCountdown = {}; - - /** - * Clock variables - * @param days number of days remaining - * @param hours number of hours remaining - * @param minutes number of minutes remaining - * @param seconds number of seconds remaining - * @param remainingTime remaining time (in seconds) for submission of a challenge phase - */ - days: number; - hours: number; - minutes: number; - seconds: number; - remainingTime: number; - - /** - * Is clock initialised - */ - isClockStarted: boolean; - - /** - * Set interval timer - */ - timer: any; - - /** - * Component Class - */ - @ViewChildren('formsubmit') - components: QueryList; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param challengeService ChallengeService Injection. - * @param globalService GlobalService Injection. - * @param apiService Router Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private authService: AuthService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private endpointsService: EndpointsService, - private logger: NGXLogger - ) {} - - /** - * Component on intialization. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - this.isActive = this.challenge['is_active']; - this.submissionGuidelines = this.challenge['submission_guidelines']; - if (this.challenge.cli_version !== null) { - this.cliVersion = this.challenge.cli_version; - } - }); - this.challengeService.currentParticipationStatus.subscribe((status) => { - this.isParticipated = status; - if (!status) { - this.router.navigate(['../participate'], { relativeTo: this.route }); - } - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - this.filteredPhases = this.phases.filter((phase) => phase['is_active'] === true); - for (let j = 0; j < this.phases.length; j++) { - if (phases[j].is_public === false) { - this.phases[j].showPrivate = true; - } else { - this.phases[j].showPrivate = false; - } - } - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - - if (this.challenge.is_docker_based) { - this.displayDockerSubmissionInstructions(this.challenge.id, this.isParticipated); - } - this.authToken = this.globalService.getData('refreshJWT'); - } - - /** - * @param SELF current context - * @param eachPhase particular phase of a challenge - */ - countDownTimer(SELF, eachPhase) { - if (!SELF.isClockStarted) { - SELF.remainingTime = parseInt(eachPhase.limits.remaining_time, 10); - } - SELF.days = Math.floor(SELF.remainingTime / 24 / 60 / 60); - const hoursLeft = Math.floor(SELF.remainingTime - SELF.days * 86400); - SELF.hours = Math.floor(hoursLeft / 3600); - const minutesLeft = Math.floor(hoursLeft - SELF.hours * 3600); - SELF.minutes = Math.floor(minutesLeft / 60); - SELF.seconds = Math.floor(SELF.remainingTime % 60); - - if (SELF.days < 10) { - SELF.days = '0' + SELF.days; - } - if (SELF.hours < 10) { - SELF.hours = '0' + SELF.hours; - } - if (SELF.minutes < 10) { - SELF.minutes = '0' + SELF.minutes; - } - if (SELF.seconds < 10) { - SELF.seconds = '0' + SELF.seconds; - } - - // Used when the challenge is docker based - SELF.phaseRemainingSubmissionsCountdown[eachPhase.id] = { - days: SELF.days, - hours: SELF.hours, - minutes: SELF.minutes, - seconds: SELF.seconds, - }; - if (SELF.remainingTime === 0) { - SELF.selectedPhaseSubmissions.showSubmissionDetails = true; - SELF.phaseRemainingSubmissionsFlags[eachPhase.id] = 'showSubmissionDetails'; - } else { - SELF.remainingTime--; - } - SELF.isClockStarted = true; - } - - /** - * @param challenge challenge id - * @param isParticipated Is user a participant - */ - displayDockerSubmissionInstructions(challenge, isParticipated) { - if (isParticipated) { - const API_PATH = this.endpointsService.challengeSubmissionsRemainingURL(challenge); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.phaseRemainingSubmissions = data; - const details = SELF.phaseRemainingSubmissions.phases; - for (let i = 0; i < details.length; i++) { - if (details[i].limits.submission_limit_exceeded === true) { - SELF.phaseRemainingSubmissionsFlags[details[i].id] = 'maxExceeded'; - } else if (details[i].limits.remaining_submissions_today_count > 0) { - SELF.phaseRemainingSubmissionsFlags[details[i].id] = 'showSubmissionDetails'; - } else { - const eachPhase = details[i]; - SELF.phaseRemainingSubmissionsFlags[details[i].id] = 'showClock'; - setInterval(function () { - SELF.countDownTimer(SELF, eachPhase); - }, 1000); - SELF.countDownTimer(SELF, eachPhase); - } - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => this.logger.info('Remaining submissions fetched for docker based challenge') - ); - } - } - - /** - * Fetch remaining submissions for a challenge phase. - * @param challenge challenge id - * @param phase phase id - */ - fetchRemainingSubmissions(challenge, phase) { - const API_PATH = this.endpointsService.challengeSubmissionsRemainingURL(challenge); - const SELF = this; - clearInterval(SELF.timer); - SELF.isClockStarted = false; - SELF.selectedPhaseSubmissions.showClock = false; - SELF.selectedPhaseSubmissions.showSubmissionDetails = false; - SELF.selectedPhaseSubmissions.maxExceeded = false; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - let phaseDetails, eachPhase; - for (let i = 0; i < data.phases.length; i++) { - if (data.phases[i].id === phase) { - eachPhase = data.phases[i]; - phaseDetails = data.phases[i].limits; - break; - } - } - if (phaseDetails == undefined) { - return; - } - if (phaseDetails.submission_limit_exceeded) { - this.selectedPhaseSubmissions.maxExceeded = true; - this.selectedPhaseSubmissions.maxExceededMessage = phaseDetails.message; - } else if (phaseDetails.remaining_submissions_today_count > 0) { - this.selectedPhaseSubmissions.remainingSubmissions = phaseDetails; - this.selectedPhaseSubmissions.showSubmissionDetails = true; - } else { - this.selectedPhaseSubmissions.showClock = true; - this.selectedPhaseSubmissions.clockMessage = phaseDetails; - SELF.timer = setInterval(function () { - SELF.countDownTimer(SELF, eachPhase); - }, 1000); - SELF.countDownTimer(SELF, eachPhase); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Remaining submissions fetched for challenge-phase', challenge, phase); - } - ); - } - - /** - * Store Meta Attributes for a particular challenge phase. - */ - storeMetadata(data) { - for (let i = 0; i < data.count; i++) { - if (data.results[i].submission_meta_attributes) { - const attributes = data.results[i].submission_meta_attributes; - attributes.forEach(function (attribute) { - if (attribute['type'] === 'checkbox') { - attribute['values'] = []; - } else { - attribute['value'] = null; - } - }); - const detail = { phaseId: data.results[i].id, attributes: attributes }; - this.submissionMetaAttributes.push(detail); - } else { - const detail = { phaseId: data.results[i].id, attributes: null }; - this.submissionMetaAttributes.push(detail); - } - if (data.results[i].default_submission_meta_attributes) { - const attributes = data.results[i].default_submission_meta_attributes; - var attributeDict = {}; - attributes.forEach(function (attribute) { - attributeDict[attribute["name"]] = attribute; - }); - const detail = { phaseId: data.results[i].id, attributes: attributeDict }; - this.defaultMetaAttributes.push(detail); - } else { - const detail = { phaseId: data.results[i].id, attributes: {} }; - this.defaultMetaAttributes.push(detail); - } - } - } - - /** - * Fetch Meta Attributes for a particular challenge phase. - * @param challenge challenge id - * @param phase phase id - */ - getMetaDataDetails(challenge, phaseId) { - const API_PATH = this.endpointsService.challengePhaseURL(challenge); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - SELF.storeMetadata(data); - // Loads attributes of a phase into this.submissionMetaAttributes - this.metaAttributesforCurrentSubmission = this.submissionMetaAttributes.find(function (element) { - return element['phaseId'] === phaseId; - }).attributes; - this.defaultMetaAttributesforCurrentPhase = this.defaultMetaAttributes.find(function (element) { - return element['phaseId'] === phaseId; - }).attributes; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - /** - * Get current phase default meta attributes dict - */ - isAttributeVisible(attributeName) { - if (this.defaultMetaAttributesforCurrentPhase != null && this.defaultMetaAttributes != undefined) { - if (this.defaultMetaAttributesforCurrentPhase[attributeName] != null && this.defaultMetaAttributesforCurrentPhase[attributeName] != undefined) { - return this.defaultMetaAttributesforCurrentPhase[attributeName]['is_visible']; - } - } - // All attributes are visible by default - return true; - } - - - /** - * Clear the data of metaAttributesforCurrentSubmission - */ - clearMetaAttributeValues() { - if (this.metaAttributesforCurrentSubmission != null) { - this.metaAttributesforCurrentSubmission.forEach(function (attribute) { - if (attribute.type === 'checkbox') { - attribute.values = []; - } else { - attribute.value = null; - } - }); - } - } - - /** - * Called when a phase is selected (from child components) - */ - phaseSelected() { - const SELF = this; - return (phase) => { - SELF.selectedPhase = phase; - SELF.isPhaseSelected = true; - SELF.isLeaderboardPublic = phase['leaderboard_public']; - if (SELF.challenge['id'] && phase['id']) { - SELF.getMetaDataDetails(SELF.challenge['id'], phase['id']); - SELF.fetchRemainingSubmissions(SELF.challenge['id'], phase['id']); - SELF.clearMetaAttributeValues(); - SELF.submissionError = ''; - if (SELF.components) { - SELF.components['_results'].forEach((element) => { - element.value = ''; - element.message = ''; - }); - } - } - }; - } - - /** - * Form validate function - */ - formValidate() { - if (this.selectedPhaseSubmissions.remainingSubmissions['remaining_submissions_today_count']) { - this.globalService.formValidate(this.components, this.formSubmit, this); - if (this.isSubmitted) { - this.router.navigate(['../my-submissions'], { relativeTo: this.route }); - } - } else { - this.globalService.showToast('info', "You have exhausted today's submission limit"); - } - } - - /** - * Form submit function - * @param self context value of this - */ - formSubmit(self) { - self.submissionError = ''; - let metaValue = true; - const submissionFile = self.globalService.formItemForLabel(self.components, 'input_file').fileValue; - const submissionProjectUrl = self.globalService.formValueForLabel(self.components, 'project_url'); - const submissionPublicationUrl = self.globalService.formValueForLabel(self.components, 'publication_url'); - const submissionFileUrl = self.globalService.formItemForLabel(self.components, 'file_url'); - const regex = new RegExp(/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-/]))?/); - if (!self.isSubmissionUsingUrl && (submissionFile === null || submissionFile === '')) { - self.submissionError = 'Please upload file!'; - return; - } else if (self.isSubmissionUsingUrl && submissionFileUrl !== '' && !self.validFileUrl) { - self.submissionError = 'Please enter a valid Submission URL!'; - return; - } else if (self.selectedPhase['id'] === undefined) { - self.submissionError = 'Please select phase!'; - return; - } else if (submissionProjectUrl !== '' && !regex.test(submissionProjectUrl)) { - self.submissionError = 'Please provide a valid project URL!'; - return; - } else if (submissionPublicationUrl !== '' && !regex.test(submissionPublicationUrl)) { - self.submissionError = 'Please provide a valid publication URL!'; - return; - } - if (self.metaAttributesforCurrentSubmission != null) { - self.metaAttributesforCurrentSubmission.forEach((attribute) => { - if (attribute.required === true) { - if (attribute.type === 'checkbox') { - if (attribute.values.length === 0) { - metaValue = false; - } - } else if (attribute.type == 'text') { - // Fetch value of text attributes manually as we are using modular components - let value = self.globalService.formValueForLabel(self.components, attribute.name); - if (value === null || value === undefined || value.length === 0) { - metaValue = false; - } - attribute.value = value; - } else { - if (attribute.value === null || attribute.value === undefined) { - metaValue = false; - } - } - } - }); - } - if (metaValue !== true) { - self.submissionError = 'Please provide input for meta attributes!'; - return; - } - - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('status', 'submitting'); - if (!self.isSubmissionUsingUrl) { - FORM_DATA.append('input_file', self.globalService.formItemForLabel(self.components, 'input_file').fileSelected); - } else if (self.validFileUrl && self.isSubmissionUsingUrl) { - FORM_DATA.append('file_url', self.globalService.formValueForLabel(self.components, 'file_url')); - } - FORM_DATA.append('is_public', self.isPublicSubmission); - FORM_DATA.append('method_name', self.globalService.formValueForLabel(self.components, 'method_name')); - FORM_DATA.append('method_description', self.globalService.formValueForLabel(self.components, 'method_description')); - FORM_DATA.append('project_url', self.globalService.formValueForLabel(self.components, 'project_url')); - FORM_DATA.append('publication_url', self.globalService.formValueForLabel(self.components, 'publication_url')); - FORM_DATA.append('submission_metadata', JSON.stringify(self.metaAttributesforCurrentSubmission)); - self.challengeService.challengeSubmission(self.challenge['id'], self.selectedPhase['id'], FORM_DATA, () => { - if (!self.isSubmissionUsingUrl) { - self.globalService.setFormValueForLabel(self.components, 'input_file', null); - } else if (self.validFileUrl && self.isSubmissionUsingUrl) { - self.globalService.setFormValueForLabel(self.components, 'file_url', ''); - } - self.globalService.setFormValueForLabel(self.components, 'method_name', ''); - self.globalService.setFormValueForLabel(self.components, 'method_description', ''); - self.globalService.setFormValueForLabel(self.components, 'project_url', ''); - self.globalService.setFormValueForLabel(self.components, 'publication_url', ''); - }); - self.isSubmitted = true; - } - - copyTextToClipboard(ref: HTMLElement) { - const textBox = document.createElement('textarea'); - textBox.style.position = 'fixed'; - textBox.style.left = '0'; - textBox.style.top = '0'; - textBox.style.opacity = '0'; - textBox.value = ref.innerText.split('$ ')[1]; - document.body.appendChild(textBox); - textBox.focus(); - textBox.select(); - document.execCommand('copy'); - document.body.removeChild(textBox); - - this.globalService.showToast('success', 'Command copied to clipboard'); - } - - /** - * Edit submission guidelines - */ - editSubmissionGuideline() { - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService - .patchUrl(SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), BODY) - .subscribe( - (data) => { - SELF.submissionGuidelines = data.submission_guidelines; - SELF.globalService.showToast('success', 'The submission guidelines is successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => {} - ); - }; - - const PARAMS = { - title: 'Edit Submission Guidelines', - label: 'submission_guidelines', - isEditorRequired: true, - editorContent: this.challenge.submission_guidelines, - confirm: 'Submit', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Edit challenge overview with file function - */ - editSubmissionGuidelineUpload() { - const SELF = this; - SELF.apiCall = (params) => { - const FORM_DATA: FormData = new FormData(); - FORM_DATA.append('submission_guidelines_file', params['submission_guidelines_file']); - SELF.apiService - .patchFileUrl( - SELF.endpointsService.editChallengeDetailsURL(SELF.challenge.creator.id, SELF.challenge.id), - FORM_DATA - ) - .subscribe( - (data) => { - SELF.challenge.submission_guidelines = data.submission_guidelines; - SELF.globalService.showToast('success', 'The submission guidelines are successfully updated!', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - SELF.globalService.showToast('error', err); - }, - () => this.logger.info('EDIT-CHALLENGE-DESCRIPTION-FINISHED') - ); - }; - - /** - * Parameters of the modal - */ - const PARAMS = { - title: 'Edit Submission Guidelines', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - name: 'Submission Guidelines', - isRequired: true, - label: 'submission_guidelines_file', - placeholder: '', - type: 'file', - value: '', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - validateInput(inputValue) { - const regex = new RegExp(/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-/]))?/); - const validExtensions = ['json', 'zip', 'txt', 'tsv', 'gz', 'csv', 'h5', 'npy']; - if (this.isSubmissionUsingUrl) { - if (regex.test(inputValue)) { - this.inputErrorMessage = ''; - this.validFileUrl = true; - } else { - this.inputErrorMessage = 'Please enter a valid URL!'; - this.validFileUrl = false; - } - } else { - const extension = inputValue.split('.').pop(); - if (!validExtensions.includes(extension)) { - this.inputErrorMessage = 'Please enter a valid File!'; - this.validFileUrl = false; - } else if (validExtensions.includes(extension)) { - this.inputErrorMessage = ''; - this.validFileUrl = true; - } - } - } - - // unchecking checked options - toggleSelection(attribute, value) { - const idx = attribute.values.indexOf(value); - if (idx > -1) { - attribute.values.splice(idx, 1); - } else { - attribute.values.push(value); - } - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.html b/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.html deleted file mode 100644 index 0f91831602..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.html +++ /dev/null @@ -1,260 +0,0 @@ -
- - -
-
-
-

- Note: Results are greater than 5k, please use the - get_all_submissions API to download results. -

-
-
-
- -
-
-
-
-
All Submissions
-
-
-
-
- -
-
-
- - File - - - {{ key.name }} - - - -
-
- -
-
-
-
-
-
-
- Filter Submissions by Team name -
-
-
-
- - -
-
-
-
-
-
-
-
-
No phase selected.
-
- No results found. -
-
-
-
- -
- - - - - - - - - - - - - - -
{{ columnsHeadings[i] }} - - {{ element[column] | uppercase }} - {{ element[column] }} - - {{ element[column] }} - - - Link - - None - -
-
-
- Submission id :   - - {{ element.id }} - -
-
- Submitted at :   - - {{ element.submitted_at | date: 'medium' }} - -
-
-
-
- Stdout file :   - - Link - - - None - -
-
- Stderr file :   - - Link - - - None - -
-
- Metadata file :   - - Link - - - None - -
-
- -
-
-
- - -
-
diff --git a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.scss b/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.scss deleted file mode 100644 index e62b58e0bc..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.scss +++ /dev/null @@ -1,183 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.ev-md-container { - padding-bottom: 0px; - .phase-title { - margin-bottom: 20px; - } -} - -.filter-team { - margin-top: 40px; - padding-left: 27px; -} - -.show-submission-count { - background: #252833; - text-align: center; - color: white; - padding: 2px 5px 2px 5px; - border-radius: 3px 3px 3px 3px; - font-weight: $fw-light; - transition: all 0.2s ease-in-out; -} - -@include screen-small-medium { - .download-submissions { - margin-left: 20px; - margin-right: 20px; - } -} - -.add-line-height { - line-height: 51px; -} - -.result-wrn { - margin-top: 15px; - margin-bottom: 20px; -} - -.cbx-label { - margin-left: 55px; - margin-right: 55px; -} - -.cbx:checked ~ .cbx-label { - background: #4caf50; -} - -.collapsible-table { - overflow: auto; - - .table-header { - color: rgba(0, 0, 0, 0.87) !important; - text-align: center !important; - } -} - -tr.element-row:not(.expanded-row):hover { - cursor: pointer; - background: $super-light-shadow; -} - -tr.element-row.expanded-row { - cursor: pointer; -} - -.mat-table{ - border-collapse: separate; -} - -.element-row td { - border-bottom-width: 0; -} - -.expanded-row td { - border-bottom-width: 1px; -} - -.cell-outside { - padding: 8px; -} - -.detail-row { - height: 0; - overflow: hidden; -} - -.collapsed-td { - padding: 0px 58px !important; -} - -.expanded-row { - margin-top: 24px; - margin-bottom: 14px; -} - -.elements { - overflow: hidden; - display: flex; - flex-direction: row; -} - -.elements-detail { - width: 40%; - overflow: hidden; - display: flex; - flex-direction: column; - border-right-style: solid; - border-right-width: 1px; - border-right-color: lightgrey; - margin-left: 50px; -} - -.elements-action { - width: 30%; - overflow: hidden; - display: flex; - flex-direction: column; - margin-left: 30px; -} - -.elements-status { - width: 30%; - overflow: hidden; - display: flex; - flex-direction: column; - border-right-style: solid; - border-right-width: 1px; - border-right-color: lightgrey; - margin-left: 30px; -} - -.element-icon { - margin-right: 10px; -} - -.element { - margin-bottom: 10px; -} - -.element-description-attribution { - opacity: 0.5; -} - -.delete-submission-label { - color: red; -} - -@include screen-small { - .elements { - flex-direction: column; - } - - .elements-action { - margin-left: 0; - margin-top: 20px; - } - - .elements-status { - border-right-style: none; - margin-left: 0; - border-bottom-style: solid; - border-bottom-color: lightgrey; - border-bottom-width: 1px; - padding-bottom: 20px; - } - - .elements-detail { - border-right-style: none; - padding-right: 0; - border-bottom-style: solid; - border-bottom-color: lightgrey; - border-bottom-width: 1px; - padding-bottom: 20px; - } - - .element { - display: flex; - flex-direction: column; - } -} diff --git a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.spec.ts b/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.spec.ts deleted file mode 100644 index 28db2da6ee..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.spec.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengeviewallsubmissionsComponent } from './challengeviewallsubmissions.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ChallengeService } from '../../../services/challenge.service'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { WindowService } from '../../../services/window.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { MatMenuModule } from '@angular/material/menu'; -import { MatIconModule } from '@angular/material/icon'; -import { MatTableModule } from '@angular/material'; - -describe('ChallengeviewallsubmissionsComponent', () => { - let component: ChallengeviewallsubmissionsComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ChallengeviewallsubmissionsComponent], - providers: [ChallengeService, GlobalService, AuthService, ApiService, EndpointsService, WindowService], - imports: [HttpClientModule, RouterTestingModule, MatMenuModule, MatIconModule, MatTableModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengeviewallsubmissionsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.ts b/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.ts deleted file mode 100644 index 9c616fd8b4..0000000000 --- a/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.ts +++ /dev/null @@ -1,664 +0,0 @@ -import { Component, OnInit, QueryList, ViewChildren, AfterViewInit } from '@angular/core'; -import { animate, state, style, transition, trigger } from '@angular/animations'; -import { Router, ActivatedRoute } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { WindowService } from '../../../services/window.service'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { SelectphaseComponent } from '../../utility/selectphase/selectphase.component'; -import { environment } from '../../../../environments/environment'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengeviewallsubmissions', - templateUrl: './challengeviewallsubmissions.component.html', - styleUrls: ['./challengeviewallsubmissions.component.scss'], - animations: [ - trigger('detailExpand', [ - state('collapsed', style({ height: '0px', minHeight: '0' })), - state('expanded', style({ height: '*' })), - transition('expanded <=> collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')), - ]), - ], -}) -export class ChallengeviewallsubmissionsComponent implements OnInit, AfterViewInit { - /** - * Phase select card components - */ - @ViewChildren('phaseselect') - components: QueryList; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Has view been initialized - */ - viewInit = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Router's public instance - */ - routerPublic: any; - - /** - * User participated - */ - isParticipated: any; - - /** - * Is user a challenge host - */ - isChallengeHost = false; - - /** - * Submissions list - */ - submissions = []; - - /** - * Total submissions - */ - submissionCount = 0; - - /** - * Challenge phase list - */ - phases = []; - - /** - * Challenge phases filtered - */ - filteredPhases = []; - - /** - * Currently selected phase's id - */ - selectedPhaseId: any; - - /** - * Currently selected phase - */ - selectedPhase: any = null; - - /** - * Is phase selected - */ - isPhaseSelected = false; - - /** - * Download file types - */ - fileTypes = [{ name: 'csv' }]; - - /** - * Selected file type - */ - fileSelected = ''; - - /** - * Phase selection type (radio button or select box) - */ - phaseSelectionType = 'selectBox'; - - /** - * Select box list type - */ - phaseSelectionListType = 'phase'; - - /** - * Filter query as participant team name - */ - filterSubmissionsQuery = ''; - - /** - * Fields to be exported - */ - fieldsToGetExport: any = []; - - /** - *Check whether team name is filtered - */ - isTeamFiltered = true; - - /** - * @param showPagination Is pagination - * @param paginationMessage Pagination message - * @param isPrev Previous page state - * @param isNext Next page state - * @param currentPage Current Page number - */ - paginationDetails: any = {}; - - /** - * API call inside the modal - */ - apiCall: any; - - columnsToDisplay = [ - 's_no', - 'participant_team', - 'created_by', - 'status', - 'execution_time', - 'input_file', - 'submission_result_file', - ]; - columnsHeadings = [ - 'S.No.', - 'Team Name', - 'Created By', - 'Status', - 'Execution Time(sec)', - 'Submitted File', - 'Result File', - ]; - - expandedElement: null; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param router Router Injection. - * @param route ActivatedRoute Injection. - * @param challengeService ChallengeService Injection. - * @param globalService GlobalService Injection. - * @param apiService Router Injection. - * @param windowService WindowService Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private authService: AuthService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService, - private apiService: ApiService, - private windowService: WindowService, - private endpointsService: EndpointsService, - private logger: NGXLogger - ) {} - - /** - * Component after view initialized. - */ - ngAfterViewInit() { - this.viewInit = true; - } - - /** - * Component on initialized. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.routerPublic = this.router; - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - }); - this.challengeService.currentParticipationStatus.subscribe((status) => { - this.isParticipated = status; - if (!status) { - this.globalService.storeData(this.globalService.redirectStorageKey, { path: this.routerPublic.url }); - let redirectToPath = ''; - if (this.router.url.split('/').length === 4) { - redirectToPath = '../participate'; - } else if (this.router.url.split('/').length === 5) { - redirectToPath = '../../participate'; - } else if (this.router.url.split('/').length === 6) { - redirectToPath = '../../../participate'; - } - this.router.navigate([redirectToPath], { relativeTo: this.route }); - } - }); - this.challengeService.currentPhases.subscribe((phases) => { - this.phases = phases; - for (let i = 0; i < this.phases.length; i++) { - if (this.phases[i].is_public === false) { - this.phases[i].showPrivate = true; - } else { - this.phases[i].showPrivate = false; - } - } - this.filteredPhases = this.phases; - }); - - this.challengeService.isChallengeHost.subscribe((status) => { - this.isChallengeHost = status; - }); - } - - /** - * Called when a phase is selected (from child component) - */ - phaseSelected() { - const SELF = this; - return (phase) => { - SELF.selectedPhase = phase; - SELF.isPhaseSelected = true; - SELF.submissionCount = 0; - if (SELF.challenge['id'] && phase['id']) { - SELF.fetchSubmissions(SELF.challenge['id'], phase['id']); - } - }; - } - - /** - * Fetch submissions from API. - * @param challenge challenge id - * @param phase phase id - */ - fetchSubmissions(challenge, phase) { - const SELF = this; - let API_PATH; - if (SELF.filterSubmissionsQuery === '') { - API_PATH = SELF.endpointsService.allChallengeSubmissionURL(challenge, phase); - this.isTeamFiltered = false; - } else { - API_PATH = SELF.endpointsService.allChallengeSubmissionWithFilterQueryUrl( - challenge, - phase, - SELF.filterSubmissionsQuery - ); - this.isTeamFiltered = true; - } - - const name = SELF.filterSubmissionsQuery; - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - if (name === SELF.filterSubmissionsQuery) { - SELF.submissionCount = data['count']; - SELF.submissions = data['results']; - let index = 0; - SELF.submissions.forEach((submission) => { - submission['s_no'] = index + 1; - index += 1; - }); - for (let i = 0; i < SELF.submissions.length; i++) { - // Update view for submission visibility setting - SELF.submissions[i].submissionVisibilityIcon = SELF.submissions[i].is_public - ? 'visibility' - : 'visibility_off'; - SELF.submissions[i].submissionVisibilityText = SELF.submissions[i].is_public ? 'Public' : 'Private'; - // Update view for flag submission setting - SELF.submissions[i].submissionFlagIcon = SELF.submissions[i].is_flagged ? 'flag' : 'outlined_flag'; - } - - SELF.paginationDetails.next = data.next; - SELF.paginationDetails.previous = data.previous; - SELF.paginationDetails.totalPage = Math.ceil(data.count / 100); - - if (data.count === 0) { - SELF.paginationDetails.showPagination = false; - SELF.paginationDetails.paginationMessage = 'No results found'; - } else { - SELF.paginationDetails.showPagination = true; - SELF.paginationDetails.paginationMessage = ''; - } - // condition for pagination - if (data.next === null) { - SELF.paginationDetails.isNext = 'disabled'; - SELF.paginationDetails.currentPage = 1; - } else { - SELF.paginationDetails.isNext = ''; - if (this.isTeamFiltered) { - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=').join('&').split('&')[1] - 1); - } else { - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=')[1] - 1); - } - } - if (data.previous === null) { - SELF.paginationDetails.isPrev = 'disabled'; - } else { - SELF.paginationDetails.isPrev = ''; - } - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Fetched submissions', challenge, phase); - } - ); - } - - /** - * Filter submissions by participant team name - * @param participantTeamName Participant team name - */ - filterSubmissions(participantTeamName) { - const SELF = this; - SELF.filterSubmissionsQuery = participantTeamName; - SELF.fetchSubmissions(SELF.challenge['id'], SELF.selectedPhase['id']); - } - - /** - * Download Submission csv. - */ - downloadSubmission() { - if (this.challenge['id'] && this.selectedPhase && this.fileSelected) { - const API_PATH = this.endpointsService.challengeSubmissionDownloadURL( - this.challenge['id'], - this.selectedPhase['id'], - this.fileSelected - ); - const SELF = this; - if (SELF.fieldsToGetExport.length === 0 || SELF.fieldsToGetExport === undefined) { - SELF.apiService.getUrl(API_PATH, false).subscribe( - (data) => { - SELF.windowService.downloadFile(data, 'all_submissions.csv'); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Download complete.', SELF.challenge['id'], SELF.selectedPhase['id']); - } - ); - } - } else { - if (this.selectedPhase === null) { - this.globalService.showToast('error', 'Please select a challenge phase!'); - } else if (this.fileSelected === '') { - this.globalService.showToast('error', 'The file type requested is not valid!'); - } - } - } - - /** - * load data with pagination - */ - loadPaginationData(url) { - if (url !== null) { - const SELF = this; - const API_PATH = url.split(environment.api_endpoint)[1]; - SELF.apiService.getUrl(API_PATH, true).subscribe( - (data) => { - SELF.submissions = data['results']; - SELF.paginationDetails.next = data.next; - SELF.paginationDetails.previous = data.previous; - // condition for pagination - if (data.next === null) { - SELF.paginationDetails.isNext = 'disabled'; - SELF.paginationDetails.currentPage = Math.ceil(data.count / 100); - } else { - SELF.paginationDetails.isNext = ''; - if (this.isTeamFiltered) { - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=').join('&').split('&')[1] - 1); - } else { - SELF.paginationDetails.currentPage = Math.ceil(data.next.split('page=')[1] - 1); - } - } - - let index = (SELF.paginationDetails.currentPage - 1) * 100; - SELF.submissions.forEach((submission) => { - submission['s_no'] = index + 1; - index += 1; - }); - - if (data.previous === null) { - SELF.paginationDetails.isPrev = 'disabled'; - } else { - SELF.paginationDetails.isPrev = ''; - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Fetched pagination submissions'); - } - ); - } - } - - /** - * Update submission's leaderboard visibility. - * @param id Submission id - */ - updateSubmissionVisibility(id) { - for (let i = 0; i < this.submissions.length; i++) { - if (this.submissions[i]['id'] === id) { - this.submissions[i]['is_public'] = !this.submissions[i]['is_public']; - break; - } - } - } - - /** - * Update submission flag. - * @param id Submission id - */ - updateSubmissionFlag(id) { - for (let i = 0; i < this.submissions.length; i++) { - if (this.submissions[i]['id'] === id) { - this.submissions[i]['is_flagged'] = !this.submissions[i]['is_flagged']; - break; - } - } - } - - /** - * Change Submission's leaderboard visibility API. - * @param submission Selected submission - * @param is_public visibility boolean flag - */ - changeSubmissionVisibility(submission, is_public) { - is_public = !is_public; - this.updateSubmissionVisibility(submission.id); - if (this.challenge['id'] && this.selectedPhase && this.selectedPhase['id'] && submission.id) { - const API_PATH = this.endpointsService.challengeSubmissionUpdateURL( - this.challenge['id'], - this.selectedPhase['id'], - submission.id - ); - const SELF = this; - const BODY = JSON.stringify({ is_public: is_public }); - this.apiService.patchUrl(API_PATH, BODY).subscribe( - () => { - submission.submissionVisibilityIcon = is_public ? 'visibility' : 'visibility_off'; - submission.submissionVisibilityText = is_public ? 'Public' : 'Private'; - const toastMessage = is_public ? 'The submission is made public' : 'The submission is made private'; - SELF.globalService.showToast('success', toastMessage); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - } - - /** - * Change Submission's leaderboard visibility API. - * @param submission Selected submission - * @param is_flagged is submission flagged boolean field - */ - toggleSubmissionFlag(submission, is_flagged) { - is_flagged = !is_flagged; - const SELF = this; - SELF.updateSubmissionFlag(submission.id); - if (SELF.challenge['id'] && SELF.selectedPhase && SELF.selectedPhase['id'] && submission.id) { - const API_PATH = SELF.endpointsService.challengeSubmissionUpdateURL( - SELF.challenge['id'], - SELF.selectedPhase['id'], - submission.id - ); - const BODY = JSON.stringify({ is_flagged: is_flagged }); - SELF.apiService.patchUrl(API_PATH, BODY).subscribe( - () => { - submission.submissionFlagIcon = is_flagged ? 'flag' : 'outlined_flag'; - const toastMessage = is_flagged ? 'Submission flagged successfully!' : 'Submission unflagged successfully!'; - SELF.globalService.showToast('success', toastMessage); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - } - - /** - * Modal to confirm the change of submission flag field - * @param submission Selected submission - * @param is_flagged is submission flagged boolean field - */ - confirmSubmissionFlagChange(submission, is_flagged) { - const SELF = this; - const submissionFlagState = is_flagged ? 'Unflag' : 'Flag'; - - SELF.apiCall = () => { - SELF.toggleSubmissionFlag(submission, is_flagged); - }; - - const PARAMS = { - title: submissionFlagState + ' this submission ?', - confirm: "Yes, I'm sure", - deny: 'No', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - } - - /** - * Modal to confirm the change of submission visibility - * @param submission Selected submission - * @param submissionVisibility current submission visibility - */ - confirmSubmissionVisibility(submission, submissionVisibility) { - const SELF = this; - const submissionVisibilityState = submissionVisibility ? 'private' : 'public'; - - SELF.apiCall = () => { - SELF.changeSubmissionVisibility(submission, submissionVisibility); - }; - - const PARAMS = { - title: 'Make this submission ' + submissionVisibilityState + '?', - confirm: "Yes, I'm sure", - deny: 'No', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - } - - /** - * Modal to confirm the submission re-run - * @param submissionId submission id - */ - reRunSubmission(submissionId) { - const SELF = this; - const API_PATH = SELF.endpointsService.reRunSubmissionURL(submissionId); - SELF.apiCall = () => { - const BODY = {}; - SELF.apiService.postUrl(API_PATH, BODY).subscribe( - (data) => { - SELF.globalService.showToast('success', data.success, 5); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Re-run this submission?', - confirm: "Yes, I'm sure", - deny: 'No', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - } - - /** - * Delete Submission. - * @param submission Submission being deleted - */ - deleteChallengeSubmission(submission) { - const SELF = this; - SELF.apiCall = () => { - SELF.apiService.deleteUrl(SELF.endpointsService.disableChallengeSubmissionURL(submission.id)).subscribe( - () => { - SELF.globalService.showToast('success', 'Submission Deleted successfully', 5); - SELF.fetchSubmissions(SELF.challenge.id, SELF.selectedPhase.id); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Delete Submission', - content: 'I understand consequences, delete the submission', - isButtonDisabled: true, - confirm: 'Yes', - deny: 'No', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Display Cancel Submission Modal. - * @param submission Submission being cancelled - */ - cancelSubmission(submission) { - const SELF = this; - if (submission.status != "submitted") { - SELF.globalService.showToast('error', 'Only unproccessed submissions can be cancelled', 5); - return; - } - SELF.apiCall = () => { - const BODY = JSON.stringify({ - "status": "cancelled" - }); - SELF.apiService - .patchUrl( - SELF.endpointsService.updateSubmissionMetaURL( - SELF.challenge.id, - submission.id - ), - BODY - ) - .subscribe( - () => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Submission status updated successfully', 5); - SELF.fetchSubmissions(SELF.challenge.id, SELF.selectedPhase.id); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('SUBMISSION-CANCELLED') - ); - }; - const PARAMS = { - title: 'Are you sure you want to cancel submission?', - content: '', - isButtonDisabled: true, - confirm: 'Submit', - deny: 'Cancel', - form: [], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } -} diff --git a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.html b/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.html deleted file mode 100644 index 1823ecdb65..0000000000 --- a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
-
-
-
Meta Attributes for submission
-
-
-
- {{ attribute.name }} : {{ attribute.value }} -
-
-
- {{ attribute.name }} : - {{ value }} -
-
-
-
-
-
-
- -
diff --git a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.scss b/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.scss deleted file mode 100644 index 65bfdfb914..0000000000 --- a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.scss +++ /dev/null @@ -1,18 +0,0 @@ -.meta_attributes_dialog_atts { - padding-bottom: 10px; -} - -.meta_attributes_checkox_list { - display: list-item; - list-style-position: inside; - list-style-type: disc; -} - -.meta-title { - margin: 20px 10px; -} - -.dialog-close-button { - float: right; - margin-top: -10%; -} diff --git a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.spec.ts b/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.spec.ts deleted file mode 100644 index a312636493..0000000000 --- a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { SubmissionMetaAttributesDialogueComponent } from './submission-meta-attributes-dialogue.component'; - -describe('SubmissionMetaAttributesDialogueComponent', () => { - let component: SubmissionMetaAttributesDialogueComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [SubmissionMetaAttributesDialogueComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(SubmissionMetaAttributesDialogueComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.ts b/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.ts deleted file mode 100644 index 18e4395b01..0000000000 --- a/frontend_v2/src/app/components/challenge/submission-meta-attributes-dialogue/submission-meta-attributes-dialogue.component.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Component, OnInit, Optional, Inject } from '@angular/core'; -import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; - -@Component({ - selector: 'app-submission-meta-attributes-dialogue', - templateUrl: './submission-meta-attributes-dialogue.component.html', - styleUrls: ['./submission-meta-attributes-dialogue.component.scss'], -}) -export class SubmissionMetaAttributesDialogueComponent implements OnInit { - /** - * Meta attribute data - */ - metaAttributesData: any; - - constructor( - public dialog: MatDialog, - public dialogRef: MatDialogRef, - @Optional() @Inject(MAT_DIALOG_DATA) public data: any - ) { - this.metaAttributesData = data.attribute; - } - - ngOnInit() {} - - closeDialog() { - this.dialogRef.close({ event: 'close', data: this.metaAttributesData }); - } -} diff --git a/frontend_v2/src/app/components/contact/contact-routing.module.ts b/frontend_v2/src/app/components/contact/contact-routing.module.ts deleted file mode 100644 index d94939e6e4..0000000000 --- a/frontend_v2/src/app/components/contact/contact-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { ContactComponent } from './contact.component'; - -const routes: Routes = [ - { - path: '', - component: ContactComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class ContactRoutingModule {} diff --git a/frontend_v2/src/app/components/contact/contact.component.html b/frontend_v2/src/app/components/contact/contact.component.html deleted file mode 100644 index 8942ddeec3..0000000000 --- a/frontend_v2/src/app/components/contact/contact.component.html +++ /dev/null @@ -1,56 +0,0 @@ - -
-
-
-

Contact Us

- - -
- -
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- diff --git a/frontend_v2/src/app/components/contact/contact.component.scss b/frontend_v2/src/app/components/contact/contact.component.scss deleted file mode 100644 index 1d5d7969db..0000000000 --- a/frontend_v2/src/app/components/contact/contact.component.scss +++ /dev/null @@ -1,28 +0,0 @@ -@import './styles/variables.scss'; -@import './styles/mixins.scss'; - -/* contact container */ - -.contact-container { - max-width: 1400px; - margin: 0 auto; - padding: 60px 100px 40px 113px; - min-height: 100vh; -} - -.contact-title { - color: #4d4d4d; - line-height: 110%; - box-sizing: border-box; -} - -/* media queries */ - -@media only screen and (max-width: $screen-sm-md) { - .contact-title { - margin-top: 10px; - } - .contact-container { - text-align: center; - } -} diff --git a/frontend_v2/src/app/components/contact/contact.component.spec.ts b/frontend_v2/src/app/components/contact/contact.component.spec.ts deleted file mode 100644 index 9ee5f09d16..0000000000 --- a/frontend_v2/src/app/components/contact/contact.component.spec.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { ContactComponent } from './contact.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { ToastComponent } from '../../components/utility/toast/toast.component'; -import { InputComponent } from '../../components/utility/input/input.component'; -import { MockWindowService } from '../../services/mock.window.service'; -import { WindowService } from '../../services/window.service'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { ApiService } from '../../services/api.service'; -import { ActivatedRoute, Router, Routes } from '@angular/router'; -import { HttpClientModule } from '@angular/common/http'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import Global = NodeJS.Global; -import { FormsModule } from '@angular/forms'; -import { OwlDateTimeModule } from 'ng-pick-datetime'; - -const routes: Routes = [ - { - path: 'contact', - component: ContactComponent, - }, -]; - -describe('ContactComponent', () => { - let router: Router; - let component: ContactComponent; - let fixture: ComponentFixture; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - let authService: AuthService; - let apiService: ApiService; - let globalService: GlobalService; - - beforeEach(async(() => { - // Google Maps API errors out when Karma tries to load it. - // As a result Components are not created and the tests fail. - // Mocking the loadJS function in window service to prevent that. - const MOCK_SERVICE = new MockWindowService(null); - TestBed.configureTestingModule({ - imports: [HttpClientModule, RouterTestingModule.withRoutes(routes), FormsModule, OwlDateTimeModule], - declarations: [ContactComponent, HeaderStaticComponent, InputComponent, ToastComponent, FooterComponent], - providers: [ - GlobalService, - AuthService, - ApiService, - { provide: WindowService, useValue: MOCK_SERVICE }, - EndpointsService, - ], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - authService = TestBed.get(AuthService); - apiService = TestBed.get(ApiService); - globalService = TestBed.get(GlobalService); - fixture = TestBed.createComponent(ContactComponent); - component = fixture.componentInstance; - }); - - it('should create', () => { - fixture.ngZone.run(() => { - router.navigate(['/contact']).then(() => { - fixture.detectChanges(); - expect(component).toBeTruthy(); - }); - }); - }); -}); diff --git a/frontend_v2/src/app/components/contact/contact.component.ts b/frontend_v2/src/app/components/contact/contact.component.ts deleted file mode 100644 index 3b92dd4c71..0000000000 --- a/frontend_v2/src/app/components/contact/contact.component.ts +++ /dev/null @@ -1,103 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ViewChildren, QueryList, AfterViewInit } from '@angular/core'; -import { Router } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; - -import { InputComponent } from '../../components/utility/input/input.component'; -import { ApiService } from '../../services/api.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { GlobalService } from '../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-contact', - templateUrl: './contact.component.html', - styleUrls: ['./contact.component.scss'], -}) -export class ContactComponent implements OnInit, AfterViewInit { - /** - * All forms in contact component - */ - ALL_FORMS: any = {}; - - /** - * Form fields name - */ - contactForm = 'formgroup'; - - /** - * Signup form components - */ - @ViewChildren('formgroup') - components: QueryList; - - /** - * List of components - */ - componentlist: any; - - /** - * Constructor.. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - * @param router Router Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private globalService: GlobalService, - private apiService: ApiService, - private router: Router, - private endpointsService: EndpointsService, - private logger: NGXLogger - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.globalService.scrollToTop(); - } - - /** - * Component after view initialized. - */ - ngAfterViewInit() { - // print array of CustomComponent objects - // this.componentlist = this.components.toArray(); - - this.ALL_FORMS[this.contactForm] = this.components; - } - - /** - * Form validate function. - * @param formname Name of form fields (#). - */ - formValidate(formname) { - this.globalService.formValidate(this.ALL_FORMS[this.contactForm], this.formSubmit, this); - } - - /** - * Form submit function (Called after validation). - * @param self context value of this - */ - formSubmit(self) { - const CONTACT_BODY = JSON.stringify({ - name: self.globalService.formValueForLabel(self.ALL_FORMS[self.contactForm], 'name'), - email: self.globalService.formValueForLabel(self.ALL_FORMS[self.contactForm], 'email'), - message: self.globalService.formValueForLabel(self.ALL_FORMS[self.contactForm], 'message'), - }); - self.apiService.postUrl(self.endpointsService.contactURL(), CONTACT_BODY).subscribe( - (data) => { - // Success Message in data.message - setTimeout(() => self.globalService.showToast('success', data.message, 5), 1000); - self.router.navigate(['/']); - }, - (err) => { - self.globalService.handleFormError(self.components, err, false); - }, - () => this.logger.info('CONTACT-FORM-SUBMITTED') - ); - } -} diff --git a/frontend_v2/src/app/components/contact/contact.module.ts b/frontend_v2/src/app/components/contact/contact.module.ts deleted file mode 100644 index 40136cf861..0000000000 --- a/frontend_v2/src/app/components/contact/contact.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { ContactComponent } from './contact.component'; - -// import module -import { ContactRoutingModule } from './contact-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [ContactComponent], - imports: [CommonModule, ContactRoutingModule, SharedModule], - exports: [ContactComponent], -}) -export class ContactModule {} diff --git a/frontend_v2/src/app/components/get-involved/get-involved-routing.module.ts b/frontend_v2/src/app/components/get-involved/get-involved-routing.module.ts deleted file mode 100644 index 2f2bd4a4aa..0000000000 --- a/frontend_v2/src/app/components/get-involved/get-involved-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { GetInvolvedComponent } from './get-involved.component'; - -const routes: Routes = [ - { - path: '', - component: GetInvolvedComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class GetInvolvedRoutingModule {} diff --git a/frontend_v2/src/app/components/get-involved/get-involved.component.html b/frontend_v2/src/app/components/get-involved/get-involved.component.html deleted file mode 100644 index 1a92f69d58..0000000000 --- a/frontend_v2/src/app/components/get-involved/get-involved.component.html +++ /dev/null @@ -1,71 +0,0 @@ - -
-
- -
-
-
-

Get Involved

-

- Thanks for your interest in helping out with the EvalAI project! We're a team of volunteers around the world - who want to reduce the barrier to entry for doing AI research and make it easier for researchers, students - and developers to develop and use state-of-the-art algorithms as a service. We are always listening for - suggestions to improve our platform, including identifying bugs and discussing enhancements. Here are - different ways in which how you can help: -

-
Report issues
-

- If you identify a bug or run into issues while using the website, or you'd like to suggest some new features - or want to get in touch with us, feel free to reach out via our - EvalAI Google Group, or contact us at team@cloudcv.org. -

-
Improving and maintaining the site
-

- The EvalAI project is fully open source, and is maintained by a large community of volunteers on - GitHub. We are in need of - coders and designers so if you would like to help out, please drop us a line! The best way to get started is - to write us at team@cloudcv.org or ping us on our - Gitter Channel. -

-
Press
-

- If you're a journalist who would like to help spread the word about EvalAI or CloudCV, please email - admin@cloudcv.org. -

-
Partnership
-

- If you are interested in partnering with us to make a bigger impact on the research community, or want to - host a challenge of your own, please email - admin@cloudcv.org. -

-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-
-
- - diff --git a/frontend_v2/src/app/components/get-involved/get-involved.component.scss b/frontend_v2/src/app/components/get-involved/get-involved.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frontend_v2/src/app/components/get-involved/get-involved.component.spec.ts b/frontend_v2/src/app/components/get-involved/get-involved.component.spec.ts deleted file mode 100644 index 1147205343..0000000000 --- a/frontend_v2/src/app/components/get-involved/get-involved.component.spec.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { GetInvolvedComponent } from './get-involved.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { ActivatedRoute, Router } from '@angular/router'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { ApiService } from '../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('GetInvolvedComponent', () => { - let component: GetInvolvedComponent; - let fixture: ComponentFixture; - let globalService; - let globalServiceSpy; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [GetInvolvedComponent, HeaderStaticComponent, FooterComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(GetInvolvedComponent); - globalService = TestBed.get(GlobalService); - globalServiceSpy = spyOn(globalService, 'scrollToTop'); - component = fixture.componentInstance; - - expect(globalServiceSpy).not.toHaveBeenCalled(); - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('should call scrollToTop method of global service', () => { - expect(globalServiceSpy).toHaveBeenCalledTimes(1); - }); -}); diff --git a/frontend_v2/src/app/components/get-involved/get-involved.component.ts b/frontend_v2/src/app/components/get-involved/get-involved.component.ts deleted file mode 100644 index 23b448c6a3..0000000000 --- a/frontend_v2/src/app/components/get-involved/get-involved.component.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { GlobalService } from '../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-get-involved', - templateUrl: './get-involved.component.html', - styleUrls: ['./get-involved.component.scss'], -}) -export class GetInvolvedComponent implements OnInit { - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor(public globalService: GlobalService) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.globalService.scrollToTop(); - } -} diff --git a/frontend_v2/src/app/components/get-involved/get-involved.module.ts b/frontend_v2/src/app/components/get-involved/get-involved.module.ts deleted file mode 100644 index b31e959863..0000000000 --- a/frontend_v2/src/app/components/get-involved/get-involved.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { GetInvolvedComponent } from './get-involved.component'; - -// import module -import { GetInvolvedRoutingModule } from './get-involved-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [GetInvolvedComponent], - imports: [CommonModule, GetInvolvedRoutingModule, SharedModule], - exports: [GetInvolvedComponent], -}) -export class GetInvolvedModule {} diff --git a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.html b/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.html deleted file mode 100644 index fcd22f0271..0000000000 --- a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.html +++ /dev/null @@ -1,31 +0,0 @@ - diff --git a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.scss b/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.scss deleted file mode 100644 index 99282e2741..0000000000 --- a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.scss +++ /dev/null @@ -1,125 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.featured-challenges-container { - margin-top: 200px; - margin-bottom: 100px; - padding-top: 50px; - padding-bottom: 50px; - color: $gray-darker; - * { - transition: all ease 0.5s; - } - .row { - margin-top: 20px; - margin-bottom: 20px; - } - .section-title { - display: inline-block; - margin-top: 20px; - margin-bottom: 30px; - } - .challenge-area { - padding: 20px; - text-align: center; - .view-all-btn-div { - margin-top: 30px; - .btn { - margin-right: 0px; - } - } - } - .challenge-split { - text-align: center; - position: relative; - display: inline-block; - margin-bottom: 20px; - height: 350px; - width: 350px; - padding: 10px; - border-radius: 5px 5px 5px 5px; - border-top: 1px solid $overlay-light; - z-index: 10; - margin: 30px; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - .challenge-image { - display: inline-table; - position: absolute; - left: 0; - top: 0; - height: 175px; - width: 350px; - text-align: center; - background: white; - border-radius: 5px; - .challenge-img-parent { - position: relative; - display: table-cell; - vertical-align: middle; - .challenge-img { - max-height: 175px; - max-width: 350px; - position: relative; - display: inline-block; - } - } - } - .challenge-content { - display: inline-block; - position: absolute; - left: 0; - bottom: 0; - height: 175px; - width: 350px; - background: white; - border-radius: 5px; - border-top: 1px solid $overlay-lighter; - } - &:hover { - @include box-shadow(0px, 0px, 10px, 5px, $overlay-light); - } - } - .challenge-title { - font-size: $fs-16; - text-align: center; - font-weight: $fw-bolder; - position: absolute; - margin-top: 20px; - top: 50%; - left: 50%; - transform: translate(-50%, -80%); - z-index: 100; - width: 200px; - } - .challenge-link { - font-weight: $fw-regular; - font-size: $fs-16; - font-style: italic; - cursor: pointer; - } -} - -@include screen-large { - .featured-challenges-container { - .challenge-split { - &:hover { - height: 400px; - width: 400px; - .challenge-image { - height: 200px; - width: 400px; - .challenge-img-parent { - .challenge-img { - max-height: 200px; - max-width: 400px; - } - } - } - .challenge-content { - height: 200px; - width: 400px; - } - } - } - } -} diff --git a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.spec.ts b/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.spec.ts deleted file mode 100644 index e36f976373..0000000000 --- a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { FeaturedChallengesComponent } from './featured-challenges.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('FeaturedChallengesComponent', () => { - let component: FeaturedChallengesComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [FeaturedChallengesComponent], - imports: [HttpClientModule, RouterTestingModule], - providers: [GlobalService, AuthService, EndpointsService, ApiService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(FeaturedChallengesComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.ts b/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.ts deleted file mode 100644 index 6e63bc100e..0000000000 --- a/frontend_v2/src/app/components/home/featured-challenges/featured-challenges.component.ts +++ /dev/null @@ -1,81 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { Router } from '@angular/router'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { GlobalService } from '../../../services/global.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { ApiService } from '../../../services/api.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-featured-challenges', - templateUrl: './featured-challenges.component.html', - styleUrls: ['./featured-challenges.component.scss'], -}) -export class FeaturedChallengesComponent implements OnInit { - /** - * Show section flag - */ - show_featured_challenges = false; - - /** - * Featured Challenges - */ - featured_callenges: any = []; - - /** - * Constructor. - * @param endpointsService EndpointService Injection. - * @param router Router Injection. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - */ - constructor( - private endpointsService: EndpointsService, - private router: Router, - private globalService: GlobalService, - private apiService: ApiService, - private logger: NGXLogger - ) {} - - /** - * Component on initialized - */ - ngOnInit() { - this.fetchCurrentChallenges(); - } - - /** - * Fetching present challenges - */ - fetchCurrentChallenges() { - const API_PATH = this.endpointsService.allChallengesURL('present'); - const SELF = this; - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - const CHALLENGE_COUNT = data.count; - if (CHALLENGE_COUNT === 0) { - SELF.show_featured_challenges = false; - } else { - SELF.show_featured_challenges = true; - SELF.featured_callenges = data.results.slice(0, 3); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => this.logger.info('Present-Featured challenges fetched!') - ); - } - - /** - * Navigate to a challenge page - * @param id challenge id - */ - navigateToChallenge(id) { - this.router.navigate(['/challenge/' + id]); - } -} diff --git a/frontend_v2/src/app/components/home/home-routing.module.ts b/frontend_v2/src/app/components/home/home-routing.module.ts deleted file mode 100644 index 1c12a67c05..0000000000 --- a/frontend_v2/src/app/components/home/home-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { HomeComponent } from './home.component'; - -const routes: Routes = [ - { - path: '', - component: HomeComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class HomeRoutingModule {} diff --git a/frontend_v2/src/app/components/home/home.component.html b/frontend_v2/src/app/components/home/home.component.html deleted file mode 100644 index 90c14c30b1..0000000000 --- a/frontend_v2/src/app/components/home/home.component.html +++ /dev/null @@ -1,509 +0,0 @@ - -
-
- -
-
-
-
-

- Evaluating state-of-the-art in AI -

-

- EvalAI is an open source platform for evaluating and comparing machine learning (ML) and artificial - intelligence algorithms (AI) at scale. -

-
- -
-
-
-
-
-
-
- -
-
-
-
-
-
-
-

200+

-
-
-
-
-
- Hosted AI Challenges -
-
-
-
-
-
-
-
-
-

18,000+

-
-
-
-
-
- Users -
-
-
-
-
-
-
-
-
-

180,000+

-
-
-
-
-
- Submissions -
-
-
-
-
-
-
-
-
-

30+

-
-
-
-
-
- Organizations -
-
-
-
-
-
-
-
-
-
-
-

Features

-
-
-
-
-
-
- -
-
-
Custom evaluation protocol
-

- We allow creation of an arbitrary number of evaluation phases and dataset splits, compatibility - using any programming language, and organizing results in both public and private leaderboards. -

-
-
-
-
-
-
-
-
- -
-
-
Remote evaluation
-

- Challenge organizers can easily add their own cluster of worker nodes to process participant - submissions while we take care of hosting the challenge, handling user submissions, and maintaining - the leaderboard. -

-
-
-
-
-
-
-
-
-
-
- -
-
-
Reinforcement learning challenges
-

- EvalAI supports hosting reinforcement learning challenges. Participants submit code for their agent - in the form of docker images which are evaluated against test environments on the evaluation server. -

-
-
-
-
-
-
-
-
- -
-
-
CLI support
-

- EvalAI-CLI is designed to extend the functionality of the EvalAI web application to your command - line to make the platform more accessible and terminal-friendly. -

-
-
-
-
-
-
-
-
-
-
-
- -
-
-
Portability
-

- EvalAI was designed with keeping in mind scalability and portability of such a system from the very - inception of the idea. We heavily rely on open-source technologies such as – Docker, Django, - Node.js, and PostgreSQL. -

-
-
-
-
- -
-
-
-
- -
-
-
Faster evaluation
-

- We warm-up the worker nodes at start-up by pre-loading the dataset in memory. We also split the - dataset into small chunks that are simultaneously evaluated on multiple cores. -

-
-
-
-
-
-
-
-
- -
- -
-
-
-
-
-

Partner Organizations

-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
-
-
-
-
- - -
-
-
-

Twitter Feed

-
- -
-
- - -
-
-
-

Cite our work

-
-
-
-
- EvalAI: Towards Better Evaluation Systems for AI Agents -
- Deshraj Yadav, Rishabh Jain, Harsh Agrawal, Prithvijit Chattopadhyay, Taranjeet Singh, Akash Jain, Shiv - Baran Singh, Stefan Lee, Dhruv Batra -
-
-
- - - -
-
-
- -
-
-
-

Sponsors

-
-
-
- -
-
- -
-
-
-
- - -
-
-
-

Testimonials

-
-
-
-
-
- -
-
{{ testimonialAuthor}}
- {{ testimonialOrg }} -
-
-
- {{ testimonialBody }} -
-
- - - -
-
-
-
- - -
-
-
-

Subscribe to our newsletter

-
-
- -
-
-
-
- -
- - diff --git a/frontend_v2/src/app/components/home/home.component.scss b/frontend_v2/src/app/components/home/home.component.scss deleted file mode 100644 index b24f4256f0..0000000000 --- a/frontend_v2/src/app/components/home/home.component.scss +++ /dev/null @@ -1,322 +0,0 @@ -@import 'styles/variables'; -@import './mixins.scss'; - -.grad-container .row { - margin-left: auto; - margin-right: auto; -} - -.twitter-container { - text-align: center; - margin-left: 23%; - width: 55%; - padding: 2%; - box-shadow: 0px 0px 20px $shadow-black; -} - -@media (max-width: 400px) { - .grad-container { - padding: 25px 25px 25px 10px; - } -} - -.org-logo { - max-width: 100%; - height: 120px; - text-align: center; - - img { - height: 75%; - max-width: 100%; - width: auto; - transition: all 0.2s ease-in-out; - display: block; - margin-left: auto; - margin-right: auto; - margin-top: auto; - margin-bottom: auto; - } -} - -.bg-img { - width: 100%; - height: 100%; - margin: auto; -} - -p { - word-wrap: break-word; -} - -.card-content { - height: 275px; - overflow: hidden; -} - -.subscribe-container { - float: none; - margin: auto; -} - -@media only screen and (max-width: $small-screen) { - .org-logo { - height: auto; - width: 100%; - img { - width: 100%; - height: auto; - } - } -} - -.grad-head { - padding-top: 10vh; -} - -.ev-details, -.ev-reverse-details { - position: relative; - box-shadow: 6px -1px 9px $super-light-shadow; - padding: 0; -} - -.ev-reverse-details { - box-shadow: none; -} - -.landing-buttons { - margin-top: 35px; - position: relative; - z-index: 3; -} - -.evalai-sponsor-logo { - max-width: 100%; - height: 120px; - text-align: center; - img { - height: 55%; - max-width: 100%; - width: auto; - transition: all 0.2s ease-in-out; - display: block; - margin-left: auto; - margin-right: auto; - margin-top: auto; - margin-bottom: auto; - } -} - -.testimonial-container { - text-align: center; - width: 90%; - height: 30%; - padding-left: 5vw; - - .testimonial-body { - padding-top: 150px; - padding-bottom: 70px; - width: 60%; - - span { - color: #000; - font-weight: $fw-light; - font-style: italic; - } - } - - .testimonial-author { - padding-top: 100px; - padding-bottom: 70px; - margin-left: 5%; - - .logo { - height: 100px; - width: 100px; - } - - .testimonial-details { - margin-top: 15px; - display: block; - } - - .name { - margin: 0; - padding-bottom: 5px; - } - } - - .testimonial-arrow-left { - position: absolute; - top: 40%; - left: 0; - height: 100px; - cursor: pointer; - } - - .testimonial-arrow-right { - position: absolute; - top: 40%; - right: 0; - height: 100px; - cursor: pointer; - transform: rotate(180deg); - } - - .testimonial-quotes { - position: absolute; - top: 22%; - left: 30%; - height: 50px; - } -} - -@media only screen and (max-width: 600px) { - .testimonial-container { - .testimonial-author { - margin-left: 0; - } - .testimonial-body { - padding-top: 35px; - width: 80%; - margin-left: 10%; - } - .testimonial-quotes { - top: 280px; - left: 17%; - } - } -} - -@include screen-medium { - .testimonial-container { - .testimonial-quotes { - top: 15% !important; - height: 40px !important; - } - } -} - -@include screen-small { - .testimonial-container { - background-size: 80 !important; - padding-left: 0; - .testimonial-author { - padding-bottom: 40px; - } - } - .testimonial-wrapper { - .grad-container { - padding: 0px; - } - } -} - -#gsoc { - height: 45%; -} - -#aptiv-logo { - height: 35%; - padding-top: 5%; -} - -#cmu-logo { - height: 50%; -} - -#ibm-logo { - height: 35%; - padding-top: 5%; -} - -#mapillary-logo { - height: 40%; - padding-top: 7%; -} - -#mit-logo { - height: 35%; - padding-top: 7%; -} - -#nu-logo { - height: 50%; -} - -#siop-logo { - height: 50%; -} - -#umbc-logo { - height: 45%; - padding-top: 5%; -} - -#draper-logo { - height: 50%; - padding-bottom: 7%; -} - -#ebay-logo { - height: 35%; - padding-top: 3%; -} - -#fb-logo { - height: 30%; - padding-top: 7%; -} - -#gt-logo { - height: 40%; -} - -#google-logo { - height: 40%; -} - -#pitt-logo { - height: 50%; - padding-top: 5%; -} - -#vt-logo { - height: 45%; -} - -#iitm-logo { - height: 50%; -} - -#intel-logo { - height: 45%; -} - -#ju-logo { - height: 50%; -} - -#illinois-logo { - height: 25%; - padding-top: 5%; -} - -#ugm-logo { - height: 100px; - width: 180px; -} - -#stanford-logo { - height: 50%; -} - -#adelaide-logo { - height: 50%; - padding-top: 5%; -} - -#pitt-logo { - height: 50%; - padding-top: 5%; -} diff --git a/frontend_v2/src/app/components/home/home.component.spec.ts b/frontend_v2/src/app/components/home/home.component.spec.ts deleted file mode 100644 index a2a2f9aea6..0000000000 --- a/frontend_v2/src/app/components/home/home.component.spec.ts +++ /dev/null @@ -1,56 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { ApiService } from '../../services/api.service'; -import { HomeComponent } from './home.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; -import { ActivatedRoute, Router } from '@angular/router'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { HomemainComponent } from './homemain/homemain.component'; -import { PartnersComponent } from './partners/partners.component'; -import { RulesComponent } from './rules/rules.component'; -import { FeaturedChallengesComponent } from './featured-challenges/featured-challenges.component'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { WindowService } from '../../services/window.service'; - -describe('HomeComponent', () => { - let component: HomeComponent; - let fixture: ComponentFixture; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ - HomeComponent, - HeaderStaticComponent, - FooterComponent, - HomemainComponent, - PartnersComponent, - RulesComponent, - FeaturedChallengesComponent, - ], - providers: [GlobalService, AuthService, ApiService, EndpointsService, WindowService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(HomeComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should be created', () => { - expect(component).toBeTruthy(); - }); - - /** - * TODO: Add more test cases - */ -}); diff --git a/frontend_v2/src/app/components/home/home.component.ts b/frontend_v2/src/app/components/home/home.component.ts deleted file mode 100644 index b62ca07274..0000000000 --- a/frontend_v2/src/app/components/home/home.component.ts +++ /dev/null @@ -1,255 +0,0 @@ -import { Component, OnDestroy, OnInit, ViewChildren, QueryList, AfterViewInit, Inject } from '@angular/core'; -import { ApiService } from '../../services/api.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { AuthService } from '../../services/auth.service'; -import { GlobalService } from '../../services/global.service'; -import { Router } from '@angular/router'; -import { InputComponent } from '../../components/utility/input/input.component'; -import { DOCUMENT } from '@angular/common'; - -/** - * Component Class - */ -@Component({ - selector: 'app-home', - templateUrl: './home.component.html', - styleUrls: ['./home.component.scss'], -}) -export class HomeComponent implements OnInit, AfterViewInit, OnDestroy { - challengeCreateRoute = '/challenge-create'; - authRoute = '/auth/login'; - public user = {}; - public challengeList = []; - - /** - * Selected testimonial index - */ - selected = 0; - - /** - * Placeholder text Lorem Ipsum - */ - ipsum: any = - 'Lorem ipsum dolor sit amet,\ - consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; - - /** - * Sample testimonials till the API comes up - */ - testimonials = [ - { text: "At Motional we have been using EvalAI for all our nuScenes benchmark challenges. It is an easy-to-use open source platform on a non-profit basis. The team behind EvalAI consists of a number of accomplished academics and therefore we trust them to preserve the integrity of our test set annotations.", author: "Holger Caesar", org: "Motional", image: "https://www.nuscenes.org/public/images/team/Holger.jpg"}, - { text: "EvalAI has helped our competitions attract talented academic teams. EvalAI has also been responsive about adding new features.", author: "James Hayes", org: "ArgoAI", image: "https://faculty.cc.gatech.edu/~hays/headshots/2017c.jpg"}, - { text: "We used EvalAI for iGibson Challenge, the first visual navigation sim2real challenge in our community. EvalAI's flexible evaluation pipeline enables us to easily set up a rigorous workflow to test the submissions in simulation and on real robots. The workflow is easy for the participants as they just need to submit their solution with one command line and get back evaluation results. It is a great experience to create such a challenge and our participants totally enjoyed it! EvalAI has great potential to support robotics benchmarking on the cloud and provides opportunities to people who don't have access to the hardware.", author: "Fei Xia", org: "Stanford", image: "https://fxia22.github.io/assets/img/feixia.png"}, - ]; - - /** - * Selected testimonial text - */ - testimonialBody = this.testimonials[this.selected]['text']; - - /** - * Selected testimonial author - */ - testimonialAuthor = this.testimonials[this.selected]['author']; - - /** - * Selected testimonial orgName - */ - testimonialOrg = this.testimonials[this.selected]['org']; - - /** - * Selected testimonial author image - */ - testimonialAuthorImage = this.testimonials[this.selected]['image']; - - /** - * Subscribe Form - */ - - SUBSCRIBE_FORM: any = {}; - subscribeForm = 'formgroup'; - - @ViewChildren('formgroup') - components: QueryList; - - authServiceSubscription: any; - - /** - * Constructor. - * @param apiService ApiServiceInjection - * @param endpointService EndPointServiceInjection. - * @param authService AuthServiceInjection. - * @param globalService GlobalService Injection. - * @param router Router Injection. - */ - - constructor( - private apiService: ApiService, - private endpointService: EndpointsService, - private authService: AuthService, - private globalService: GlobalService, - private router: Router, - @Inject(DOCUMENT) private document: Document - ) {} - - ngOnInit() { - this.init(); - this.getChallenge(); - } - - /** - * Set SUBSCRIBE_FORM to this.components after view initialization - */ - ngAfterViewInit() { - this.SUBSCRIBE_FORM[this.subscribeForm] = this.components; - (window).twttr.widgets.load(); - } - - init() { - this.authServiceSubscription = this.authService.change.subscribe((authState) => { - if (authState.isLoggedIn) { - this.user = authState; - } - }); - } - - getChallenge() { - this.apiService.getUrl(this.endpointService.featuredChallengesURL()).subscribe( - (response) => { - this.challengeList = response.results.slice(0, 4); - }, - (err) => { - this.globalService.handleApiError(err); - }, - () => {} - ); - } - - hostChallenge() { - if (this.authService.isAuth) { - this.router.navigate([this.challengeCreateRoute]); - } else { - this.router.navigate([this.authRoute]); - } - } - - /** - * Form submit function (Called after validation). - * @param self context value of this - * Validate Subscribe Form - */ - formValidate(formname) { - this.globalService.formValidate(this.SUBSCRIBE_FORM[this.subscribeForm], this.subscribe, this); - } - - /** - * Subscribe function - POST email to Subscribe URL for evaluation - */ - subscribe(self) { - const SUBSCRIBE_BODY = JSON.stringify({ - email: self.globalService.formValueForLabel(self.SUBSCRIBE_FORM[self.subscribeForm], 'email'), - }); - self.apiService.postUrl(self.endpointService.subscribeURL(), SUBSCRIBE_BODY).subscribe( - (response) => { - // Success Message in response.message - setTimeout(() => self.globalService.showToast('success', response.message, 5), 1000); - }, - // Show Form Error on Failure - (err) => { - if (err.status === 400) { - setTimeout(() => self.globalService.showToast('info', err.error.message, 5), 1000); - } else if (err.error.message) { - setTimeout(() => self.globalService.showToast('error', err.error.message, 5), 1000); - } else { - self.globalService.handleApiError(err); - } - }, - () => {} - ); - } - - /** - * Right arrow clicked - */ - testimonialRight() { - this.selected = this.selected + 1; - if (this.selected >= this.testimonials.length) { - this.selected = 0; - } - } - - /** - * left arrow clicked - */ - testimonialLeft() { - this.selected = this.selected - 1; - if (this.selected < 0) { - this.selected = this.testimonials.length - 1; - } - } - - /** - * Testimonials navigated - */ - testimonialNavigate(direction = 'left') { - const a = this.document.getElementsByClassName('testimonial-body')[0]; - const b = this.document.getElementsByClassName('testimonial-author')[0]; - const c = this.document.getElementsByClassName('testimonial-quotes')[0]; - const d = this.document.getElementsByClassName('testimonial-org')[0]; - if (direction === 'left') { - this.testimonialLeft(); - } else { - this.testimonialRight(); - } - this.flyOut(a, direction, this); - this.disappearAppear(a, this); - this.disappearAppear(b, this); - this.disappearAppear(c, this); - this.disappearAppear(d, this); - } - - /** - * Fly out animation - */ - flyOut = (element, direction, scope) => { - const temp = 15; - setTimeout(function () { - scope.testimonialBody = scope.testimonials[scope.selected]['text']; - scope.testimonialAuthor = scope.testimonials[scope.selected]['author']; - scope.testimonialOrg = scope.testimonials[scope.selected]['org']; - scope.testimonialAuthorImage = scope.testimonials[scope.selected]['image']; - }, 1000); - }; - - /** - * Disappear animation - */ - disappearAppearRecursive = (element, temp) => { - const x = temp - 0.01; - if (x >= 0) { - (function (scope) { - setTimeout(function () { - element.style.opacity = x + ''; - scope.disappearAppearRecursive(element, x); - }, 5); - })(this); - } - }; - - /** - * Disappear animation wrapper - */ - disappearAppear = (element, scope) => { - const temp = 1.0; - this.disappearAppearRecursive(element, temp); - setTimeout(function () { - element.style.opacity = '1'; - }, 1000); - }; - - ngOnDestroy(): void { - if (this.authServiceSubscription) { - this.authServiceSubscription.unsubscribe(); - } - } -} diff --git a/frontend_v2/src/app/components/home/home.module.ts b/frontend_v2/src/app/components/home/home.module.ts deleted file mode 100644 index ab713a9fc2..0000000000 --- a/frontend_v2/src/app/components/home/home.module.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import components -import { FeaturedChallengesComponent } from './featured-challenges/featured-challenges.component'; -import { HomemainComponent } from './homemain/homemain.component'; -import { PartnersComponent } from './partners/partners.component'; -import { RulesComponent } from './rules/rules.component'; -import { HomeComponent } from './home.component'; - -// import module -import { SharedModule } from '../../shared/shared.module'; -import { HomeRoutingModule } from './home-routing.module'; - -@NgModule({ - declarations: [ - HomeComponent, - PartnersComponent, - RulesComponent, - HomemainComponent, - FeaturedChallengesComponent, - ], - imports: [CommonModule, HomeRoutingModule, SharedModule], - exports: [ - HomeComponent, - PartnersComponent, - RulesComponent, - HomemainComponent, - FeaturedChallengesComponent, - ], - schemas: [CUSTOM_ELEMENTS_SCHEMA], -}) -export class HomeModule {} diff --git a/frontend_v2/src/app/components/home/homemain/homemain.component.html b/frontend_v2/src/app/components/home/homemain/homemain.component.html deleted file mode 100644 index d4ca551f5f..0000000000 --- a/frontend_v2/src/app/components/home/homemain/homemain.component.html +++ /dev/null @@ -1,28 +0,0 @@ -
-
- Evaluating state of the art in AI -
-
- EvalAI is an open-source web platform for organizing and participating in AI challenges -
-
-
-
Host a Challenge
-
Participate
-
-
-
-
- - -
-
-
diff --git a/frontend_v2/src/app/components/home/homemain/homemain.component.scss b/frontend_v2/src/app/components/home/homemain/homemain.component.scss deleted file mode 100644 index 6cdce1dd79..0000000000 --- a/frontend_v2/src/app/components/home/homemain/homemain.component.scss +++ /dev/null @@ -1,117 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.home-main-container { - display: block; - .header-tagline { - color: #fff; - font-weight: semibold; - padding: 10px; - } - .header-description { - color: #efefef; - font-weight: $fw-light; - padding: 30px; - font-size: $fs-16; - } - .header-body-buttons { - padding-top: 40px; - padding-bottom: 30px; - width: 50%; - margin: 0 auto; - .btn-left { - margin-left: 0; - } - .btn { - width: 200px; - margin-bottom: 20px !important; - } - } - .top-margin { - margin-top: 30px; - } - .top-margin-extra { - margin-top: 50px; - } - .block-inline { - display: inline-block; - } - - .section-title { - font-size: $fs-36 !important; - color: #fff; - font-weight: semibold; - padding: 10px; - margin-top: 10px; - } - - .section-title-div { - text-align: center; - margin-top: 50px; - } - .header-container { - background-repeat: no-repeat; - background-size: 100% 100%; - width: 100%; - } - .header-container .row { - padding-left: 2%; - padding-right: 2%; - text-align: center; - } - .header-iframe-div { - width: 40%; - margin: 0 auto; - margin-top: 50px; - position: relative; - img { - height: 110%; - position: absolute; - left: 30px; - top: 10px; - z-index: 0; - } - iframe { - z-index: 1; - position: relative; - } - } - - .combinedvideo { - width: 80%; - height: 250px; - margin-top: 50px; - cursor: pointer !important; - -moz-border-radius: 15px; - border-radius: 15px; - border: 1px solid rgba(0, 0, 0, 0.05); - } -} - -@include screen-medium { - .home-main-container { - .header-iframe-div { - width: 50% !important; - margin-top: 100px; - } - } -} - -@include screen-small { - .home-main-container { - .header-iframe-div { - width: 90% !important; - margin-top: 0px; - .combinedvideo { - margin: 30px auto 0 !important; - max-width: 90%; - min-width: 90%; - height: 200px; - } - img { - width: 90%; - left: 0px; - } - } - } -} diff --git a/frontend_v2/src/app/components/home/homemain/homemain.component.spec.ts b/frontend_v2/src/app/components/home/homemain/homemain.component.spec.ts deleted file mode 100644 index 28ca1e117b..0000000000 --- a/frontend_v2/src/app/components/home/homemain/homemain.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { HomemainComponent } from './homemain.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { EndpointsService } from '../../../services/endpoints.service'; - -describe('HomemainComponent', () => { - let component: HomemainComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [HomemainComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(HomemainComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/home/homemain/homemain.component.ts b/frontend_v2/src/app/components/home/homemain/homemain.component.ts deleted file mode 100644 index 7f6e3782e5..0000000000 --- a/frontend_v2/src/app/components/home/homemain/homemain.component.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { AuthService } from '../../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-homemain', - templateUrl: './homemain.component.html', - styleUrls: ['./homemain.component.scss'], -}) -export class HomemainComponent implements OnInit { - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Constructor. - * @param authService AuthService Injection. - */ - constructor( - private authService: AuthService - ) {} - - /** - * Component on initialized - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - } -} diff --git a/frontend_v2/src/app/components/home/partners/partners.component.html b/frontend_v2/src/app/components/home/partners/partners.component.html deleted file mode 100644 index d4b0b472c5..0000000000 --- a/frontend_v2/src/app/components/home/partners/partners.component.html +++ /dev/null @@ -1,38 +0,0 @@ -
-
- -
-
- Who uses EvalAI? -
-
- Several partner organizations already host their challenges on EvalAI -
-
- - - - - - - - - - -
- - - - - - - - - - - - - -
-
-
diff --git a/frontend_v2/src/app/components/home/partners/partners.component.scss b/frontend_v2/src/app/components/home/partners/partners.component.scss deleted file mode 100644 index 18f496f60b..0000000000 --- a/frontend_v2/src/app/components/home/partners/partners.component.scss +++ /dev/null @@ -1,107 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.partner_container { - margin-top: 200px; - position: relative; - background-repeat: no-repeat; - width: 100%; - color: $gray-darker; - * { - transition: all 0.3s ease; - } - .partner-bg { - position: absolute; - right: 0; - top: 0; - z-index: -1; - text-align: right; - height: 100%; - .bg { - width: 95%; - } - } - .row { - padding: 20px; - } - .first { - padding-top: 200px !important; - } - .partner_img { - filter: gray; - -webkit-filter: grayscale(100%); - opacity: 0.3; - - // -webkit-filter: grayscale(100%); - // Safari 6.0 - 9.0 - // filter: grayscale(100%); - width: 160px; - height: auto; - &:hover { - -webkit-filter: none; - filter: none; - opacity: 1; - } - } - .partner_item { - text-align: center; - } - .partner_slider { - overflow-x: auto; - overflow-y: hidden; - padding-bottom: 100px; - margin-top: 30px; - text-align: center; - table { - margin: 0 auto; - width: 90%; - } - } - .partner_text { - color: $gray-darker; - font-weight: $fw-regular; - padding: 20px; - margin-top: 30px; - } -} - -@include screen-medium { - .partner_container { - .partner_img { - width: 140px; - } - .row table { - padding-right: 20px; - } - } -} - -@include screen-small { - .partner_container { - .partner_img { - width: 120px; - } - .partner_container { - background-size: cover !important; - } - .row { - padding-top: 20px; - table { - padding-right: 20px; - } - } - .partner_text { - padding: 20px; - } - - .first { - padding-top: 50px !important; - } - .partner-bg { - .bg { - width: 100%; - height: 100%; - } - } - } -} diff --git a/frontend_v2/src/app/components/home/partners/partners.component.spec.ts b/frontend_v2/src/app/components/home/partners/partners.component.spec.ts deleted file mode 100644 index a5f2fd610e..0000000000 --- a/frontend_v2/src/app/components/home/partners/partners.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PartnersComponent } from './partners.component'; - -describe('PartnersComponent', () => { - let component: PartnersComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [PartnersComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PartnersComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/home/partners/partners.component.ts b/frontend_v2/src/app/components/home/partners/partners.component.ts deleted file mode 100644 index ebc5420535..0000000000 --- a/frontend_v2/src/app/components/home/partners/partners.component.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -/** - * Component Class - */ -@Component({ - selector: 'app-partners', - templateUrl: './partners.component.html', - styleUrls: ['./partners.component.scss'], -}) -export class PartnersComponent implements OnInit { - /** - * Component constructor - */ - constructor() {} - - /** - * Component on initialized - */ - ngOnInit() {} -} diff --git a/frontend_v2/src/app/components/home/rules/rules.component.html b/frontend_v2/src/app/components/home/rules/rules.component.html deleted file mode 100644 index 713d529b8e..0000000000 --- a/frontend_v2/src/app/components/home/rules/rules.component.html +++ /dev/null @@ -1,57 +0,0 @@ -
-
-
-
- -
-
-
-
- -    - HOST -
-
-
- {{ ipsum }} -
-
- -
- -    - PARTICIPATE -
-
-
- {{ ipsum }} -
-
- -
- -    - MAKE SUBMISSIONS -
-
-
- {{ ipsum }} -
-
- -
- -    - ACHIEVE GREAT RESULTS -
-
-
- {{ ipsum }} -
-
-
- Participate -
-
-
-
diff --git a/frontend_v2/src/app/components/home/rules/rules.component.scss b/frontend_v2/src/app/components/home/rules/rules.component.scss deleted file mode 100644 index fec947d0d8..0000000000 --- a/frontend_v2/src/app/components/home/rules/rules.component.scss +++ /dev/null @@ -1,86 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.rules-container { - margin-top: 200px; - margin-bottom: 50px; - .heading { - text-align: left; - } - .rules-image { - width: 80%; - display: inline-block; - vertical-align: top; - background-size: 100% 100%; - text-align: center; - } - .rules-content { - display: inline-block; - } - - .rule-laptop { - height: 300px; - margin-top: 150px; - margin-bottom: 33% !important; - } - .rule-img { - height: 90px; - margin-left: 5px; - } - .rule-title { - line-height: 90px; - vertical-align: top; - font-size: $fs-18; - font-weight: $fw-bolder; - color: $gray-darker; - } - .rule-text { - padding: 5px; - margin-left: 20px; - padding-right: 20px; - margin-bottom: 20px; - font-size: $fs-16; - font-weight: $fw-regular; - color: $gray-darker; - text-align: left; - line-height: 20px; - letter-spacing: 0.5px; - } -} - -@include screen-medium { - .rules-container { - .rules-image { - width: 100%; - } - .rule-laptop { - height: 200px !important; - margin-top: 100px; - } - } -} - -@include screen-small { - .rules-container { - .rules-image { - width: 100%; - display: block !important; - } - .rules-content { - display: block !important; - padding-left: 20px !important; - } - .rules-container .participate { - margin-left: 50px; - } - .rules-container .row .btn-fire { - width: 50% !important; - min-width: 50% !important; - } - .rule-laptop { - height: 200px !important; - margin-top: 150px; - margin-bottom: 100px; - } - } -} diff --git a/frontend_v2/src/app/components/home/rules/rules.component.spec.ts b/frontend_v2/src/app/components/home/rules/rules.component.spec.ts deleted file mode 100644 index 945b4367d2..0000000000 --- a/frontend_v2/src/app/components/home/rules/rules.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { RulesComponent } from './rules.component'; - -describe('RulesComponent', () => { - let component: RulesComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [RulesComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(RulesComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/home/rules/rules.component.ts b/frontend_v2/src/app/components/home/rules/rules.component.ts deleted file mode 100644 index 99221f89eb..0000000000 --- a/frontend_v2/src/app/components/home/rules/rules.component.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -/** - * Component Class - */ -@Component({ - selector: 'app-rules', - templateUrl: './rules.component.html', - styleUrls: ['./rules.component.scss'], -}) -export class RulesComponent implements OnInit { - /** - * Placeholder text Lorem Ipsum - */ - ipsum: any = - 'Lorem ipsum dolor sit amet,\ - consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; - - /** - * Component Constructor - */ - constructor() {} - - /** - * Component on initialized - */ - ngOnInit() {} -} diff --git a/frontend_v2/src/app/components/nav/footer/footer.component.html b/frontend_v2/src/app/components/nav/footer/footer.component.html deleted file mode 100644 index 0aff778f6e..0000000000 --- a/frontend_v2/src/app/components/nav/footer/footer.component.html +++ /dev/null @@ -1,59 +0,0 @@ - diff --git a/frontend_v2/src/app/components/nav/footer/footer.component.scss b/frontend_v2/src/app/components/nav/footer/footer.component.scss deleted file mode 100644 index 1aedaf5338..0000000000 --- a/frontend_v2/src/app/components/nav/footer/footer.component.scss +++ /dev/null @@ -1,39 +0,0 @@ -@import 'styles/variables'; - -.ev-footer { - position: relative; - width: 100%; - bottom: 0; - left: 0; -} - -.dashboard-footer { - width: 100%; - bottom: 0; - left: 0; -} - -/* media queries */ - -@media only screen and(min-width:768px) and(max-width:$med-screen) { - .dashboard-footer { - width: 100%; - padding-left: 220px; - } -} - -@media only screen and(min-width:300px) and(max-width:$small-screen) { - .github-buttons { - margin-left: 60px; - } -} - -@media only screen and(min-height: 650px) and(max-height:700px) { - .github-buttons { - li { - iframe { - height: 20px; - } - } - } -} diff --git a/frontend_v2/src/app/components/nav/footer/footer.component.spec.ts b/frontend_v2/src/app/components/nav/footer/footer.component.spec.ts deleted file mode 100644 index bbf391b0f1..0000000000 --- a/frontend_v2/src/app/components/nav/footer/footer.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { FooterComponent } from './footer.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { ActivatedRoute, Router } from '@angular/router'; - -describe('FooterComponent', () => { - let component: FooterComponent; - let fixture: ComponentFixture; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [FooterComponent], - imports: [RouterTestingModule, HttpClientModule], - providers: [GlobalService, ApiService], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(FooterComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/nav/footer/footer.component.ts b/frontend_v2/src/app/components/nav/footer/footer.component.ts deleted file mode 100644 index 29f2db0097..0000000000 --- a/frontend_v2/src/app/components/nav/footer/footer.component.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { Component, OnInit, Inject, Input } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { DOCUMENT } from '@angular/common'; -import { Router } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-footer', - templateUrl: './footer.component.html', - styleUrls: ['./footer.component.scss'], -}) -export class FooterComponent implements OnInit { - @Input() isDash = false; - - year: any; - - /** - * Router local/public instance - */ - localRouter: any; - - /** - * URLs where header is transparent - */ - transparentHeaderUrls = ['', '/']; - - /** - * Is router at '/' - */ - atHome = true; - - /** - * Constructor. - * @param apiService ApiService Injection. - * @param document Window document Injection. - * @param globalService GlobalService Injection. - * @param router Router Injection. - */ - constructor( - private apiService: ApiService, - @Inject(DOCUMENT) private document: Document, - private globalService: GlobalService, - private router: Router - ) {} - - /** - * Component on intialized. - */ - ngOnInit() { - this.localRouter = this.router; - this.atHome = true; - if (!this.transparentHeaderUrls.includes(this.router.url)) { - this.atHome = false; - } - - this.year = new Date().getFullYear(); - } - - /** - * Subscribe for Notifications. - */ - getNotifications() { - const EMAIL = this.document.getElementById('notification-email')['value']; - if (EMAIL && this.globalService.validateEmail(EMAIL)) { - this.formSubmit(EMAIL); - } else { - this.globalService.showToast('error', 'Invalid Email!'); - } - } - - /** - * Form Submit function. (called after validation) - * @param email email string - */ - formSubmit(email: string) { - // TODO get notified API path - const API_PATH = ''; - const BODY = { email: email }; - const SELF = this; - this.apiService.postUrl(API_PATH, JSON.stringify(BODY)).subscribe( - (data) => { - SELF.globalService.showToast('success', 'Subscription successful!'); - }, - (err) => { - console.error(err); - SELF.globalService.showToast('error', 'Subscription failed!'); - }, - () => {} - ); - } - - /** - * Navigate to URL. - * @param url destination URL path. - */ - navigateTo(url) { - this.router.navigate([url]); - } -} diff --git a/frontend_v2/src/app/components/nav/header-static/header-static.component.html b/frontend_v2/src/app/components/nav/header-static/header-static.component.html deleted file mode 100644 index 8c619e3ce2..0000000000 --- a/frontend_v2/src/app/components/nav/header-static/header-static.component.html +++ /dev/null @@ -1,111 +0,0 @@ -
- -
diff --git a/frontend_v2/src/app/components/nav/header-static/header-static.component.scss b/frontend_v2/src/app/components/nav/header-static/header-static.component.scss deleted file mode 100644 index b5cff4c46e..0000000000 --- a/frontend_v2/src/app/components/nav/header-static/header-static.component.scss +++ /dev/null @@ -1,92 +0,0 @@ -@import 'styles/variables'; - -.org-link { - margin-right: 30px; -} - -.main-header { - position: relative; - z-index: 999; - width: 100%; - nav { - background-color: rgba(255, 255, 255, 0.9); - box-shadow: 0 0 0 0 #000; - position: fixed; - top: 0; - left: 0; - padding: 0 100px; - transition: all 0.1s ease-in-out; - a.main-header-link { - color: $med-black; - font-weight: $rob-reg; - transition: all 0.2s ease-in-out; - } - a.main-header-link:hover { - color: $link-hover-dark; - background-color: rgba(0, 0, 0, 0); - } - a.light-link { - color: $med-link; - transition: all 0.2s ease-in-out; - } - a.light-link:hover { - color: $light-link; - } - a.active { - color: $highlight; - background-color: rgba(0, 0, 0, 0); - } - } - nav.grad-shadow-1 { - box-shadow: 0 0 10px $light-black; - } -} - -.expand-menu { - width: 200px; - transform: translateX(0px); -} - -a.evalai-logo { - width: 60px; - img { - width: 100%; - vertical-align: middle; - } -} - -.background { - background-color: $dark-gray; -} - -@media only screen and (max-width: $med-screen) { - .main-header { - nav { - padding: 0px 30px; - } - } - .side-nav .userView { - padding: 28px; - } - - .side-nav li { - float: none !important; - } - - .side-nav li a i { - float: none !important; - } -} - -#ev-dropdown li a:hover { - background-color: white; - color: $dark-gray; -} - -a.evalai-logo { - width: 60px; - img { - width: 100%; - vertical-align: middle; - } -} diff --git a/frontend_v2/src/app/components/nav/header-static/header-static.component.spec.ts b/frontend_v2/src/app/components/nav/header-static/header-static.component.spec.ts deleted file mode 100644 index b47b528564..0000000000 --- a/frontend_v2/src/app/components/nav/header-static/header-static.component.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HeaderStaticComponent } from './header-static.component'; -import { ActivatedRoute, Router } from '@angular/router'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('HeaderStaticComponent', () => { - let component: HeaderStaticComponent; - let fixture: ComponentFixture; - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [HeaderStaticComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(HeaderStaticComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/nav/header-static/header-static.component.ts b/frontend_v2/src/app/components/nav/header-static/header-static.component.ts deleted file mode 100644 index 3341482f9a..0000000000 --- a/frontend_v2/src/app/components/nav/header-static/header-static.component.ts +++ /dev/null @@ -1,190 +0,0 @@ -import { Component, OnInit, OnDestroy, ChangeDetectorRef, HostListener, ViewChild, ElementRef } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { filter } from 'rxjs/internal/operators'; -import { Router, NavigationEnd } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-header-static', - templateUrl: './header-static.component.html', - styleUrls: ['./header-static.component.scss'], -}) -export class HeaderStaticComponent implements OnInit, OnDestroy { - user = { username: '' }; - - /** - * Is router at '/' - */ - atHome = true; - - /** - * Scroll position - */ - scrolledState = false; - - /** - * Is header menu expanded - */ - isMenuExpanded = true; - - /** - * Global Service subscription - */ - globalServiceSubscription: any; - - /** - * Authentication Service subscription - */ - authServiceSubscription: any; - - /** - * Current Authentication state - */ - authState: any; - - /** - * Is user Logged in - */ - isLoggedIn: any = false; - - /** - * Current name of tab which needs to be active - */ - tabHighlight = 'allChallenges'; - - /** - * Returns true if the string is not a number - */ - isChallengeComponent = false; - - /** - * Inner width - */ - public innerWidth: any; - - @ViewChild('navContainer') navContainer: ElementRef; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param router Router Injection. - * @param ref Angular Change Detector Injection. - * @param authService AuthService Injection. - * @param document Window document Injection. - */ - constructor( - private globalService: GlobalService, - private router: Router, - private ref: ChangeDetectorRef, - public authService: AuthService - ) { - this.authState = authService.authState; - } - - /** - * Update View Elements (called after onInit). - */ - updateElements() { - this.atHome = true; - this.globalServiceSubscription = this.globalService.currentScrolledState.subscribe((scrolledState) => { - this.scrolledState = scrolledState; - }); - } - - /** - * Component on intialized. - */ - ngOnInit() { - this.updateElements(); - this.checkInnerWidth(); - - this.router.events.pipe(filter((event) => event instanceof NavigationEnd)).subscribe((event) => { - if (event) { - if (this.router.url.split('/')[length] === 'all') { - this.tabHighlight = 'allChallenges'; - this.globalService.changeTabActiveStatus('allChallenges'); - } else if (this.router.url.split('/')[1] === 'profile') { - this.tabHighlight = 'profile'; - this.globalService.changeTabActiveStatus('profile'); - } - } - }); - this.isChallengeComponent = isNaN(parseInt(this.router.url.split('/')[length], 10)); - - this.globalService.nameTabHighlight.subscribe((tabHighlight) => { - this.tabHighlight = tabHighlight; - }); - - this.authServiceSubscription = this.authService.change.subscribe((authState) => { - this.authState = authState; - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - if (this.authState.isLoggedIn) { - this.user = this.authState; - } - }); - } - - @HostListener('window:resize', ['$event']) - onResize(event) { - this.checkInnerWidth(); - } - - /** - * Redirect to home if not at home (/). - */ - sendMeHome() { - this.atHome = true; - this.ref.detectChanges(); - this.router.navigate(['']); - } - - /** - * Navigate to URL. - * @param path destination URL - */ - navigateTo(path) { - this.isMenuExpanded = false; - if (path === '/auth/login') { - this.globalService.storeData('redirect', path); - } - this.router.navigate([path]); - } - - /** - * Component on destroyed. - */ - ngOnDestroy() { - if (this.globalServiceSubscription) { - this.globalServiceSubscription.unsubscribe(); - } - if (this.authServiceSubscription) { - this.authServiceSubscription.unsubscribe(); - } - } - - /** - * Perform Log-out. - */ - logOut() { - this.authService.logOut(); - } - - /** - * Flag for expanding navigation menu on the header. - */ - menuExpander() { - this.isMenuExpanded = !this.isMenuExpanded; - } - - checkInnerWidth() { - this.innerWidth = window.innerWidth; - if (this.innerWidth > 810) { - this.isMenuExpanded = true; - } - } -} diff --git a/frontend_v2/src/app/components/not-found/not-found.component.html b/frontend_v2/src/app/components/not-found/not-found.component.html deleted file mode 100644 index fd75856f39..0000000000 --- a/frontend_v2/src/app/components/not-found/not-found.component.html +++ /dev/null @@ -1,31 +0,0 @@ -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 404 -
-
- Page Not Found -
-
-
- -
- Maybe eval.ai is what you were looking for. -
-
-
\ No newline at end of file diff --git a/frontend_v2/src/app/components/not-found/not-found.component.scss b/frontend_v2/src/app/components/not-found/not-found.component.scss deleted file mode 100644 index d63629389b..0000000000 --- a/frontend_v2/src/app/components/not-found/not-found.component.scss +++ /dev/null @@ -1,434 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.not-found-container { - background: $red-light; - color: white; - overflow: hidden; - position: fixed; - top: 0; - width: 100%; - left: 0; - height: 100%; - font-weight: $fw-light; - .link { - position: absolute; - bottom: 0; - text-align: center; - left: 0; - margin: 20px; - width: 100%; - a { - color: $gray-light; - font-weight: $fw-regular; - &:hover { - color: $red-dark; - } - } - } - .c { - text-align: center; - display: block; - position: relative; - width: 80%; - margin: 100px auto; - } - ._404 { - font-size: 220px; - position: relative; - display: inline-block; - z-index: 2; - height: 250px; - letter-spacing: 15px; - } - ._1 { - text-align: center; - display: block; - position: relative; - letter-spacing: 12px; - font-size: 4em; - line-height: 80%; - margin: 20px; - } - ._2 { - text-align: center; - display: block; - position: relative; - font-size: 20px; - margin: 20px; - } - .text { - font-size: 70px; - text-align: center; - position: relative; - display: inline-block; - margin: 19px 0px 0px 0px; - /* top: 256.301px; */ - z-index: 3; - width: 100%; - line-height: 1.2em; - display: inline-block; - } - .right { - float: right; - width: 60%; - } - - hr { - padding: 0; - border: none; - border-top: 5px solid white; - color: white; - text-align: center; - margin: 0px auto; - width: 420px; - height: 10px; - z-index: -10; - } - - .cloud { - width: 350px; - height: 120px; - background: white; - - border-radius: 100px; - -webkit-border-radius: 100px; - -moz-border-radius: 100px; - - position: absolute; - margin: 120px auto 20px; - z-index: 1; - transition: ease 1s; - } - - .cloud:after, - .cloud:before { - content: ''; - position: absolute; - background: #fff; - z-index: -1; - } - - .cloud:after { - width: 100px; - height: 100px; - top: -50px; - left: 50px; - - border-radius: 100px; - -webkit-border-radius: 100px; - -moz-border-radius: 100px; - } - - .cloud:before { - width: 180px; - height: 180px; - top: -90px; - right: 50px; - - border-radius: 200px; - -webkit-border-radius: 200px; - -moz-border-radius: 200px; - } - - .x1 { - top: -50px; - left: 100px; - -webkit-transform: scale(0.3); - -moz-transform: scale(0.3); - transform: scale(0.3); - opacity: 0.9; - -webkit-animation: moveclouds 15s linear infinite; - -moz-animation: moveclouds 15s linear infinite; - -o-animation: moveclouds 15s linear infinite; - } - - .x1_5 { - top: -80px; - left: 250px; - -webkit-transform: scale(0.3); - -moz-transform: scale(0.3); - transform: scale(0.3); - -webkit-animation: moveclouds 17s linear infinite; - -moz-animation: moveclouds 17s linear infinite; - -o-animation: moveclouds 17s linear infinite; - } - - .x2 { - left: 250px; - top: 30px; - -webkit-transform: scale(0.6); - -moz-transform: scale(0.6); - transform: scale(0.6); - opacity: 0.6; - -webkit-animation: moveclouds 25s linear infinite; - -moz-animation: moveclouds 25s linear infinite; - -o-animation: moveclouds 25s linear infinite; - } - - .x3 { - left: 250px; - bottom: -70px; - - -webkit-transform: scale(0.6); - -moz-transform: scale(0.6); - transform: scale(0.6); - opacity: 0.8; - - -webkit-animation: moveclouds 25s linear infinite; - -moz-animation: moveclouds 25s linear infinite; - -o-animation: moveclouds 25s linear infinite; - } - - .x4 { - left: 470px; - botttom: 20px; - - -webkit-transform: scale(0.75); - -moz-transform: scale(0.75); - transform: scale(0.75); - opacity: 0.75; - - -webkit-animation: moveclouds 18s linear infinite; - -moz-animation: moveclouds 18s linear infinite; - -o-animation: moveclouds 18s linear infinite; - } - - .x5 { - left: 200px; - top: 300px; - - -webkit-transform: scale(0.5); - -moz-transform: scale(0.5); - transform: scale(0.5); - opacity: 0.8; - - -webkit-animation: moveclouds 20s linear infinite; - -moz-animation: moveclouds 20s linear infinite; - -o-animation: moveclouds 20s linear infinite; - } - @include keyframes(moveclouds) { - 0% { - margin-left: 1000px; - } - 100% { - margin-left: -1000px; - } - } -} - -@include screen-small { - .not-found-container { - ._404 { - font-size: 150px; - } - } -} - - -/* Error-404 styles */ - -.fof-wrapper { - position: absolute; - text-align: center; - width: 100% ; - height: 100%; - left: 0; - background: #202028; - color: #9A958A; - padding-top: 100px; -} - -.fof-error-container { - width: 100% ; - height: 100%; - font-family: "Roboto"; - font-style: normal; -} - -.fof-error { - postion: absolute; - left: 0; - color: #BDB9A8; - font-size: 80px; - text-align: left; - font-weight: bold; - padding-top: 130px; - width: 100%; - height: 50px; -} - -.fof-message { - postion: absolute; - left: 0; - text-align: left; - font-size: 18px; - padding-top: 90px; - width: 100%; -} - -.fof-home { - position: absolute; - left: 0; - right: 0; - bottom: 0; - margin-bottom: 15px; - font-size: 15px; - font-family: "Roboto"; - color: #BDB9A8; -} - -.home-link{ - color: #FFFFFF; -} - -.owl-pic{ - position: absolute; - right: 10%; - width: 200px; - height: 200px; - top: 20%; - background: url('../../../assets/images/owl.png'); -} - -.fof-stars{ - position: absolute; - width: 3px; - height: 3px; - border-radius: 50%; - background: #ffffff; - margin-top: 100px; -} - -.fof-grad { - margin: 0 auto; - position: relative; - overflow: hidden; - height: 450px; - width: 450px; - border: none; - border-radius: 50%; - background: #202028; - background: -webkit-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%,#212129 60%,#202028 100%,#202028 100%); /* For Safari 5.1 to 6.0 */ - background: -o-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); /* For Opera 11.6 to 12.0 */ - background: -moz-radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); /* For Fx 3.6 to 15 */ - background: radial-gradient(circle, #9A958A 22%,#5E5D5A 45%, #212129 60%,#202028 100%,#202028 100%); -} - -/* div Stars */ - -#star-1{ - right: 30%; -} - -#star-2{ - left: 20%; - top: 5%; -} - -#star-3{ - right: 20%; - bottom: 40%; -} - -#star-4{ - right: 60%; - bottom: 25%; -} - -#star-5{ - right: 50%; - bottom: 45%; -} - -#star-6{ - left: 40%; - top: 10%; -} - -#star-7{ - left: 30%; - bottom: 50%; -} - -#star-8{ - left: 25%; - bottom: 15%; -} - -#star-9{ - left: 60%; - bottom: 25%; -} - -#star-10{ - right: 40%; - top: 6%; -} - -#star-11{ - left: 30%; - top: 3%; -} - -#star-12{ - left: 20%; - bottom: 30%; -} - -/* Media Queries */ - -@media only screen and(min-width: 768px) and(max-width: $med-screen){ - .fof-wrapper{ - padding-top: 200px; - } -} - -@media only screen and(min-width: 569px) and(max-width: 767px){ - .fof-wrapper{ - padding-top: 150px; - } - .fof-grad{ - margin: 0 auto; - position: relative; - overflow: hidden; - height: 360px; - width: 360px; - } - .fof-home{ - font-size: 12px; - } - .fof-message{ - font-size: 14px; - padding-top: 70px; - padding-left: 5px; - } - .fof-error{ - font-size: 60px; - padding-top: 130px; - } -} - -@media only screen and(min-width:320px) and(max-width:568px){ - .fof-wrapper{ - padding-top: 150px; - } - .fof-grad{ - margin: 0 auto; - position: relative; - overflow: hidden; - height: 320px; - width: 320px; - } - .fof-home{ - font-size: 12px; - } - .fof-message{ - font-size: 12px; - padding-top: 60px; - } - .fof-error{ - font-size: 50px; - padding-top: 110px; - } -} diff --git a/frontend_v2/src/app/components/not-found/not-found.component.spec.ts b/frontend_v2/src/app/components/not-found/not-found.component.spec.ts deleted file mode 100644 index 0dc62497f3..0000000000 --- a/frontend_v2/src/app/components/not-found/not-found.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { NotFoundComponent } from './not-found.component'; - -describe('NotFoundComponent', () => { - let component: NotFoundComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [NotFoundComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(NotFoundComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/not-found/not-found.component.ts b/frontend_v2/src/app/components/not-found/not-found.component.ts deleted file mode 100644 index 8f7b48ceb5..0000000000 --- a/frontend_v2/src/app/components/not-found/not-found.component.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -/** - * Component Class - */ -@Component({ - selector: 'app-not-found', - templateUrl: './not-found.component.html', - styleUrls: ['./not-found.component.scss'], -}) -export class NotFoundComponent implements OnInit { - /** - * Constructor. - */ - constructor() {} - - /** - * Component on intialized. - */ - ngOnInit() {} -} diff --git a/frontend_v2/src/app/components/our-team/our-team-routing.module.ts b/frontend_v2/src/app/components/our-team/our-team-routing.module.ts deleted file mode 100644 index 9f650ac181..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { OurTeamComponent } from './our-team.component'; - -const routes: Routes = [ - { - path: '', - component: OurTeamComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class OurTeamRoutingModule {} diff --git a/frontend_v2/src/app/components/our-team/our-team.component.html b/frontend_v2/src/app/components/our-team/our-team.component.html deleted file mode 100644 index 2591d1e0e5..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team.component.html +++ /dev/null @@ -1,92 +0,0 @@ - -
-
-
- {{ coreTeamType }} -
-
-

{{ noTeamDisplay }}

- -
-
- -
- -
-
- -
-
- -
-
-
- {{ data.name }} -
-
{{ data.description }}
-
-
-
-
- -
- {{ contributingTeamType }}
-
-
-
-
- -
- -
-
- -
-
- -
-
-
- {{ data.name }} -
-
{{ data.description }}
-
-
-
-
-
-
- - diff --git a/frontend_v2/src/app/components/our-team/our-team.component.scss b/frontend_v2/src/app/components/our-team/our-team.component.scss deleted file mode 100644 index c392ac3733..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team.component.scss +++ /dev/null @@ -1,184 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.our-team-container { - max-width: 80rem; - min-height: 100vh; - margin: 0 auto; - margin-top: auto; - margin-bottom: 50px; - padding: 20px; - text-align: center; - .our-team-title { - color: $gray-dark; - font-size: $fs-36; - margin-bottom: 30px; - } - - .exist-team-card { - ul { - &.collapsible { - border: 0; - box-shadow: none; - li { - box-shadow: 0 0 5px #e0e0e0; - } - } - li { - margin: 20px 0px; - min-height: 40px; - .collapsible-header { - border-bottom: 0; - line-height: initial; - min-height: initial; - padding: 10px 5px; - i { - display: inline-block; - float: none; - font-size: initial; - line-height: 40px; - margin-right: 0; - text-align: center; - width: 2rem; - } - } - .collapsible-body { - background-color: #fafafa; - border-top: 1px solid #e0e0e0; - padding: 10px 40px; - p { - padding: 3px 0; - } - } - } - } - i.list-icon { - line-height: 25px; - } - } - - .new-team-card { - padding-bottom: 40px; - } - - .pagination { - margin-top: 20px; - } - - .pagination-title { - padding: 0px 10px; - } - - div.show-member-title { - width: calc(100% - 35px); - float: right; - } - - .page-msg { - margin-top: 16px; - } - - .team-card { - position: relative; - background: $gray-dark; - max-width: 235px; - height: 270px; - border-radius: 6px; - @include box-shadow(0px, 0px, 10px, 5px, $overlay-light); - overflow: hidden; - margin-bottom: 30px; - margin-left: auto; - margin-right: auto; - transition: all 0.2s ease-in-out; - &:hover { - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - } - } - - .team-bg { - position: absolute; - top: -40px; - left: -50px; - background: $blue-overlay-dark; - height: 100%; - img { - width: 130%; - opacity: 0.15; - } - } - - .team-bg-over { - position: absolute; - bottom: -7px; - width: 100%; - img { - width: 100%; - } - } - - .team-profile { - display: block; - width: 60px; - height: 60px; - border-radius: 50%; - overflow: hidden; - position: absolute; - bottom: 25px; - left: 15px; - box-shadow: 0px 4px 8px #989898; - img { - width: 100%; - } - } - - .team-player { - position: absolute; - bottom: 14px; - text-align: right; - padding-left: 50px; - right: 15px; - .text-dark-black { - color: $dark-black; - font-size: $fs-15; - font-weight: $fw-semibold; - } - .text-med-black { - color: $dark-black; - font-size: $fs-13; - } - h4 { - font-size: $fs-16; - } - } - - .team-link-head { - padding: 10px 5px 10px 5px; - position: absolute; - width: 100%; - top: 0; - z-index: 10; - margin-left: 0px; - .link-team-user { - color: $blue-light; - padding-right: 0px; - font-size: 12px; - line-height: 25px; - } - span { - padding-right: 10px; - a { - color: $gray-light; - &:hover { - color: #fff; - } - } - font-size: 14px; - transition: all 0.2s ease-in-out; - } - } - - .team-heading { - margin-bottom: 30px; - color: #9d9d9d; - } -} diff --git a/frontend_v2/src/app/components/our-team/our-team.component.spec.ts b/frontend_v2/src/app/components/our-team/our-team.component.spec.ts deleted file mode 100644 index 01584f64cc..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team.component.spec.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { OurTeamComponent } from './our-team.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../nav/footer/footer.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ApiService } from '../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('OurTeamComponent', () => { - let component: OurTeamComponent; - let fixture: ComponentFixture; - let endpointsService; - let apiService; - let endpointsServiceSpy; - let fetchOurTeamMembersSpy; - let apiServiceSpy; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [OurTeamComponent, FooterComponent, HeaderStaticComponent], - imports: [HttpClientModule, RouterTestingModule], - providers: [GlobalService, AuthService, EndpointsService, ApiService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(OurTeamComponent); - endpointsService = TestBed.get(EndpointsService); - apiService = TestBed.get(ApiService); - component = fixture.componentInstance; - fetchOurTeamMembersSpy = spyOn(component, 'fetchOurTeamMembers').and.callThrough(); - endpointsServiceSpy = spyOn(endpointsService, 'ourTeamURL').and.callThrough(); - apiServiceSpy = spyOn(apiService, 'getUrl').and.callThrough(); - - expect(fetchOurTeamMembersSpy).not.toHaveBeenCalled(); - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('should call fetchOurTeamMembers method on init', () => { - expect(fetchOurTeamMembersSpy).toHaveBeenCalledTimes(1); - expect(endpointsServiceSpy).toHaveBeenCalled(); - const expectedTeamUrl = 'web/team/'; - expect(apiServiceSpy).toHaveBeenCalledWith(expectedTeamUrl); - }); -}); diff --git a/frontend_v2/src/app/components/our-team/our-team.component.ts b/frontend_v2/src/app/components/our-team/our-team.component.ts deleted file mode 100644 index 502f12b494..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team.component.ts +++ /dev/null @@ -1,221 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { ApiService } from '../../services/api.service'; -import { GlobalService } from '../../services/global.service'; -import { EndpointsService } from '../../services/endpoints.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-our-team', - templateUrl: './our-team.component.html', - styleUrls: ['./our-team.component.scss'], -}) -export class OurTeamComponent implements OnInit { - /** - * Constructor. - * @param apiService ApiService Injection. - * @param globalService GlobalService Injection. - * @param endpointsService EndpointService Injection. - */ - constructor( - private apiService: ApiService, - private globalService: GlobalService, - private endpointsService: EndpointsService, - private logger: NGXLogger - ) {} - - /** - * Core team type - */ - coreTeamType: any = ''; - - /** - * Core team type - */ - coreTeamList: any = []; - - /** - * Contributing team type - */ - contributingTeamType: any = ''; - - /** - * Contributing team type - */ - contributingTeamList: any = []; - - /** - * Core team details - */ - coreTeamDetails: any = []; - - /** - * Contributing team details - */ - contributingTeamDetails: any = []; - - /** - * No team found - */ - noTeamDisplay: any = ''; - - /** - * Component on intialized. - */ - ngOnInit() { - this.fetchOurTeamMembers(); - } - - /** - * Fetching team members - */ - fetchOurTeamMembers() { - const API_PATH = this.endpointsService.ourTeamURL(); - const SELF = this; - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - let results = data; - if (results.length === 0) { - // Hard coding our team members - results = [ - { - name: 'Rishabh Jain', - description: 'Team Lead', - email: 'rishabhjain@gatech.edu', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/IMG_6613.JPG', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/Rishabh_Jain.jpeg', - github_url: 'https://github.com/RishabhJain2018', - linkedin_url: 'https://www.linkedin.com/in/rishabhjain1795/', - personal_website: 'https://rishabhjain2018.github.io/', - team_type: 'Core Team', - }, - { - name: 'Deshraj Yadav', - description: 'Team Lead', - email: 'deshraj@vt.edu', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/bd8d1fe0-4e9a-40a0-9584-dd9fa7894a79.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/15775051_1334147123295477_4609249739680158814_o.jpg', - github_url: 'http://github.com/deshraj', - linkedin_url: 'https://www.linkedin.com/in/deshraj-yadav-34325975', - personal_website: 'http://deshraj.github.io', - team_type: 'Core Team', - }, - { - name: 'Harsh Agrawal', - description: 'Project Manager', - email: 'h.agrawal092@gmail.com', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/dp1.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/1965514_10152523766307739_2542282903877038889_o.jpg', - github_url: 'https://github.com/dexter1691', - linkedin_url: 'https://www.linkedin.com/in/harsh092/', - personal_website: 'https://dexter1691.github.io/', - team_type: 'Core Team', - }, - { - name: 'Devi Parikh', - description: 'Advisor', - email: 'parikh@gatech.edu', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/devi.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/15965604_10101311300574979_1155748140016787470_n.jpg', - github_url: 'null', - linkedin_url: 'https://www.linkedin.com/in/devi-parikh-71613a8/', - personal_website: 'https://filebox.ece.vt.edu/~parikh/', - team_type: 'Core Team', - }, - { - name: 'Dhruv Batra', - description: 'Advisor', - email: 'dbatra@gatech.edu', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/dhruv.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/12370908_10100934153600539_2116221676470914938_o.jpg', - github_url: 'https://github.com/dhruvbatra', - linkedin_url: 'null', - personal_website: 'https://filebox.ece.vt.edu/~dbatra/', - team_type: 'Core Team', - }, - { - name: 'Taranjeet', - description: 'Lead Backend Developer', - email: 'reachtotj@gmail.com', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/4302268.jpeg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/10178044_664063280345448_7169289118796237_n.jpg', - github_url: 'http://github.com/trojan', - linkedin_url: 'https://www.linkedin.com/in/taranjeet-singh-1577b858/', - personal_website: 'http://trojan.github.io/', - team_type: 'Contributors', - }, - { - name: 'Prithvijit Chattopadhyay', - description: 'Backend Developer', - email: 'prithvijitchattopadhyay@gmail.com', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/prithv1.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/18056475_1816935868332485_6070888708209307482_o.jpg', - github_url: 'https://github.com/prithv1', - linkedin_url: 'https://www.linkedin.com/in/prithvijit-chattopadhyay-260b2b54/', - personal_website: 'https://prithv1.github.io/', - team_type: 'Contributors', - }, - { - name: 'Akash Jain', - description: 'Lead UI/UX', - email: 'akajain993@gmail.com', - headshot: - 'https://evalai.s3.amazonaws.com/media/headshots/' + - 'AAEAAQAAAAAAAAfFAAAAJDdjZTQ5MThmLTJlOTMtNGMxMS05NTFjLTI3NmZiMTA0ZDE3OQ.jpg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/13227264_948001968631519_3882689880500687242_o.jpg', - github_url: 'https://github.com/aka-jain', - linkedin_url: 'https://www.linkedin.com/in/jainakashin/', - personal_website: 'http://www.jainakash.in/', - team_type: 'Contributors', - }, - { - name: 'Shiv Baran', - description: 'Lead Frontend', - email: 'spyshiv@gmail.com', - headshot: 'https://evalai.s3.amazonaws.com/media/headshots/7015220.jpeg', - background_image: - 'https://evalai.s3.amazonaws.com/media/bg-images/12362825_836486476462466_3609928140833176026_o.jpg', - github_url: 'https://github.com/spyshiv', - linkedin_url: 'https://www.linkedin.com/in/shivbaran1/', - personal_website: 'http://spyshiv.github.io/', - team_type: 'Contributors', - } - ]; - } - if (results.length !== 0) { - const CORE_TEAM_LIST = []; - const CONTRIBUTING_TEAM_LIST = []; - for (let i = 0; i < results.length; i++) { - if (results[i].team_type === 'Core Team') { - SELF.coreTeamType = results[i].team_type; - SELF.coreTeamList = CORE_TEAM_LIST.push(results[i]); - } else if (results[i].team_type === 'Contributors') { - SELF.contributingTeamType = results[i].team_type; - SELF.contributingTeamList = CONTRIBUTING_TEAM_LIST.push(results[i]); - } - SELF.coreTeamDetails = CORE_TEAM_LIST; - SELF.contributingTeamDetails = CONTRIBUTING_TEAM_LIST; - } - } else { - SELF.noTeamDisplay = 'Team will be updated very soon !'; - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => this.logger.info('Ongoing challenges fetched!') - ); - } -} diff --git a/frontend_v2/src/app/components/our-team/our-team.module.ts b/frontend_v2/src/app/components/our-team/our-team.module.ts deleted file mode 100644 index 0dd6a0f6a4..0000000000 --- a/frontend_v2/src/app/components/our-team/our-team.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { OurTeamComponent } from './our-team.component'; - -// import module -import { OurTeamRoutingModule } from './our-team-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [OurTeamComponent], - imports: [CommonModule, OurTeamRoutingModule, SharedModule], - exports: [OurTeamComponent], -}) -export class OurTeamModule {} diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied-routing.module.ts b/frontend_v2/src/app/components/permission-denied/permission-denied-routing.module.ts deleted file mode 100644 index b971c56212..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { PermissionDeniedComponent } from './permission-denied.component'; - -const routes: Routes = [ - { - path: '', - component: PermissionDeniedComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class PermissionDeniedRoutingModule {} diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied.component.html b/frontend_v2/src/app/components/permission-denied/permission-denied.component.html deleted file mode 100644 index fba7a6b321..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied.component.html +++ /dev/null @@ -1,34 +0,0 @@ - - -
-
-
-
-
-
- -
-
-
-

Please verify your email to continue.

-
-

- Didn't get the email? - Resend Email -

-
-
-

The verification mail has been sent to you. Please confirm!

-
-
-
-
-
-
-
- -
diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied.component.scss b/frontend_v2/src/app/components/permission-denied/permission-denied.component.scss deleted file mode 100644 index f59662f0d5..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied.component.scss +++ /dev/null @@ -1,33 +0,0 @@ -@import 'styles/variables'; - -.web-container { - width: calc(100vw - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -section { - height: 100vh; -} - -.card .card-content a { - color: white; -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } - .card { - margin: 0px; - } -} diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied.component.spec.ts b/frontend_v2/src/app/components/permission-denied/permission-denied.component.spec.ts deleted file mode 100644 index 0096908a78..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PermissionDeniedComponent } from './permission-denied.component'; - -describe('PermissionDeniedComponent', () => { - let component: PermissionDeniedComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [PermissionDeniedComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PermissionDeniedComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied.component.ts b/frontend_v2/src/app/components/permission-denied/permission-denied.component.ts deleted file mode 100644 index 2d93842152..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied.component.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -// import service -import { ApiService } from '../../services/api.service'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; - -@Component({ - selector: 'app-permission-denied', - templateUrl: './permission-denied.component.html', - styleUrls: ['./permission-denied.component.scss'], -}) -export class PermissionDeniedComponent implements OnInit { - constructor(private apiService: ApiService, private globalService: GlobalService, private authService: AuthService) {} - - sendMail = false; - - ngOnInit() {} - - requestLink() { - const API_PATH = 'accounts/user/resend_email_verification/'; - const SELF = this; - const token = this.authService.getUser['token']; - const EMAIL_BODY = JSON.stringify({ - key: token, - }); - SELF.apiService.postUrl(API_PATH, EMAIL_BODY).subscribe( - (data) => { - SELF.sendMail = true; - SELF.globalService.showToast('success', 'The verification link was sent again.', 5); - }, - (err) => { - SELF.globalService.stopLoader(); - const message = err.error.detail; - const time = Math.floor(message.match(/\d+/g)[0] / 60); - if (err.status === 429) { - SELF.globalService.showToast( - 'error', - 'Request limit exceeded. Please wait for ' + time + ' minutes and try again.', - 5 - ); - } else { - SELF.globalService.handleApiError(err); - } - }, - () => {} - ); - } -} diff --git a/frontend_v2/src/app/components/permission-denied/permission-denied.module.ts b/frontend_v2/src/app/components/permission-denied/permission-denied.module.ts deleted file mode 100644 index 5aa085c929..0000000000 --- a/frontend_v2/src/app/components/permission-denied/permission-denied.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import module -import { PermissionDeniedRoutingModule } from './permission-denied-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -// import component -import { PermissionDeniedComponent } from './permission-denied.component'; - -@NgModule({ - declarations: [PermissionDeniedComponent], - imports: [CommonModule, PermissionDeniedRoutingModule, SharedModule], - exports: [PermissionDeniedComponent], - schemas: [CUSTOM_ELEMENTS_SCHEMA], -}) -export class PermissionDeniedModule {} diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy-routing.module.ts b/frontend_v2/src/app/components/privacy-policy/privacy-policy-routing.module.ts deleted file mode 100644 index a38651baaf..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { PrivacyPolicyComponent } from './privacy-policy.component'; - -const routes: Routes = [ - { - path: '', - component: PrivacyPolicyComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class PrivacyPolicyRoutingModule {} diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.html b/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.html deleted file mode 100644 index cc0367186c..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.html +++ /dev/null @@ -1,334 +0,0 @@ -
- -
- -
-
-
-
    -
  • - What personal information do we collect ? -
  • -
  • - When do we collect information? -
  • -
  • - How do we use your information? -
  • -
  • - How do we protect your information? -
  • -
  • - Do we use 'cookies'? -
  • -
  • - Why do we use cookies? -
  • -
  • - What happens if users disable cookies in their browser? -
  • -
  • - Third-party disclosure -
  • -
  • - Third-party links -
  • -
  • - Google -
  • -
  • - What have we implemented? -
  • -
  • - Opting out -
  • -
  • - California Online Privacy Protection Act -
  • -
  • - CalOPPA Terms -
  • -
  • - How does our site handle Do Not Track signals? -
  • -
  • - Does our site allow third-party behavioral tracking? -
  • -
  • - Fair Information Practices -
  • -
  • - What responsive actions will we take, should a data breach occur? -
  • -
  • - CAN SPAM Act -
  • -
  • - Why do we collect your email address? -
  • -
  • - Why do we agree to, for being in accordance with CANSPAM? -
  • -
  • - How can users get their data deleted from EvalAI? -
  • -
  • - Contacting Us -
  • -
-
-
-
Privacy Policy
-

- This privacy policy has been compiled to better serve those who are concerned with how their 'Personally - Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information - security, is information that can be used on its own or with other information to identify, contact, or locate a - single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear - understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in - accordance with our website. -

-
- What personal information do we collect ? -
-

- When ordering or registering on our site, as appropriate, you may be asked to enter your name, email address, - mailing address or other details to help you with your experience. -

-
- When do we collect information? -
-

- We collect information from you when you register on our site, subscribe to a newsletter, fill out a form or - enter information on our site. -

-
- How do we use your information? -
-
-

- We may use the information we collect from you when you register, make a purchase, sign up for our newsletter, - respond to a survey or marketing communication, surf the website, or use certain other site features in the - following ways: -

-
    -
  • - To personalize your experience and to allow us to deliver the type of content and product offerings in which - you are most interested. -
  • -
  • To improve our website in order to better serve you.
  • -
  • To allow us to better service you in responding to your customer service requests.
  • -
  • To ask for ratings and reviews of services or products
  • -
-
-
- How do we protect your information? -
-

- We do not use vulnerability scanning and/or scanning to PCI standards. We only provide articles and information. - We never ask for credit card numbers. We do not use Malware Scanning. Your personal information is contained - behind secured networks and is only accessible by a limited number of persons who have special access rights to - such systems, and are required to keep the information confidential. In addition, all sensitive/credit - information you supply is encrypted via Secure Socket Layer (SSL) technology. We implement a variety of security - measures when a user enters, submits, or accesses their information to maintain the safety of your personal - information. All transactions are processed through a gateway provider and are not stored or processed on our - servers. -

-
- Do we use 'cookies'? -
-

- Yes. Cookies are small files that a site or its service provider transfers to your computer's hard drive through - your Web browser (if you allow) that enables the site's or service provider's systems to recognize your browser - and capture and remember certain information. For instance, we use cookies to help us remember and update the - status of the submissions. They are also used to help us understand your preferences based on previous or - current site activity, which enables us to provide you with improved services. We also use cookies to help us - compile aggregate data about site traffic and site interaction so that we can offer better site experiences and - tools in the future. -

-
- Why do we use cookies? -
-
-
    -
  • - Compile aggregate data about site traffic and site interactions in order to offer better site experiences - and tools in the future. We may also use trusted third-party services that track this information on our - behalf. -
  • -
-

- You can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off - all cookies. You do this through your browser settings. Since browser is a little different, look at your - browser's Help Menu to learn the correct way to modify your cookies. -

-
-
- What happens if users disable cookies in their browser? -
-

- If you turn cookies off, Some of the features that make your site experience more efficient may not function - properly.Some of the features that make your site experience more efficient and may not function properly. -

-
- Third-party disclosure -
-

- We do not sell, trade, or otherwise transfer to outside parties your Personally Identifiable Information. -

-
- Third-party links -
-

- We do not include or offer third-party products or services on our website. -

-
- Google -
-

- We use Google AdSense Advertising on our website. -

-

- Google, as a third-party vendor, uses cookies to serve ads on our site. Google's use of the DART cookie enables - it to serve ads to our users based on previous visits to our site and other sites on the Internet. Users may - opt-out of the use of the DART cookie by visiting the Google Ad and Content Network privacy policy. -

-
- What have we implemented? -
-
-
    -
  • Demographics and Interests Reporting
  • -
-

- We, along with third-party vendors such as Google use first-party cookies (such as the Google Analytics - cookies) and third-party cookies (such as the DoubleClick cookie) or other third-party identifiers together to - compile data regarding user interactions with ad impressions and other ad service functions as they relate to - our website. -

-
-
- Opting out -
-

- Users can set preferences for how Google advertises to you using the Google Ad Settings page. Alternatively, you - can opt out by visiting the Network Advertising Initiative Opt Out page or by using the Google Analytics Opt Out - Browser add on. -

-
- California Online Privacy Protection Act -
-

- CalOPPA is the first state law in the nation to require commercial websites and online services to post a - privacy policy. The law's reach stretches well beyond California to require any person or company in the United - States (and conceivably the world) that operates websites collecting Personally Identifiable Information from - California consumers to post a conspicuous privacy policy on its website stating exactly the information being - collected and those inpiduals or companies with whom it is being shared. - See more at: - http://consumercal.org/california-online-privacy-protection-act-caloppa/#sthash.0FdRbT51.dpuf. -

-
- CalOPPA Terms -
-

- Users can visit our site anonymously. -

-

- Once this privacy policy is created, we will add a link to it on our home page or as a minimum, on the first - significant page after entering our website. -

-

- Our Privacy Policy link includes the word 'Privacy' and can easily be found on the page specified above. -

-
-

You will be notified of any Privacy Policy changes:

-
    -
  • On our Privacy Policy Page
  • -
-
-
- How does our site handle Do Not Track signals? -
-

- We honor Do Not Track signals and Do Not Track, plant cookies, or use advertising when a Do Not Track (DNT) - browser mechanism is in place. -

-
- Does our site allow third-party behavioral tracking? -
-

- It's also important to note that we do not allow third-party behavioral tracking. -

-
- Fair Information Practices -
-

- The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts - they include have played a significant role in the development of data protection laws around the globe. - Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply - with the various privacy laws that protect personal information. -

-
- What responsive actions will we take, should a data breach occur? -
-
-

We will notify you via email

-
    -
  • Within 7 business days
  • -
-

- We also agree to the Inpidual Redress Principle which requires that inpiduals have the right to legally pursue - enforceable rights against data collectors and processors who fail to adhere to the law. This principle - requires not only that inpiduals have enforceable rights against data users, but also that inpiduals have - recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors. -

-
-
- CAN SPAM Act -
-

- The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial - messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough - penalties for violations. -

-
- Why do we collect your email address? -
-
-
    -
  • Send information, respond to inquiries, and/or other requests or questions
  • -
-
-
- Why do we agree to, for being in accordance with CANSPAM? -
-

- If at any time you would like to unsubscribe from receiving future emails, you can email us at - admin@cloudcv.org and we will promptly remove you from - ALL correspondence. -

-
- How can users get their data deleted from EvalAI? -
-

- In order to get user data deleted from EvalAI you can email us at admin@cloudcv.org with your EvalAI account email id and we will promptly delete all of your data from EvalAI. -

-
- Contacting Us -
-

- If there are any questions regarding this privacy policy, you may contact us using the information below. -

-

- EvalAI -
- admin@cloudcv.org -
- Last Edited on 2017-05-29 -

-
-
-
- diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.scss b/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.scss deleted file mode 100644 index 9b2d32cc30..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.scss +++ /dev/null @@ -1,110 +0,0 @@ -@import './styles/variables.scss'; -@import './styles/mixins.scss'; - -.privacy-container { - width: 100%; - * { - transition: all 0.2s ease; - } - .privacy-nav-container { - margin-top: 30px; - top: 0; - bottom: 0; - max-height: 600px !important; - overflow-y: scroll; - - .privacy-nav { - font-weight: $fw-semibold; - } - - position: relative; - position: -webkit-sticky; - position: sticky; - max-height: 65vh; - ul { - list-style-type: none; - padding-left: 0; - li { - padding-left: 20px; - border-left: 5px solid rgba(0, 0, 0, 0); - padding: 5px; - margin: 5px; - cursor: pointer; - color: $gray-darker; - font-size: $fs-16; - font-weight: $fw-semibold; - - &:hover { - border-left: 5px solid $gray-darker; - } - } - - li.scroll-selected { - color: $orange; - border-left: 5px solid $orange; - } - } - } - .privacy-content { - margin-top: 20px; - margin-left: 1%; - margin-right: 1%; - a { - color: $blue-lighter !important; - font-weight: $fw-semibold; - } - .privacy-title { - margin-top: 10px; - font-size: $fs-34; - color: $med-black; - } - .privacy-section-content { - font-weight: $fw-light; - color: $med-black; - font-size: $fs-16; - margin-top: 20px; - line-height: 20px; - letter-spacing: 0.5px; - ul { - list-style-type: circle; - } - } - .privacy-section-title { - font-size: $fs-20; - color: $med-black; - font-weight: $fw-semibold; - margin-top: 20px; - &.scroll-selected { - color: $orange; - } - } - } -} - -@include screen-small-medium { - .privacy-nav-container, - .privacy-empty-container { - display: none; - } -} - -@include screen-medium { - .privacy-nav-container { - top: 20%; - } -} - -@include screen-medium { - .privacy-container { - padding-top:100px !important; - } -} - -@include screen-large { - .privacy-container { - padding-left:0; - padding-right: 0; - margin-right: auto; - margin-left: auto; - } -} diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.spec.ts b/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.spec.ts deleted file mode 100644 index 6275298129..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.spec.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { RouterTestingModule } from '@angular/router/testing'; -import { By } from '@angular/platform-browser'; -import { DebugElement } from '@angular/core'; -import { ActivatedRoute, Router } from '@angular/router'; -import { HttpClientModule } from '@angular/common/http'; - -// import component -import { PrivacyPolicyComponent } from './privacy-policy.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../../components/nav/footer/footer.component'; - -// import service -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { ApiService } from '../../services/api.service'; -import { EndpointsService } from '../../services/endpoints.service'; - -describe('PrivacyPolicyComponent', () => { - let component: PrivacyPolicyComponent; - let fixture: ComponentFixture; - let de: DebugElement; - let ALL_NAV; - let ALL_TARGET; - - const fakeActivatedRoute = { - snapshot: { data: {} }, - } as ActivatedRoute; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [PrivacyPolicyComponent, HeaderStaticComponent, FooterComponent], - providers: [GlobalService, AuthService, ApiService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PrivacyPolicyComponent); - component = fixture.componentInstance; - de = fixture.debugElement; - fixture.detectChanges(); - ALL_NAV = de.queryAll(By.css('.privacy-nav')); - ALL_TARGET = de.queryAll(By.css('.privacy-section-title')); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); - - it('should have only one scroll-selected element after page loads', () => { - const scrollSelected = de.queryAll(By.css('.scroll-selected')); - expect(scrollSelected.length).toBe(1); - }); - - it('should have the first title of the privacy nav of scroll-selected element', () => { - const scrollSelected = de.query(By.css('.scroll-selected')); - const expectedPrivacyNavTitle = 'What personal information do we collect ?'; - expect(scrollSelected.nativeElement.innerText).toBe(expectedPrivacyNavTitle); - }); - - it('should have equal number of section-title elements as nav elements', () => { - expect(ALL_NAV.length).toBeGreaterThan(0); - expect(ALL_TARGET.length).toBeGreaterThan(0); - expect(ALL_TARGET.length).toBe(ALL_NAV.length); - }); - - it('should have same section title as nav element title', () => { - ALL_NAV.forEach((ele, index) => { - expect(ALL_TARGET[index].nativeElement.innerText).toBe(ele.nativeElement.innerText); - }); - }); - - it('should have called the scroll function when scroll selected element is called', () => { - const scrollSelected = de.query(By.css('.scroll-selected')); - scrollSelected.nativeElement.click(); - - fixture.whenStable().then(() => { - expect(component.scroll).toHaveBeenCalled(); - expect(component.highlightNav).toHaveBeenCalled(); - expect(component.highlightSectionTitle).toHaveBeenCalled(); - }); - }); -}); diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.ts b/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.ts deleted file mode 100644 index 512277d0b9..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy.component.ts +++ /dev/null @@ -1,148 +0,0 @@ -import { Component, OnInit, Inject, HostListener } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; -import { GlobalService } from '../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-privacy-policy', - templateUrl: './privacy-policy.component.html', - styleUrls: ['./privacy-policy.component.scss'], -}) -export class PrivacyPolicyComponent implements OnInit { - visible: boolean; - - constructor(@Inject(DOCUMENT) private document: Document, private globalService: GlobalService) { - this.visible = false; - } - - /** - * Checks if element is visible (called after scroll event) - * @param {el} Checks the visibility of this element - * @returns {IS_VISIBLE} returns a boolean - */ - isScrolledIntoView(el) { - const RECT = el.getBoundingClientRect(); - const ELEM_TOP = RECT.top; - const ELEM_BOTTOM = RECT.bottom; - const HEADER_HEIGHT = this.document.getElementById('header-static').clientHeight; - // Only completely visible elements return true: - const IS_VISIBLE = ELEM_TOP >= HEADER_HEIGHT && ELEM_BOTTOM <= window.innerHeight; - // Partially visible elements return true: - // isVisible = ELEM_TOP < window.innerHeight && ELEM_BOTTOM >= 0; - return IS_VISIBLE; - } - - /** - * Highlights the nav for the corresponding element - * @param {el} Highlights nav corresponding to this element - */ - highlightNav(el) { - const ALL_NAVS = this.document.getElementsByClassName('privacy-nav'); - [].forEach.call(ALL_NAVS, function (item) { - item.classList.remove('scroll-selected'); - if (item.id === el) { - item.className += ' scroll-selected'; - } - }); - } - - /** - * Highlights the section-title for the corresponding element - * @param {el} Highlights section-title corresponding to this element - */ - highlightSectionTitle(el) { - const ALL_TARGETS = this.document.getElementsByClassName('privacy-section-title'); - [].forEach.call(ALL_TARGETS, function (item) { - item.classList.remove('scroll-selected'); - if (item.id === el) { - item.className += ' scroll-selected'; - } - }); - } - - /** - * Component on intialized. - */ - ngOnInit() { - this.globalService.scrollToTop(); - this.document['manuallyScrolling'] = false; - const ID_TEXT = 'privacy-'; - let i = 1; - const allNavs = this.document.getElementsByClassName('privacy-nav'); - [].forEach.call(allNavs, function (item) { - item.id = ID_TEXT + i.toString() + '-nav'; - i = i + 1; - }); - i = 1; - const ALL_TARGETS = this.document.getElementsByClassName('privacy-section-title'); - [].forEach.call(ALL_TARGETS, function (item) { - item.id = ID_TEXT + i.toString(); - i = i + 1; - }); - } - - /** - * Listener for page scroll event - */ - @HostListener('window:scroll', []) - onWindowScroll(): void { - const el = this.document.getElementById('privacy-policy-title'); - this.visible = el.getBoundingClientRect().top < 0; - - if (!this.document['manuallyScrolling']) { - const ALL_TARGETS = this.document.getElementsByClassName('privacy-section-title'); - const SELF = this; - [].some.call(ALL_TARGETS, function (item) { - const elem = SELF.document.getElementById(item.id); - if (SELF.isScrolledIntoView(elem)) { - SELF.highlightNav(item.id + '-nav'); - SELF.highlightSectionTitle(item.id); - const ELEM_NAV = SELF.document.getElementById(item.id + '-nav'); - if (!SELF.isScrolledIntoView(ELEM_NAV)) { - // ELEM_NAV.scrollIntoView(); - } - return true; - } - }); - } - } - - /** - * Scrolls the item into view based on the nav item that is clicked - * @param {event} Gets the click event from the nav element - */ - scroll(event) { - this.document['manuallyScrolling'] = true; - setTimeout(() => { - this.document['manuallyScrolling'] = false; - }, 2000); - // getting id of the clicked item - const TARGET = event.target || event.srcElement || event.currentTarget; - const ID = TARGET.attributes.id.value; - this.highlightNav(ID); - - // Removing -nav from the id of the clicked element - const ELEMENT_ID = ID.slice(0, -4); - const element = this.document.getElementById(ELEMENT_ID); - const headerOffset = 72; - const bodyRect = document.body.getBoundingClientRect().top; - const elementRect = element.getBoundingClientRect().top; - const elementPosition = elementRect - bodyRect; - const offsetPosition = elementPosition - headerOffset; - - window.scrollTo({ - top: offsetPosition, - behavior: 'smooth', - }); - this.highlightSectionTitle(ELEMENT_ID); - } - - /** - * Scrolls to the top of the page - */ - scrollToTop() { - this.document.getElementById('privacy-policy-title').scrollIntoView({ behavior: 'smooth' }); - } -} diff --git a/frontend_v2/src/app/components/privacy-policy/privacy-policy.module.ts b/frontend_v2/src/app/components/privacy-policy/privacy-policy.module.ts deleted file mode 100644 index 5c1999efd8..0000000000 --- a/frontend_v2/src/app/components/privacy-policy/privacy-policy.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { PrivacyPolicyComponent } from './privacy-policy.component'; - -// import module -import { PrivacyPolicyRoutingModule } from './privacy-policy-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [PrivacyPolicyComponent], - imports: [CommonModule, PrivacyPolicyRoutingModule, SharedModule], - exports: [PrivacyPolicyComponent], - schemas: [CUSTOM_ELEMENTS_SCHEMA], -}) -export class PrivacyPolicyModule {} diff --git a/frontend_v2/src/app/components/profile/profile-routing.module.ts b/frontend_v2/src/app/components/profile/profile-routing.module.ts deleted file mode 100644 index ab97e23ff9..0000000000 --- a/frontend_v2/src/app/components/profile/profile-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { ProfileComponent } from './profile.component'; - -const routes: Routes = [ - { - path: '', - component: ProfileComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class ProfileRoutingModule {} diff --git a/frontend_v2/src/app/components/profile/profile.component.html b/frontend_v2/src/app/components/profile/profile.component.html deleted file mode 100644 index c42e55578c..0000000000 --- a/frontend_v2/src/app/components/profile/profile.component.html +++ /dev/null @@ -1,169 +0,0 @@ - -
- -
-
-
-
-
-
- -
-
- {{ user.username }} -
-
- {{ user.email }} -
-
-
-
- Profile Completed -
- {{ pcomp }} -
-
-
-
-
- -
-
- -
-
    -
  • -
    - Google Scholar Url
    -
    - {{ user.google_scholar_url }} -
    -
    -
  • -
  • -
    - GitHub Url
    -
    - {{ user.github_url }} -
    -
    -
  • -
  • -
    - LinkedIn Url
    -
    - {{ user.linkedin_url }} -
    -
    -
  • -
- -
- -
-
-
- -
-
-
diff --git a/frontend_v2/src/app/components/profile/profile.component.scss b/frontend_v2/src/app/components/profile/profile.component.scss deleted file mode 100644 index 799b061ebd..0000000000 --- a/frontend_v2/src/app/components/profile/profile.component.scss +++ /dev/null @@ -1,275 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -#card_container { - .card { - background: $gray-lighter; - padding-bottom: 30px; - width: 50%; - margin: 0 auto; - } - - font-size: $fs-16; - font-weight: $fw-light; - color: $gray-dark; - margin: 30px; - .dark { - color: $gray-darker; - } - - .highlight { - color: $yellow; - } - - .item { - margin-bottom: 13px; - text-align: center; - } - - .profile-photo { - height: 80px; - border-radius: 50%; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - } - - .user-details { - margin-top: 14px; - margin-bottom: 14px; - } - - .change-password { - margin-top: 25px; - margin-bottom: 14px; - .change-password-text { - margin-right: 20px; - margin-bottom: 12px; - } - } - - .modal-container { - &.hidden { - display: none; - } - } - - .copy { - background: none !important; - border: none !important; - color: $red-light !important; - font-size: $fs-24 !important; - i { - margin-left: -20px; - } - &:hover { - box-shadow: none !important; - color: $red-medium; - } - } -} -.modal-container { - .modal-card { - .title { - margin-bottom: 20px; - } - .code-btn { - margin-top: 15px; - } - } -} - -@include screen-medium { - .profile-container { - .card { - width: 70%; - } - } -} - -@include screen-small { - .profile-container { - .card { - width: 90%; - } - } -} - -.profile-sidebar { - position: fixed; - z-index: 9; - font-size: 14px; - min-width: 200px; - min-height: 100vh; - background-color: $dust-gray; - top: 0; - left: -200px; - text-align: center; - color: #fff; - ul { - margin-top: 20px; - text-align: left; - li { - padding: 10px 0px; - } - } - input[type='checkbox'] + label { - font-size: 12px; - } -} - -.token-width { - width: 500px; -} - -.profile-edit-group { - margin-bottom: 50px; - margin-right: -20px; -} - -.pass-title { - margin-bottom: 30px; -} - -.back-profile-group { - margin-top: 60px; -} - -img.profile-pic { - height: 80px; -} - -.user-info { - li { - margin-bottom: 36px; - } - margin-top: 20px; -} - -.user-urls { - li { - margin-bottom: 33px; - } - margin-bottom: 20px; - margin-top: 25px; -} - -.container-fluid { - width: calc(100vw - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; -} - -.main_content { - box-sizing: inherit; - background-color: rgb(250, 250, 250); -} - -.row { - display: -webkit-box; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - flex-direction: column; -} - -.dashboard { - -webkit-box-flex: 1; - flex: 1; -} - -#card_container { - padding: 40px; - min-height: 100vh; - margin: 0px; -} - -#sty_card { - margin-left: auto; - margin-right: auto; - margin-bottom: 20px; -} - -.challenge-title-container { - padding-bottom: 0; -} - -.ev-card-panel { - position: relative; - display: block; - background-color: #fff; - width: 100%; - height: auto; - border-radius: 4px; - overflow: hidden; - box-shadow: 0 0 12px #dedede; -} - -.ev-z-depth-5 { - box-shadow: 0 0 10px #dedede; -} - -#user_info { - margin-top: 25px; -} - -@media only screen and (min-width: 1441px) { - .container-fluid { - width: calc(1440px - 223px) !important; - } -} - -@media only screen and (max-width: 992px) { - .container-fluid { - width: 100%; - } -} - -#profile_layout { - margin-top: 40px; -} - -#auth_tok { - max-lines: 80; -} - -#sty_button { - max-lines: 80; -} - -.token-container { - height: 30px; -} - -#auth_button_style { - margin-left: 90%; -} - -#auth_token_input ::ng-deep .input-field { - padding-bottom: 0px; - height: 30px; - width: 107%; -} - -#auth_token_input ::ng-deep label { - top: -5px; -} - -.auth_token_button { - margin-left: -25px; - margin-top: 20px; -} - -.show_token_button { - padding: 0 1rem; -} - -#auth_tok_button { - @media (min-width: 600px) { - padding-top: 3px; - padding-bottom: 3px; - line-height: 16px; - } - @media (max-width: 1200px) { - height: auto; - } -} diff --git a/frontend_v2/src/app/components/profile/profile.component.spec.ts b/frontend_v2/src/app/components/profile/profile.component.spec.ts deleted file mode 100644 index c8a27db04d..0000000000 --- a/frontend_v2/src/app/components/profile/profile.component.spec.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ProfileComponent } from './profile.component'; -import { HeaderStaticComponent } from '../../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../nav/footer/footer.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../services/global.service'; -import { AuthService } from '../../services/auth.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ApiService } from '../../services/api.service'; -import { WindowService } from '../../services/window.service'; -import { HttpClientModule } from '@angular/common/http'; -import { Router, Routes } from '@angular/router'; -import { NotFoundComponent } from '../not-found/not-found.component'; -import { LoginComponent } from '../auth/login/login.component'; -import { FormsModule } from '@angular/forms'; - -const routes: Routes = [ - { - path: '', - component: ProfileComponent, - }, - { - path: 'auth/login', - component: LoginComponent, - }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -describe('ProfileComponent', () => { - let component: ProfileComponent; - let fixture: ComponentFixture; - let router: Router; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ProfileComponent, HeaderStaticComponent, FooterComponent, NotFoundComponent, LoginComponent], - providers: [GlobalService, AuthService, WindowService, ApiService, EndpointsService], - imports: [HttpClientModule, RouterTestingModule.withRoutes(routes), FormsModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(ProfileComponent); - component = fixture.componentInstance; - }); - - it('should create', () => { - fixture.detectChanges(); - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/profile/profile.component.ts b/frontend_v2/src/app/components/profile/profile.component.ts deleted file mode 100644 index 0612054056..0000000000 --- a/frontend_v2/src/app/components/profile/profile.component.ts +++ /dev/null @@ -1,328 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { Router } from '@angular/router'; -import { ViewChildren, QueryList } from '@angular/core'; -import { NGXLogger } from 'ngx-logger'; - -// import service -import { ApiService } from '../../services/api.service'; -import { WindowService } from '../../services/window.service'; -import { GlobalService } from '../../services/global.service'; -import { EndpointsService } from '../../services/endpoints.service'; -import { AuthService } from '../../services/auth.service'; -import { InputComponent } from '../utility/input/input.component'; - -/** - * Component Class - */ -@Component({ - selector: 'app-profile', - templateUrl: './profile.component.html', - styleUrls: ['./profile.component.scss'], -}) -export class ProfileComponent implements OnInit { - /** - * User object - */ - user: any; - - /** - * Profile completion score - */ - pcomp: any; - - /** - * Auth token string - */ - token = ''; - - /** - * Is modal visible - */ - tokenModalButtonFlag = true; - - /** - * Auth token Modal Button text - */ - tokenModalButton = 'Show Token'; - - /** - * Modal display flag - */ - isTokenModalVisible = false; - - /** - * To call the API inside modal for updating the user details and password - */ - apiCall: any; - - /** - * Form components from 'formtoken' - */ - @ViewChildren('formtoken') - formTokenComponents: QueryList; - - /** - * Constructor. - * @param route ActivatedRoute Injection. - * @param router Router Injection. - * @param globalService GlobalService Injection. - * @param authService AuthService Injection. - * @param apiService ApiService Injection. - * @param endpointsService EndpointsService Injection. - * @param windowService WindowService Injection. - */ - constructor( - private apiService: ApiService, - private authService: AuthService, - private globalService: GlobalService, - private router: Router, - private endpointsService: EndpointsService, - private windowService: WindowService, - private logger: NGXLogger - ) {} - - /** - * Component on intialized. - */ - ngOnInit() { - if (!this.authService.isLoggedIn()) { - this.globalService.storeData(this.globalService.redirectStorageKey, this.router.url); - this.router.navigate(['/auth/login']); - } - this.authService.change.subscribe((details) => { - this.user = details; - this.setAccessToken(); - this.processUserDetails(); - }); - } - - /** - * Set access token - */ - setAccessToken() { - const API_PATH = this.endpointsService.getAuthTokenURL(); - const SELF = this; - - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - // Success Message in data.message - this.token = data.token; - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('GET-AUTH-TOKEN-FINISHED') - ); - } - - /** - * Refresh access token - */ - refreshAccessToken() { - const API_PATH = this.endpointsService.refreshAuthTokenURL(); - const SELF = this; - - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - // Success Message in data.message - this.token = data.token; - SELF.globalService.showToast('success', 'Token generated successfully', 5); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('REFRESH-AUTH-TOKEN-FINISHED') - ); - } - - /** - * Process user details function. - */ - processUserDetails() { - let countLeft = 0; - let count = 0; - for (const i in this.user) { - if (this.user.hasOwnProperty(i)) { - if (this.user[i] === '' || this.user[i] === undefined || this.user[i] === null) { - this.user[i] = '-'; - countLeft = countLeft + 1; - } - count = count + 1; - } - } - const TEMP = ((countLeft / count) * 100).toString(); - this.pcomp = (100 - parseInt(TEMP, 10)).toString() + '%'; - } - - /** - * Token Modal toggle function. - */ - tokenModalButtonToggle() { - this.tokenModalButtonFlag = !this.tokenModalButtonFlag; - this.tokenModalButton = this.tokenModalButtonFlag ? 'Show Token' : 'Hide Token'; - const TOKEN_INPUT = this.globalService.formItemForLabel(this.formTokenComponents, 'token'); - TOKEN_INPUT.type = this.tokenModalButtonFlag ? 'password' : 'text'; - } - - /** - * Displays a Modal to update user details - */ - updateUserDetails() { - const firstName = this.user['first_name'] === '-' ? '' : this.user['first_name']; - const lastName = this.user['last_name'] === '-' ? '' : this.user['last_name']; - const affiliation = this.user['affiliation'] === '-' ? '' : this.user['affiliation']; - const googleScholarUrl = this.user['google_scholar_url'] === '-' ? '' : this.user['google_scholar_url']; - const githubUrl = this.user['github_url'] === '-' ? '' : this.user['github_url']; - const linkedinUrl = this.user['linkedin_url'] === '-' ? '' : this.user['linkedin_url']; - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService.putUrl(SELF.endpointsService.userDetailsURL(), BODY).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'User details updated successfully', 5); - SELF.authService.fetchUserDetails(); - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => this.logger.info('USER-UPDATE-FINISHED') - ); - }; - const PARAMS = { - title: 'Update Profile', - content: '', - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - isRequired: true, - label: 'first_name', - name: 'update_first_name', - placeholder: 'First Name', - type: 'text', - value: firstName, - }, - { - isRequired: true, - label: 'last_name', - name: 'update_last_name', - placeholder: 'Last Name', - type: 'text', - value: lastName, - }, - { - isRequired: true, - label: 'affiliation', - name: 'update_affiliation', - placeholder: 'Affiliated To', - type: 'text', - value: affiliation, - }, - { - isRequired: false, - label: 'google_scholar_url', - name: 'update_google_scholar_url', - placeholder: 'Google Scholar Url', - type: 'url', - value: googleScholarUrl, - }, - { - isRequired: false, - label: 'github_url', - name: 'update_github_url', - placeholder: 'GitHub Url', - type: 'url', - value: githubUrl, - }, - { - isRequired: false, - label: 'linkedin_url', - name: 'update_linkedin_url', - placeholder: 'LinkedIn Url', - type: 'url', - value: linkedinUrl, - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } - - /** - * Download Auth Token as a JSON file. - */ - downloadToken() { - this.isTokenModalVisible = false; - this.windowService.downloadFile({ body: JSON.stringify({ token: this.token }) }, 'token.json', { - type: 'text/json', - }); - } - - /** - * Copy auth token to clipboard. - */ - copyToken() { - this.windowService.copyToClipboard(this.token); - this.globalService.showToast('success', 'Copied to clipboard', 5); - } - - /** - * Display modal to update password. - */ - updatePassword() { - const SELF = this; - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService.postUrl(SELF.endpointsService.changePasswordURL(), BODY).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Password updated successfully', 5); - SELF.authService.fetchUserDetails(); - }, - (err) => { - if (err.status === 400 && err.error && err.error.old_password) { - SELF.globalService.showToast('error', err.error.old_password[0], 5); - } else if (err.status === 400 && err.error && err.error.new_password2) { - SELF.globalService.showToast('error', err.error.new_password2[0], 5); - } else { - SELF.globalService.handleApiError(err, true); - } - }, - () => this.logger.info('PASSWORD-UPDATE-FINISHED') - ); - }; - const PARAMS = { - title: 'Change Password', - content: '', - isButtonDisabled: true, - confirm: 'Submit', - deny: 'Cancel', - form: [ - { - isRequired: true, - label: 'old_password', - name: 'old_password', - placeholder: 'Old Password*', - type: 'password', - }, - { - isRequired: true, - label: 'new_password1', - name: 'new_password1', - placeholder: 'New Pasword*', - type: 'password', - }, - { - isRequired: true, - label: 'new_password2', - name: 'new_password2', - placeholder: 'New Password (Again)*', - type: 'password', - }, - ], - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - } -} diff --git a/frontend_v2/src/app/components/profile/profile.module.ts b/frontend_v2/src/app/components/profile/profile.module.ts deleted file mode 100644 index 214897b811..0000000000 --- a/frontend_v2/src/app/components/profile/profile.module.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { ProfileComponent } from './profile.component'; - -// import module -import { ProfileRoutingModule } from './profile-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [ProfileComponent], - imports: [CommonModule, ProfileRoutingModule, SharedModule], - exports: [ProfileComponent], -}) -export class ProfileModule {} diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.html b/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.html deleted file mode 100644 index 4e3743d5b4..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.html +++ /dev/null @@ -1,34 +0,0 @@ -
-
- -
-
-

{{ challenge['title'] }}

-

- Organized by
- {{ challenge['creator']['team_name'] }} -

-

- Starts on
- {{ challenge['start_date'] | date: 'medium' }} {{ challenge['start_zone'] }} -

-

- Ends on
- {{ challenge['end_date'] | date: 'medium' }} {{ challenge['end_zone'] }} -

-
- -
Approved
-
- -
Not Approved
-
- -
Published
-
- -
Not Published
-
-
-
-
diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.scss b/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.scss deleted file mode 100644 index dee9eec866..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.scss +++ /dev/null @@ -1,30 +0,0 @@ -@import 'styles/variables'; - -.ev-challenge-card { - min-height: 415px; -} - -.bg-img { - object-fit: cover; - height: 100%; - margin: auto; -} - -.margin-top-btm { - margin-top: 10px; - margin-bottom: 25px; -} - -.card { - margin-left: 0; - margin-right: 0; -} - -p { - word-wrap: break-word; -} - -.card-content { - height: 275px; - overflow: hidden; -} diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.spec.ts b/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.spec.ts deleted file mode 100644 index 97896a5222..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.spec.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ChallengecardComponent } from './challengecard.component'; -import { GlobalService } from '../../../../services/global.service'; -import { ApiService } from '../../../../services/api.service'; -import { AuthService } from '../../../../services/auth.service'; -import { EndpointsService } from '../../../../services/endpoints.service'; -import { ChallengeService } from '../../../../services/challenge.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; - -describe('ChallengecardComponent', () => { - let component: ChallengecardComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - imports: [HttpClientModule, RouterTestingModule], - declarations: [ChallengecardComponent], - providers: [GlobalService, ApiService, AuthService, ChallengeService, EndpointsService], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ChallengecardComponent); - component = fixture.componentInstance; - component.challenge = { - id: 1, - title: 'Anthony Challenge', - short_description: 'Architecto reiciendis', - description: 'Ipsa sit exercitationem ', - terms_and_conditions: 'Officiis dicta debitis expedita corrupti.', - submission_guidelines: 'Totam ipsa debitis ', - evaluation_details: 'Dolorem consequatur odio quos', - image: 'https://evalai.s3.amazonaws.com/media/logos/vqa.png', - start_date: '2017-12-03T03:38:12.655908Z', - end_date: '2019-07-26T03:38:12.655934Z', - creator: { - id: 1, - team_name: 'New Travischester Host Team', - created_by: 'host', - }, - published: true, - enable_forum: true, - anonymous_leaderboard: false, - is_active: true, - approved_by_admin: true, - }; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.ts b/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.ts deleted file mode 100644 index 036e2271ba..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengecard/challengecard.component.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { GlobalService } from '../../../../services/global.service'; -import { AuthService } from '../../../../services/auth.service'; -import { Router } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengecard', - templateUrl: './challengecard.component.html', - styleUrls: ['./challengecard.component.scss'], -}) -export class ChallengecardComponent implements OnInit { - /** - * Challenge object - */ - @Input() challenge: object; - - /** - * Start date string - */ - startDate: any = ''; - - /** - * End date string - */ - endDate: any = ''; - - /** - * Is challenge upcoming - */ - isUpcoming = false; - - /** - * Is Challenge ongoing - */ - isOngoing = false; - - /** - * Is it a past challenge - */ - isPast = false; - - /** - * Time remaining string - */ - timeRemaining = ''; - - /** - * Is user logged in - */ - isLoggedIn = false; - - /** - * Current Route - */ - routerPublic: Router; - - /** - * My challenge route - */ - myChallengesRoute = '/challenges/me'; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param authService AuthService Injection. - * @param router Router Injection. - */ - constructor( - private globalService: GlobalService, - private authService: AuthService, - private router: Router - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.routerPublic = this.router; - this.preProcess(); - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - } - - /** - * Called after onInit. - */ - preProcess() { - const TEMP = {}; - const PRESENT = new Date(); - const START_DATE = new Date(Date.parse(this.challenge['start_date'])); - const END_DATE = new Date(Date.parse(this.challenge['end_date'])); - this.checkType(START_DATE, END_DATE, PRESENT); - this.startDate = this.globalService.formatDate12Hour(START_DATE); - this.endDate = this.globalService.formatDate12Hour(END_DATE); - } - - /** - * Checks type of challenge (based on timing). - * @param start Start date - * @param end End date - * @param now Current date - */ - checkType(start, end, now) { - if (now > end) { - this.isPast = true; - this.timeRemaining = 'This challenge has ended.'; - } else if (now > start && now < end) { - this.isOngoing = true; - this.timeRemaining = this.globalService.getDateDifferenceString(now, end) + ' for the challenge to end.'; - } else if (now < start) { - this.isUpcoming = true; - this.timeRemaining = this.globalService.getDateDifferenceString(now, start) + ' for the challenge to begin.'; - } - } - - /** - * Challenge card is clicked (redirect). - */ - challengeClicked() { - this.router.navigate(['/challenge', this.challenge['id']]); - } - - /** - * Participate in the current challenge card (redirect). - */ - participateInChallenge() { - this.router.navigate(['/challenge', this.challenge['id'], 'participate']); - } -} diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.html b/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.html deleted file mode 100644 index 5d81480557..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.html +++ /dev/null @@ -1,154 +0,0 @@ -
- -
-

All challenges

- - - -
No challenges found.
-
-
- - - -
-
-
-
- - - - -
No challenges found.
-
-
- - - -
-
-
-
- - - - -
No challenges found.
-
-
- - - -
-
-
-
-
-
- -
-

Hosted challenges

- - - -
-

- You haven't hosted any challenge. Please - click here to get started. -

-
-
-
- - - -
-
-
-
- - -
-

- No upcoming hosted challenges found. Please - click here to get started. -

-
-
-
- - - -
-
-
-
- - -
-

No past hosted challenges found.

-
-
-
- - - -
-
-
-
- - - -
-

No unapproved challenges found.

-
-
-
- - - -
-
-
-
-
-
- -
-

Participated challenges

- - - -
-

- You haven't participated in any challenge. Please - click here to get started. -

-
-
-
- - - -
-
-
-
- - -
-

You haven't participated in any of the past challenges.

-
-
-
- - - -
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.scss b/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.scss deleted file mode 100644 index f4ee3ac7d8..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.scss +++ /dev/null @@ -1,18 +0,0 @@ -a.btn-card-detail:focus { - color: black; - display: block; - height: 40px; - box-sizing: border-box; - border-bottom: 2px solid black; - background-color: white; -} - -.none { - margin: 1%; -} - -::ng-deep .mat-tab-label .mat-tab-label-content { - color: #4d4d4d; - font-weight: 500; - font-size: 18px; -} diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.spec.ts b/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.spec.ts deleted file mode 100644 index 7b54eaadf7..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.spec.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { async, ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing'; -import { ChallengelistComponent } from './challengelist.component'; -import { CardlistComponent } from '../../utility/cardlist/cardlist.component'; -import { ChallengecardComponent } from './challengecard/challengecard.component'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { HttpClientModule } from '@angular/common/http'; -import { ForceloginComponent } from '../../utility/forcelogin/forcelogin.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { Router, Routes } from '@angular/router'; - -import { PubliclistsComponent } from '../publiclists.component'; - -import { By } from '@angular/platform-browser'; - -const routes: Routes = [ - { - path: 'challenge', - redirectTo: 'challenges/all', - }, - { path: 'challenges/all', component: ChallengelistComponent }, - { path: 'challenges/me', component: ChallengelistComponent }, - { - path: '**', - redirectTo: '/challenges/all', - pathMatch: 'full', - }, -]; - -describe('ChallengelistComponent', () => { - let component: ChallengelistComponent; - let fixture: ComponentFixture; - let authService: AuthService; - let globalService: GlobalService; - let challengeService: ChallengeService; - let router: Router; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - imports: [HttpClientModule, RouterTestingModule.withRoutes(routes)], - declarations: [ - ChallengelistComponent, - CardlistComponent, - ChallengecardComponent, - ForceloginComponent, - PubliclistsComponent, - ], - providers: [GlobalService, ApiService, AuthService, ChallengeService, EndpointsService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(ChallengelistComponent); - authService = TestBed.get(AuthService); - globalService = TestBed.get(GlobalService); - challengeService = TestBed.get(ChallengeService); - component = fixture.componentInstance; - }); - - it('should create', () => { - spyOn(authService, 'isLoggedIn').and.returnValue(true); - fixture.detectChanges(); - - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.ts b/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.ts deleted file mode 100644 index 64574ff74a..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.component.ts +++ /dev/null @@ -1,460 +0,0 @@ -import { Component, HostListener, Inject, OnInit } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { Router } from '@angular/router'; -import { DOCUMENT } from '@angular/common'; - -/** - * Component Class - */ -@Component({ - selector: 'app-challengelist', - templateUrl: './challengelist.component.html', - styleUrls: ['./challengelist.component.scss'], -}) -export class ChallengelistComponent implements OnInit { - /** - * Filter toggle flag - */ - isUpcomingChecked = true; - - /** - * Filter toggle flag - */ - isOngoingChecked = true; - - /** - * Filter toggle flag - */ - isPastChecked = true; - - /** - * Upcoming challenges list - */ - upcomingChallenges = []; - - /** - * Ongoing challenges list - */ - ongoingChallenges = []; - - /** - * Past challeges list - */ - pastChallenges = []; - - /** - * Unapproved challeges list - */ - unapprovedChallengeList = []; - - /** - * API common path - */ - apiPathCommon = 'challenges/challenge/'; - - /** - * participated challenges API common path - */ - newApiPathCommon = 'challenges/challenges/'; - - /** - * Host teams API common path - */ - hostTeamsapiPathCommon = 'hosts/challenge_host_team'; - - /** - * API path mapping - */ - apiPathMapping = { - isUpcomingChecked: this.apiPathCommon + 'future', - isOngoingChecked: this.apiPathCommon + 'present', - isPastChecked: this.apiPathCommon + 'past', - }; - - /** - * API path mapping - */ - newApiPathMapping = { - isOngoingChecked: this.newApiPathCommon + 'participated/' + 'present/', - isPastChecked: this.newApiPathCommon + 'participated/' + 'past/', - }; - - /** - * List of filtered challenges - */ - filteredChallenges = []; - - /** - * List of filtered ongoing challenges - */ - filteredOngoingChallenges = []; - - /** - * List of filtered upcoming challenges - */ - filteredUpcomingChallenges = []; - - /** - * List of filtered past challenges - */ - filteredPastChallenges = []; - - /** - * List of filtered-further challenges - */ - filteredChallengesView = []; - - /** - * Team list - */ - allTeams = []; - - /** - * Display more frames of teams - */ - seeMore = 1; - - /** - * Frame size - */ - windowSize = 10; - - /** - * Auth service public instance - */ - authServicePublic: AuthService; - - /** - * Router public instance - */ - routerPublic: Router; - - /** - * Is user Logged in - */ - isLoggedIn: any = false; - - /** - * Is scroll button visible - */ - isScrollbtnVisible = false; - - /** - * Authentication Service subscription - */ - authServiceSubscription: any; - - /** - * All challenges common route path - */ - allChallengesRoutePathCommon = '/challenges/all'; - - /** - * My challenges common route path - */ - myChallengesRoutePathCommon = '/challenges/me'; - - /** - * My participated challenges common route path - */ - myParticipatedChallengesRoutePathCommon = '/challenges/participated'; - - /** - * Host teams common route path - */ - hostTeamsRoutePathCommon = '/teams/hosts'; - - /** - * Challenge common path - */ - challengeRoutePathCommon = '/challenge'; - - /** - * Auth common route path - */ - authRoutePathCommon = '/auth/'; - - /** - * Constructor. - * @param apiService ApiService Injection. - * @param authService AuthService Injection. - * @param globalService GlobalService Injection. - * @param endpointsService EndpointsService Injection. - * @param router Router Injection. - * @param document - */ - constructor( - private apiService: ApiService, - private authService: AuthService, - private globalService: GlobalService, - private endpointsService: EndpointsService, - private router: Router, - @Inject(DOCUMENT) private document - ) {} - - /** - * Component on intialized. - */ - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - - this.authServiceSubscription = this.authService.change.subscribe((authState) => { - this.isLoggedIn = authState.isLoggedIn; - if (!authState.isLoggedIn && this.router.url === this.myChallengesRoutePathCommon) { - this.router.navigate([`${this.authRoutePathCommon}login`]); - } else if (!authState.isLoggedIn && this.router.url === this.myParticipatedChallengesRoutePathCommon) { - this.router.navigate([`${this.authRoutePathCommon}login`]); - } - }); - - if (this.router.url === this.allChallengesRoutePathCommon) { - this.fetchChallenges(); - } else if (this.router.url === this.myChallengesRoutePathCommon && this.authService.isLoggedIn()) { - this.fetchMyTeams(); - } else if (this.router.url === this.myParticipatedChallengesRoutePathCommon && this.authService.isLoggedIn()) { - this.fetchMyParticipatedChallenges(); - } - - this.authServicePublic = this.authService; - this.routerPublic = this.router; - } - - /** - * Listener for page scroll event - */ - @HostListener('window:scroll', []) - onWindowScroll(): void { - if (this.document.getElementById('ongoing-challenges')) { - const RECT = this.document.getElementById('ongoing-challenges').getBoundingClientRect(); - this.isScrollbtnVisible = RECT.top < 0; - } - } - - /** - * Fetch teams function. - */ - fetchMyTeams() { - this.fetchTeams(this.hostTeamsapiPathCommon); - } - - /** - * Fetch participated challenges function. - * @param filter selected filter - * @param callback callback function - */ - fetchMyParticipatedChallenges(filter = null, callback = null) { - const SELF = this; - if (!filter) { - const ALL_PATHS = Object.values(SELF.newApiPathMapping); - const ALL_KEYS = Object.keys(SELF.newApiPathMapping); - for (let i = 0; i < ALL_PATHS.length; i++) { - if (SELF[ALL_KEYS[i]]) { - SELF.fetchParticipatedChallengesFromApi(ALL_PATHS[i], callback); - } - } - } else { - SELF.fetchParticipatedChallengesFromApi(SELF.newApiPathMapping[filter], callback); - } - } - - /** - * Toggle upcoming/past/ongoing filters. - * @param filter selected filter - */ - toggleFilter(filter) { - this[filter] = !this[filter]; - if (this[filter]) { - this.fetchChallenges(filter); - } else { - this.upcomingChallenges = filter === 'isUpcomingChecked' ? [] : this.upcomingChallenges; - this.ongoingChallenges = filter === 'isOngoingChecked' ? [] : this.ongoingChallenges; - this.pastChallenges = filter === 'isPastChecked' ? [] : this.pastChallenges; - this.filteredChallenges = this.upcomingChallenges.concat(this.ongoingChallenges, this.pastChallenges); - this.filteredOngoingChallenges = this.ongoingChallenges; - this.filteredUpcomingChallenges = this.upcomingChallenges; - this.filteredPastChallenges = this.pastChallenges; - this.updateChallengesView(true); - } - } - - /** - * Show more results. - */ - seeMoreClicked() { - this.seeMore = this.seeMore + 1; - this.updateChallengesView(false); - } - - /** - * Update challenges view (called after fetching challenges from API). - * @param reset reset flag for hiding/showing more results - */ - updateChallengesView(reset) { - if (reset) { - this.seeMore = 1; - } - this.filterChallengesByTeams(); - this.filteredChallengesView = this.filteredChallenges.slice(0, this.seeMore * this.windowSize); - } - - /** - * Filtering challenges by teams - */ - filterChallengesByTeams() { - if (this.router.url === this.myChallengesRoutePathCommon && this.authService.isLoggedIn()) { - this.filteredChallenges = this.filteredChallenges.filter( - (v, i, a) => this.allTeams.indexOf(v['creator']['id']) > -1 - ); - this.filteredOngoingChallenges = this.filteredOngoingChallenges.filter( - (v, i, a) => this.allTeams.indexOf(v['creator']['id']) > -1 - ); - this.filteredUpcomingChallenges = this.filteredUpcomingChallenges.filter( - (v, i, a) => this.allTeams.indexOf(v['creator']['id']) > -1 - ); - this.filteredPastChallenges = this.filteredPastChallenges.filter( - (v, i, a) => this.allTeams.indexOf(v['creator']['id']) > -1 - ); - } - } - - /** - * Fetch teams function. - * @param path teams fetch URL - */ - fetchTeams(path) { - const SELF = this; - SELF.filteredChallenges = []; - this.apiService.getUrl(path, true, false).subscribe( - (data) => { - if (data['results']) { - const TEAMS = data['results'].map((item) => item['id']); - SELF.allTeams = SELF.allTeams.concat(TEAMS); - SELF.allTeams = SELF.allTeams.filter((v, i, a) => a.indexOf(v) === i); - SELF.allTeams.forEach((team) => { - SELF.fetchUnapprovedChallengesFromApi(team); - }); - SELF.fetchChallenges(null, null, "approved", "all"); - } - }, - (err) => { - if (err.status === 403) { - this.router.navigate(['permission-denied']); - } - SELF.globalService.handleApiError(err, false); - }, - () => {} - ); - } - - /** - * Append visibility to challenge API - * @param approved_status - * @param visibility - */ - getFetchChallengeApiPathWithVisibility(path, approved_status = "approved", visibility = "public") { - return path + "/" + approved_status + "/" + visibility; - } - - /** - * Fetch Challenges function. - * @param filter selected filter - * @param callback callback function - */ - fetchChallenges(filter = null, callback = null, approved_status = "approved", visibility = "public") { - if (!filter) { - const ALL_PATHS = Object.values(this.apiPathMapping); - const ALL_KEYS = Object.keys(this.apiPathMapping); - for (let i = 0; i < ALL_PATHS.length; i++) { - if (this[ALL_KEYS[i]]) { - let apiPath = this.getFetchChallengeApiPathWithVisibility(ALL_PATHS[i], approved_status, visibility); - this.fetchChallengesFromApi(apiPath, callback); - } - } - } else { - let apiPath = this.getFetchChallengeApiPathWithVisibility(this.apiPathMapping[filter], approved_status, visibility); - this.fetchChallengesFromApi(apiPath, callback); - } - } - - /** - * Fetch challenges from backend. - * @param path Challenge fetch URL - * @param callback Callback Function. - */ - fetchChallengesFromApi(path, callback = null) { - const SELF = this; - SELF.apiService.getUrl(path, true, false).subscribe( - (data) => { - if (path.includes('future')) { - SELF.upcomingChallenges = data['results']; - } else if (path.includes('present')) { - SELF.ongoingChallenges = data['results']; - } else if (path.includes('past')) { - SELF.pastChallenges = data['results']; - } - SELF.filteredChallenges = SELF.upcomingChallenges.concat(SELF.ongoingChallenges, SELF.pastChallenges); - SELF.filteredOngoingChallenges = SELF.ongoingChallenges; - SELF.filteredUpcomingChallenges = SELF.upcomingChallenges; - SELF.filteredPastChallenges = SELF.pastChallenges; - this.updateChallengesView(true); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - /** - * Fetch participated challenges from backend. - * @param path Challenge fetch URL - * @param callback Callback Function. - */ - fetchParticipatedChallengesFromApi(path, callback = null) { - const SELF = this; - SELF.apiService.getUrl(path, true, false).subscribe( - (data) => { - if (path.endsWith('present/')) { - SELF.ongoingChallenges = data['results']; - } else if (path.endsWith('past/')) { - SELF.pastChallenges = data['results']; - } - SELF.filteredChallenges = SELF.upcomingChallenges.concat(SELF.ongoingChallenges, SELF.pastChallenges); - SELF.filteredOngoingChallenges = SELF.ongoingChallenges; - SELF.filteredPastChallenges = SELF.pastChallenges; - }, - (err) => { - if (err.status === 403) { - this.router.navigate(['permission-denied']); - } - }, - () => {} - ); - } - - fetchUnapprovedChallengesFromApi(id) { - const path = this.endpointsService.allUnapprovedChallengesURL(id); - const SELF = this; - SELF.apiService.getUrl(path, true, false).subscribe( - (data) => { - const datas = data['results']; - if (datas) { - datas.forEach((challenge) => { - if (challenge['approved_by_admin'] === false) { - SELF.unapprovedChallengeList.push(challenge); - } - }); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } -} diff --git a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.module.ts b/frontend_v2/src/app/components/publiclists/challengelist/challengelist.module.ts deleted file mode 100644 index 1fcc661b21..0000000000 --- a/frontend_v2/src/app/components/publiclists/challengelist/challengelist.module.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { RouterModule } from '@angular/router'; -import { MatTabsModule } from '@angular/material'; - -// import component -import { ChallengecardComponent } from './challengecard/challengecard.component'; -import { ChallengelistComponent } from './challengelist.component'; -import { TeamlistComponent } from '../teamlist/teamlist.component'; -import { TeamcardComponent } from '../teamlist/teamcard/teamcard.component'; -import { CardlistComponent } from '../../utility/cardlist/cardlist.component'; - -// import module -import { SharedModule } from '../../../shared/shared.module'; - -@NgModule({ - declarations: [ - ChallengelistComponent, - ChallengecardComponent, - TeamcardComponent, - TeamlistComponent, - CardlistComponent, - ], - imports: [CommonModule, RouterModule, MatTabsModule, SharedModule], - exports: [ChallengelistComponent, ChallengecardComponent, TeamcardComponent, TeamlistComponent, CardlistComponent], - schemas: [CUSTOM_ELEMENTS_SCHEMA], -}) -export class ChallengelistModule {} diff --git a/frontend_v2/src/app/components/publiclists/publiclist-routing.module.ts b/frontend_v2/src/app/components/publiclists/publiclist-routing.module.ts deleted file mode 100644 index dae2b5484d..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclist-routing.module.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; - -// import component -import { ChallengelistComponent } from './challengelist/challengelist.component'; -import { PubliclistsComponent } from './publiclists.component'; -import { TeamlistComponent } from './teamlist/teamlist.component'; -import { TemplateChallengeListComponent } from './templatechallengelist/templatechallengelist.component'; - -const routes: Routes = [ - { - path: '', - component: PubliclistsComponent, - children: [ - { path: '', redirectTo: 'all', pathMatch: 'full' }, - { path: 'all', component: ChallengelistComponent }, - { path: 'me', component: ChallengelistComponent }, - { path: 'participated', component: ChallengelistComponent }, - { path: 'templates', component: TemplateChallengeListComponent } - ], - }, -]; - -const teamListRoutes: Routes = [ - { - path: '', - component: PubliclistsComponent, - children: [ - { path: '', redirectTo: 'participants', pathMatch: 'full' }, - { path: 'participants', component: TeamlistComponent }, - { path: 'hosts', component: TeamlistComponent }, - ], - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class PubliclistRoutingModule {} - -@NgModule({ - imports: [RouterModule.forChild(teamListRoutes)], - exports: [RouterModule], -}) -export class TeamlistsRoutingModule {} diff --git a/frontend_v2/src/app/components/publiclists/publiclist.module.ts b/frontend_v2/src/app/components/publiclists/publiclist.module.ts deleted file mode 100644 index 3f3bb6a65a..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclist.module.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import components -import { PubliclistsComponent } from './publiclists.component'; - -// import routes -import { PubliclistRoutingModule, TeamlistsRoutingModule } from './publiclist-routing.module'; - -// import Module -import { ChallengelistModule } from './challengelist/challengelist.module'; -import { SharedModule } from '../../shared/shared.module'; -import { TemplateChallengeListModule } from './templatechallengelist/templatechallengelist.module' - -@NgModule({ - declarations: [PubliclistsComponent], - imports: [CommonModule, PubliclistRoutingModule, ChallengelistModule, SharedModule], - exports: [ChallengelistModule, PubliclistsComponent, TemplateChallengeListModule], - schemas: [CUSTOM_ELEMENTS_SCHEMA], -}) -export class PubliclistModule {} - -@NgModule({ - declarations: [], - imports: [CommonModule, TeamlistsRoutingModule, PubliclistModule, SharedModule], - exports: [PubliclistModule], -}) -export class TeamlistsModule {} diff --git a/frontend_v2/src/app/components/publiclists/publiclists.component.html b/frontend_v2/src/app/components/publiclists/publiclists.component.html deleted file mode 100644 index 33623bc25a..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclists.component.html +++ /dev/null @@ -1,15 +0,0 @@ -
- - -
-
-
- -
- -
-
-
-
- - diff --git a/frontend_v2/src/app/components/publiclists/publiclists.component.scss b/frontend_v2/src/app/components/publiclists/publiclists.component.scss deleted file mode 100644 index a7f35b971f..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclists.component.scss +++ /dev/null @@ -1,31 +0,0 @@ -@import 'styles/variables'; - -.dashboard-flex { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.dashboard-content { - flex: 1; - min-height: 100vh; -} - -.web-container { - width: calc(100% - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} diff --git a/frontend_v2/src/app/components/publiclists/publiclists.component.spec.ts b/frontend_v2/src/app/components/publiclists/publiclists.component.spec.ts deleted file mode 100644 index f74f439bc1..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclists.component.spec.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PubliclistsComponent } from './publiclists.component'; -import { ActivatedRoute, Router, Routes } from '@angular/router'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from '../../services/global.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { TeamlistComponent } from './teamlist/teamlist.component'; -import { ChallengelistComponent } from './challengelist/challengelist.component'; -import { EndpointsService } from '../../services/endpoints.service'; -import { AuthService } from '../../services/auth.service'; -import { NotFoundComponent } from '../not-found/not-found.component'; -import { ApiService } from '../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { FormsModule } from '@angular/forms'; - -const routes: Routes = [ - { - path: 'teams', - component: PubliclistsComponent, - children: [ - { path: '', redirectTo: 'participants', pathMatch: 'full' }, - { path: 'participants', component: TeamlistComponent }, - { path: 'hosts', component: TeamlistComponent }, - ], - }, - { - path: 'challenges', - component: PubliclistsComponent, - children: [ - { path: '', redirectTo: 'all', pathMatch: 'full' }, - { path: 'all', component: ChallengelistComponent }, - { path: 'me', component: ChallengelistComponent }, - ], - }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -describe('PubliclistsComponent', () => { - let component: PubliclistsComponent; - let fixture: ComponentFixture; - let router: Router; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - imports: [RouterTestingModule.withRoutes(routes), HttpClientModule, FormsModule], - declarations: [PubliclistsComponent, ChallengelistComponent, TeamlistComponent, NotFoundComponent], - providers: [GlobalService, EndpointsService, AuthService, ApiService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(PubliclistsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/publiclists/publiclists.component.ts b/frontend_v2/src/app/components/publiclists/publiclists.component.ts deleted file mode 100644 index 475e95205b..0000000000 --- a/frontend_v2/src/app/components/publiclists/publiclists.component.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { Component, OnInit, AfterViewChecked, ChangeDetectorRef } from '@angular/core'; -import { AuthService } from '../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-publiclists', - templateUrl: './publiclists.component.html', - styleUrls: ['./publiclists.component.scss'], -}) -export class PubliclistsComponent implements OnInit, AfterViewChecked { - isAuth = false; - - /** - * Constructor. - * @param authService - * @param changeDetector - */ - constructor(public authService: AuthService, private cdRef: ChangeDetectorRef) {} - - /** - * Component on Initialization. - */ - ngOnInit() { - this.isAuth = this.authService.isAuth; - } - - /** - * DEV MODE: - * For resolving change in expression value after it is checked - */ - ngAfterViewChecked() { - const isAuth = this.authService.isAuth; - if (isAuth !== this.isAuth) { - this.isAuth = isAuth; - this.cdRef.detectChanges(); - } - } -} diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.html b/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.html deleted file mode 100644 index b73634b350..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.html +++ /dev/null @@ -1,65 +0,0 @@ -
-
-
- - - -
- - Team: - - - {{ teamView['team_name'] }} - - - {{ teamView['team_name'] }} - -
- - Team id: - - - {{ teamView['id'] }} - -
- - Created by: - - - {{ teamView['created_by'] }} - -
-
- - - -
-
-
-
-
Team Members
-
-
- {{ member }} - - - - -
-
-
-
diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.scss b/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.scss deleted file mode 100644 index 31d38ec417..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.scss +++ /dev/null @@ -1,168 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.team-card-container { - font-size: $fs-14; - position: relative; - .team-content { - cursor: pointer; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - width: 100%; - display: inline-block; - position: relative; - background: white; - padding: 6px 5px; - margin-bottom: 36px; - z-index: 5; - overflow: auto; - text-align: left; - i { - &.selectstate { - font-size: $fs-18; - margin-right: 10px; - color: $gray-dark; - margin-top: 15px; - } - font-size: $fs-16; - vertical-align: top; - margin-top: 15px; - } - .title { - &.toptitle { - margin-bottom: 10px; - } - color: $dark-black; - display: inline-block; - font-weight: $fw-regular; - } - .team-details { - display: inline-block; - margin: 2px 10px 0px 10px; - max-width: 300px; - overflow: hidden; - } - .team-detail { - color: rgb(22, 21, 21); - font-weight: $fw-light; - } - .team-icons { - display: inline-block; - position: relative; - float: right; - margin-top: 10px; - a { - &.host { - display: none; - } - } - i { - &.no-highlight { - color: $gray-dark; - } - font-size: $fs-16; - margin: 0px 10px 0px 10px; - } - } - label { - margin: 5px 0px 5px 5px; - } - } - .team-members { - text-align: left; - margin: 0 auto; - margin-top: -25px; - width: 100%; - position: relative; - overflow: hidden; - border-radius: 0px 0px 5px 5px; - max-height: 0; - transition: all 0.1s ease-in-out; - .title { - color: black; - margin-bottom: 10px; - font-weight: $fw-regular; - } - background: $gray-lighter; - } - .team-members .team-detail { - color: rgb(22, 21, 21); - font-weight: $fw-light; - } - &.selected { - &.expand, - &.noexpand { - .team-members { - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - max-height: 300px; - transition: all 0.1s ease-in-out; - padding: 20px 15px 15px 40px; - margin-bottom: 15px; - } - } - &.noexpand { - .team-content { - margin-bottom: 0px; - @include box-shadow(0px, 0px, 10px, 0px, $overlay-light); - } - } - &.expand { - .team-content { - margin-bottom: 0px; - } - } - } -} - -@include screen-small { - .team-card-container { - .team-content { - width: 95%; - .team-details { - max-width: 185px; - } - .team-icons { - text-align: center; - display: block; - float: unset; - font-size: 100px; - } - } - .team-members { - width: 100%; - } - } -} - -.selected { - height: unset !important; - border-bottom-style: none !important; -} - -.title.toptitle { - margin-bottom: 0px !important; -} - -.fa-users { - padding: 0px 3px 0px 8px; -} - -#TeamToggleButton { - margin-bottom: 13.4px; -} - -.fa-user-plus, -.fa-pencil, -.fa-trash { - margin: 0px; - padding-left: 10px; -} - -.member-class { - display: flex; - margin: 2% 0%; -} - -.trash-icon { - margin-left: 80%; - position: absolute; -} diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.spec.ts b/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.spec.ts deleted file mode 100644 index 23451462be..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.spec.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { EventEmitter } from '@angular/core'; - -import { TeamcardComponent } from './teamcard.component'; -import { GlobalService } from '../../../../services/global.service'; -import { ApiService } from '../../../../services/api.service'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { AuthService } from '../../../../services/auth.service'; -import { EndpointsService } from '../../../../services/endpoints.service'; - -describe('TeamcardComponent', () => { - let component: TeamcardComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [TeamcardComponent], - providers: [GlobalService, ApiService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(TeamcardComponent); - component = fixture.componentInstance; - component.team = { members: [] }; - component.selected = false; - component.isOnChallengePage = false; - component.deleteTeamCard = new EventEmitter(); - component.deleteMemberCard = new EventEmitter(); - component.selectTeamCard = new EventEmitter(); - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.ts b/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.ts deleted file mode 100644 index fe2684dd7c..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamcard/teamcard.component.ts +++ /dev/null @@ -1,213 +0,0 @@ -import { Component, OnInit, OnChanges, Input, Output, EventEmitter, SimpleChanges } from '@angular/core'; -import { AuthService } from '../../../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-teamcard', - templateUrl: './teamcard.component.html', - styleUrls: ['./teamcard.component.scss'], -}) -export class TeamcardComponent implements OnInit, OnChanges { - /** - * Authentication Service subscription - */ - authServiceSubscription: any; - - /** - * Current Authentication state - */ - authState: any; - - /** - * Team object - */ - @Input() team: object; - - /** - * Selected flag - */ - @Input() selected: boolean; - - /** - * Update - */ - @Input() isOnChallengePage: boolean; - - /** - * Delete team event - */ - @Output() deleteTeamCard = new EventEmitter(); - - /** - * Delete member event - */ - @Output() deleteMemberCard = new EventEmitter(); - - /** - * Select team event - */ - @Output() selectTeamCard = new EventEmitter(); - - /** - * Deselect team event - */ - @Output() deselectTeamCard = new EventEmitter(); - - /** - * Edit team event - */ - @Output() editTeamCard = new EventEmitter(); - - /** - * Add members event - */ - @Output() addMembersTeamCard = new EventEmitter(); - - /** - * Team relatd text - */ - teamText = ''; - - /** - * Team view object - */ - teamView = {}; - - /** - * Team Member Array - */ - memberArray = []; - - /** - * Team Member ID Array - */ - memberIdArray = []; - - /** - * Is currently selected - */ - isSelected = false; - - /** - * Is a host team - */ - isHost = false; - - /** - * Constructor. - * @param authService AuthService Injection. - */ - constructor( - public authService: AuthService - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.updateView(); - this.authServiceSubscription = this.authService.change.subscribe((authState) => { - this.authState = authState; - }); - } - - /** - * Component on change detected. - * @param changes changes detected in the inputs. - */ - ngOnChanges(changes: SimpleChanges) { - this.updateView(); - } - - /** - * Select a team content toggle. - */ - selectTeamContentToggle() { - this.isSelected = !this.isSelected; - this.team['isSelected'] = this.isSelected; - this.deselectTeamCard.emit(this.team); - } - - /** - * Select a team toggle. - */ - selectTeamToggle() { - if (this.isHost || this.isOnChallengePage) { - this.isSelected = !this.isSelected; - this.selectTeam(); - } - } - - /** - * Fires team edit event. - */ - editTeam(e) { - e.stopPropagation(); - this.editTeamCard.emit(this.team); - } - - /** - * Fires add members to team event. - */ - addMembersToTeam(e) { - e.stopPropagation(); - this.addMembersTeamCard.emit(this.team['id']); - } - - /** - * Fires delete team event. - */ - deleteTeam(e) { - e.stopPropagation(); - this.deleteTeamCard.emit(this.team['id']); - } - - /** - * Fires delete member event. - */ - deleteTeamMember(e, participantId) { - e.stopPropagation(); - this.deleteMemberCard.emit({ teamId: this.team['id'], participantId: participantId }); - } - - /** - * Fires slect team event. - */ - selectTeam() { - this.selectTeamCard.emit(this.team); - } - - /** - * UI view update, called after onInit. - */ - updateView() { - this.teamView['team_name'] = this.team['team_name']; - this.teamView['created_by'] = this.team['created_by']; - this.teamView['team_url'] = this.team['team_url']; - this.teamView['id'] = this.team['id']; - if (this.team['isHost']) { - this.isHost = true; - } - if (this.team['isSelected']) { - this.isSelected = true; - } else { - this.isSelected = false; - } - const temp = this.team['members']; - this.memberArray = []; - this.memberIdArray = []; - for (let i = 0; i < temp.length; i++) { - if (temp[i]['member_name']) { - this.memberArray.push(temp[i]['member_name']); - this.memberIdArray.push(temp[i]['id']); - } else { - this.memberArray.push(temp[i]['user']); - this.memberIdArray.push(temp[i]['id']); - } - } - this.teamView['members'] = this.memberArray; - this.teamView['member_ids'] = this.memberIdArray; - } -} diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.html b/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.html deleted file mode 100644 index 87365c698c..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.html +++ /dev/null @@ -1,154 +0,0 @@ -
-
-
-
- Filter team by name -
-
-
- -
-
-
-
-
-
-
-
- {{ teamSelectTitle }} -
-
-
- No team exists for now. Start by creating a new team! -
-
    - - -
-
-
- -
- - - -
-
-
-
-
-
-
-
-
- {{ teamCreateTitle }} -
-
-
-
- - - -
- Team name is required -
-
-
- - - -
-
- -
-
-
-
-
-
-
diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.scss b/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.scss deleted file mode 100644 index d4d2680684..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.scss +++ /dev/null @@ -1,214 +0,0 @@ -@import '../../../../styles/variables'; - -.exist-team-card { - ul { - &.collapsible { - border: 0; - box-shadow: none; - li { - box-shadow: 0 0 5px #e0e0e0; - } - } - li { - margin: 10px 0px; - min-height: 40px; - .collapsible-header { - border-bottom: 0; - line-height: initial; - min-height: initial; - padding: 10px 5px; - i { - display: inline-block; - float: none; - font-size: initial; - line-height: 40px; - margin-right: 0; - text-align: center; - width: 2rem; - } - } - .collapsible-body { - background-color: #fafafa; - border-top: 1px solid #e0e0e0; - padding: 10px 40px; - p { - padding: 3px 0; - } - } - } - } - i.list-icon { - line-height: 25px; - } -} - -.new-team-card { - padding-bottom: 40px; -} - -.pagination { - margin: 0px; -} - -.pagination-title { - padding: 0px 10px; -} - -div.show-member-title { - width: calc(100% - 35px); - float: right; -} - -.page-msg { - margin-top: 16px; -} - -.team-card { - position: relative; - background: $dark-gray; - max-width: 235px; - height: 270px; - border-radius: 6px; - box-shadow: 0px 4px 24px #797979; - overflow: hidden; - margin-bottom: 30px; - margin-left: auto; - margin-right: auto; - transition: all 0.2s ease-in-out; - &:hover { - box-shadow: 0px 0px 10px #797979; - } -} - -.team-bg { - position: absolute; - top: -40px; - left: -50px; - img { - width: 130%; - opacity: 0.15; - } -} - -.team-bg-over { - position: absolute; - bottom: -7px; - width: 100%; - img { - width: 100%; - } -} - -.team-profile { - display: block; - width: 60px; - height: 60px; - border-radius: 50%; - overflow: hidden; - position: absolute; - bottom: 25px; - left: 15px; - box-shadow: 0px 4px 8px #989898; - img { - width: 100%; - } -} - -.team-player { - position: absolute; - bottom: 14px; - text-align: right; - padding-left: 50px; - right: 15px; - h4 { - font-size: 16px; - } -} - -.team-link-head { - padding: 10px 15px; - position: absolute; - width: 100%; - top: 0; - left: 0; - z-index: 10; - span { - padding-right: 10px; - a { - color: $light-gray; - &:hover { - color: #fff; - } - } - font-size: 14px; - transition: all 0.2s ease-in-out; - } -} - -span.link-team-user { - padding-right: 0px; - font-size: 12px; - line-height: 25px; -} - -.team-heading { - margin-bottom: 30px; - color: #9d9d9d; -} - -.ev-panel-title { - margin: 10px 0px; -} - -.input-field label { - font-size: 12px; -} - -.fa-chevron-left, -.fa-chevron-right { - font-size: 12px; -} - -.team-name-filter { - width: 100%; -} - -.filter-team { - margin: 30px 0px 10px 10px; -} - -.filter-card { - height: 60px; -} - -.filter-card input { - width: 47%; - outline: none !important; - border-bottom: none; - border-radius: 4px; - box-shadow: 0px 0px 10px #dedede; - height: 42px; - padding: 10px; - font-size: $fs-15; - font-weight: $fw-light; -} - -@media only screen and (max-width: 992px) and (min-width: 601px) { - .team-heading { - margin-top: 30px; - } -} - -@media only screen and (max-width: $small-screen) { - .filter-card input { - width: 100%; - } - - .list-card { - margin-top: 5%; - } - - .team-name-filter { - width: 96%; - } -} diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.spec.ts b/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.spec.ts deleted file mode 100644 index 54434c5e30..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.spec.ts +++ /dev/null @@ -1,66 +0,0 @@ -import { async, ComponentFixture, fakeAsync, getTestBed, TestBed, tick } from '@angular/core/testing'; - -import { TeamlistComponent } from './teamlist.component'; -import { RouterTestingModule } from '@angular/router/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { HttpClientModule } from '@angular/common/http'; -import { Router, Routes } from '@angular/router'; - -import { PubliclistsComponent } from '../publiclists.component'; -import { By } from '@angular/platform-browser'; -import { FormsModule } from '@angular/forms'; -import { NotFoundComponent } from '../../not-found/not-found.component'; - -const routes: Routes = [ - { path: '/teams/participants', component: TeamlistComponent }, - { path: '/teams/hosts', component: TeamlistComponent }, - { - path: 'challenge-create', - redirectTo: '/teams/hosts', - pathMatch: 'full', - }, - { - path: '404', - component: NotFoundComponent, - }, - { - path: '**', - redirectTo: '/404', - pathMatch: 'full', - }, -]; - -describe('TeamlistComponent', () => { - let component: TeamlistComponent; - let fixture: ComponentFixture; - let router: Router; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [TeamlistComponent, NotFoundComponent], - providers: [GlobalService, ApiService, AuthService, ChallengeService, EndpointsService], - imports: [RouterTestingModule.withRoutes(routes), HttpClientModule, FormsModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - router = TestBed.get(Router); - fixture = TestBed.createComponent(TeamlistComponent); - component = fixture.componentInstance; - }); - - it('should create', fakeAsync(() => { - router.navigate(['/teams/hosts']); - tick(); - - fixture.detectChanges(); - - expect(component).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.ts b/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.ts deleted file mode 100644 index 5ca6b305f9..0000000000 --- a/frontend_v2/src/app/components/publiclists/teamlist/teamlist.component.ts +++ /dev/null @@ -1,697 +0,0 @@ -import { Component, OnInit, ViewChildren, QueryList, OnDestroy } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { Router, ActivatedRoute } from '@angular/router'; -import { BehaviorSubject } from 'rxjs'; -import { ChallengeService } from '../../../services/challenge.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-teamlist', - templateUrl: './teamlist.component.html', - styleUrls: ['./teamlist.component.scss'], -}) -export class TeamlistComponent implements OnInit, OnDestroy { - isnameFocused = false; - isurlFocused = false; - isTeamNameRequired = false; - - /** - * Auth Service public instance - */ - authServicePublic: any; - - /** - * Router public instance - */ - routerPublic: any; - - /** - * Authentication Service subscription - */ - authServiceSubscription: any; - - /** - * Team list - */ - allTeams = []; - - /** - * Filtered team list - */ - filteredTeams = []; - - /** - * Filtered team observable-source - */ - private filteredTeamSource = new BehaviorSubject(this.filteredTeams); - - /** - * Filtered team observable - */ - filteredTeamsObservable = this.filteredTeamSource.asObservable(); - - /** - * See more content in frame - */ - seeMore = 1; - - /** - * Frame size - */ - windowSize = 2; - - /** - * Select team title - */ - teamSelectTitle = ''; - - /** - * Create team title - */ - teamCreateTitle = ''; - - /** - * Create team button - */ - teamCreateButton = ''; - - /** - * Create team Object - */ - create_team = { - team_name: '', - team_url: '', - }; - - /** - * Is a host - */ - isHost = false; - - /** - * Is router currently on challenges page - */ - isOnChallengePage = false; - - /** - * Fetch teams URL - */ - fetchTeamsPath: any; - - /** - * Create teams URL - */ - createTeamsPath: any; - - /** - * Delete teams URL - */ - deleteTeamsPath: any; - - /** - * Delete member URL - */ - deleteMembersPath: any; - - /** - * Currently selected team - */ - selectedTeam: any = null; - - /** - * Currently clicked team - */ - currentlyClickedTeam: any = null; - - /** - * challenge object - */ - challenge: any; - - /** - * To call the API inside the modal - */ - apiCall: any; - - /** - * Form components - */ - teamForm = 'formteam'; - - /** - * Form fields in the team form (team cards) - */ - @ViewChildren('formteam') - components: QueryList; - - /** - * Routh path for login - */ - authRoutePath = '/auth/login'; - - /** - * Route path for host teams - */ - hostTeamRoutePath = '/teams/hosts'; - - /** - * Route path for participant teams - */ - participantTeamRoutePath = '/teams/participants'; - - /** - * Route path for create challenge - */ - createChallengeRoutePath = '/challenge-create'; - - /** - * Route path for create template challenge page - */ - createTemplateChallengeRoutePath = '/template-challenge-create'; - - /** - * Filter query as participant team name - */ - filterTeamsQuery = ''; - - /** - * Content for terms and conditions - */ - termsAndConditionContent = [ - 'Participants can train their models with the released training set' + - ', also with other training images as long as they are disjoint with the test set' + - '(see arXiv paper)', - - 'We provide the evaluation codes, along with the released validation dataset, ' + - 'for participants to validate their algorithms on validation set during the validation phase.' + - 'The usage instruction is described in "readme.txt" released along with the train/validation data. ', - - 'For testing phase of identification track, ' + - 'we will release the test set where gallery set is fully labelled with idenitities, ' + - 'and probe images with only pseudo labels (not related to identities). ' + - "Participants will submit a file reporting each probe image's " + - 'feature distance to the top-20 matching gallery identities and the corresponding identity indexes ' + - '(see "submission format" on the "Overview" page), and then their performance will be measured by our system. ', - - 'For testing phase of verification track, ' + - 'we will release the images with only pseudo labels and the constructed image pairs, ' + - 'without indicating they are positive or negative. ' + - "Participants will submit a file reporting each image pair's matching socre, " + - 'and then their performance will be measured by our system. ', - ]; - - /** - * Team list route's query parameter subscription - */ - teamListRouteQueryParamSub = null; - - /** - * Is the team being selected for a template based challenge or not - */ - isTemplateChallenge = false; - - /** - * Id of the challenge template selected - */ - templateId = null; - - /** - * Number of phases in the challenge template - */ - templatePhases = null; - - /** - * Constructor. - * @param route ActivatedRoute Injection. - * @param router Router Injection. - * @param globalService GlobalService Injection. - * @param authService AuthService Injection. - * @param apiService ApiService Injection. - * @param challengeService ChallengeService Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private apiService: ApiService, - private authService: AuthService, - private globalService: GlobalService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private endpointsService: EndpointsService - ) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.routerPublic = this.router; - - if (!this.authService.isLoggedIn()) { - this.router.navigate([this.authRoutePath]); - } - - this.authServicePublic = this.authService; - - this.authServiceSubscription = this.authService.change.subscribe((authState) => { - if (!authState.isLoggedIn) { - this.router.navigate([this.authRoutePath]); - } - }); - - this.teamListRouteQueryParamSub = this.route.queryParams.subscribe((params) => { - this.isTemplateChallenge = params['template'] || false; - if (this.isTemplateChallenge) { - this.templateId = params['templateId']; - this.templatePhases = params['templatePhases']; - } - }); - - if (this.router.url === this.hostTeamRoutePath || this.isTemplateChallenge) { - this.isHost = true; - this.fetchTeamsPath = 'hosts/challenge_host_team'; - this.createTeamsPath = 'hosts/create_challenge_host_team'; - this.deleteTeamsPath = 'hosts/remove_self_from_challenge_host'; - this.deleteMembersPath = 'hosts/challenge_host_team//challenge_host/'; - this.fetchMyTeams(this.fetchTeamsPath); - this.teamCreateTitle = 'Create a New Team'; - this.teamSelectTitle = 'Please Select a Challenge Host Team'; - this.teamCreateButton = 'Create Host Team'; - } else { - if (this.router.url !== this.participantTeamRoutePath) { - this.isOnChallengePage = true; - this.challengeService.currentChallenge.subscribe((challenge) => (this.challenge = challenge)); - } - this.fetchTeamsPath = 'participants/participant_team'; - this.createTeamsPath = this.fetchTeamsPath; - this.deleteTeamsPath = 'participants/remove_self_from_participant_team'; - this.deleteMembersPath = 'participants/participant_team//participant/'; - this.fetchMyTeams(this.fetchTeamsPath); - this.teamCreateTitle = 'Create a New Participant Team'; - this.teamSelectTitle = 'My Existing Participant Teams'; - this.teamCreateButton = 'Create Participant Team'; - } - } - - ngOnDestroy() { - if (this.authServiceSubscription) { - this.authServiceSubscription.unsubscribe(); - } - this.teamListRouteQueryParamSub.unsubscribe(); - } - - /** - * Show more results. - */ - seeMoreClicked() { - this.seeMore = this.seeMore + 1; - this.updateTeamsView(false); - } - - /** - * Show less results. - */ - seeLessClicked() { - this.seeMore = this.seeMore - 1; - this.updateTeamsView(false); - } - - /** - * Update teams view (called after fetching teams from API). - * @param reset reset flag - */ - updateTeamsView(reset) { - if (reset) { - this.seeMore = 1; - } - this.filteredTeams = this.allTeams.slice((this.seeMore - 1) * this.windowSize, this.seeMore * this.windowSize); - this.filteredTeamSource.next(this.filteredTeams); - } - - /** - * Fetch my teams from a given URL. - * @param path Fetch teams URL - */ - fetchMyTeams(path) { - if (this.authService.isLoggedIn()) { - if (this.filterTeamsQuery === '') { - this.fetchTeams(path); - } else { - this.filterTeam(this.filterTeamsQuery); - } - } - } - - /** - * Select a team and unselect others. - */ - selectTeamWrapper() { - const SELF = this; - const selectTeam = (team) => { - SELF.selectedTeam = team; - }; - return selectTeam; - } - - /** - * Unselect a team. - */ - deselectTeamWrapper() { - const SELF = this; - const selectTeam = (team) => { - SELF.currentlyClickedTeam = team; - SELF.unselectOtherTeams(SELF); - }; - return selectTeam; - } - - /** - * Unselecting other teams function. - */ - unselectOtherTeams(self) { - const temp = self.allTeams.slice(); - for (let i = 0; i < temp.length; i++) { - temp[i]['isSelected'] = false; - if (self.currentlyClickedTeam['id'] === temp[i]['id']) { - temp[i]['isSelected'] = true; - } - } - self.allTeams = temp; - self.updateTeamsView(false); - } - - /** - * Append additional parameters to teams objects. - */ - appendIsSelected(teams) { - for (let i = 0; i < teams.length; i++) { - teams[i]['isSelected'] = false; - teams[i]['isHost'] = this.isHost; - } - return teams; - } - - /** - * Fetch teams from backend. - * @param path Fetch teams URL. - */ - fetchTeams(path) { - const SELF = this; - this.globalService.startLoader('Fetching Teams'); - this.apiService.getUrl(path).subscribe( - (data) => { - this.globalService.stopLoader(); - SELF.updateTeamsData(data); - }, - (err) => { - if (err.status === 403) { - this.router.navigate(['permission-denied']); - } - this.globalService.stopLoader(); - SELF.globalService.handleApiError(err, false); - }, - () => {} - ); - } - - /** - * Display confirm dialog before deleting a team. - */ - deleteTeamWrapper() { - const SELF = this; - const deleteTeam = (e) => { - SELF.apiCall = () => { - SELF.apiService.deleteUrl(SELF.deleteTeamsPath + '/' + e).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'You were removed from the team!', 5); - SELF.fetchMyTeams(SELF.fetchTeamsPath); - SELF.selectedTeam = null; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Would you like to remove yourself ?', - content: 'Note: This action will remove you from the team', - confirm: 'Yes', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - return false; - }; - return deleteTeam; - } - - /** - * Display Modal for editing team details. - */ - editTeamWrapper() { - const SELF = this; - let TeamUrl; - const editTeam = (team) => { - const teamId = team['id']; - const teamName = team['team_name']; - const teamUrl = team['team_url']; - TeamUrl = this.isHost - ? SELF.endpointsService.hostTeamURL(teamId) - : SELF.endpointsService.participantTeamURL(teamId); - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - SELF.apiService.patchUrl(TeamUrl, BODY).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Team Updated', 5); - SELF.fetchMyTeams(SELF.fetchTeamsPath); - SELF.selectedTeam = null; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Edit team details', - content: '', - confirm: 'Confirm', - deny: 'Cancel', - form: [ - { - isRequired: false, - label: 'team_name', - placeholder: 'Team Name', - value: teamName, - type: 'text', - }, - { - isRequired: false, - label: 'team_url', - placeholder: 'Team URL', - value: teamUrl, - type: 'text', - }, - ], - isButtonDisabled: true, - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - }; - return editTeam; - } - - /** - * Display modal to add members to the team. - */ - addMembersToTeamWrapper() { - const SELF = this; - const addMembersToTeam = (team) => { - SELF.apiCall = (params) => { - const BODY = JSON.stringify(params); - let apiPath = SELF.endpointsService.participantTeamInviteURL(team); - if (SELF.isHost) { - apiPath = SELF.endpointsService.hostTeamInviteURL(team); - } - SELF.apiService.postUrl(apiPath, BODY).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'User added to the team successfully', 5); - SELF.fetchMyTeams(SELF.fetchTeamsPath); - SELF.selectedTeam = null; - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Invite members to the team', - content: '', - confirm: 'ADD', - deny: 'Cancel', - form: [ - { - isRequired: true, - label: 'email', - placeholder: 'Enter the email address', - type: 'email', - }, - ], - isButtonDisabled: true, - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showModal(PARAMS); - }; - return addMembersToTeam; - } - - /** - * Create Team function. - * @param formname name of form fields (#). - */ - createTeam(formname) { - this.globalService.formValidate(this.components, this.createTeamSubmit, this); - } - - /** - * Called after create team form is validated. - * @param isvalidForm - */ - createTeamSubmit(isvalidForm) { - if (isvalidForm) { - const API_PATH = this.createTeamsPath; - const url = this.create_team['team_url']; - let TEAM_BODY: any = { - team_name: this.create_team['team_name'], - }; - if (url) { - TEAM_BODY['team_url'] = url; - } - TEAM_BODY = JSON.stringify(TEAM_BODY); - this.globalService.startLoader('Creating Team'); - this.apiService.postUrl(API_PATH, TEAM_BODY).subscribe( - (data) => { - this.globalService.stopLoader(); - // Success Message in data.message - this.globalService.showToast('success', 'Team created successfully!', 5); - this.fetchMyTeams(this.fetchTeamsPath); - - // Reset input - this.create_team = { - team_url: '', - team_name: '', - }; - - this.isnameFocused = false; - this.isurlFocused = false; - this.isTeamNameRequired = false; - }, - (err) => { - this.globalService.stopLoader(); - this.globalService.showToast('error', err.error.team_name, 5); - this.globalService.handleFormError(this.components, err); - }, - () => {} - ); - } else if (this.create_team['team_name'] === '') { - this.isTeamNameRequired = true; - } - } - - /** - * Create challenge (redirect). - */ - createChallenge() { - this.challengeService.changeCurrentHostTeam(this.selectedTeam); - this.router.navigate([this.createChallengeRoutePath]); - } - - createChallengeFromTemplate() { - this.challengeService.changeCurrentHostTeam(this.selectedTeam); - this.router.navigate([this.createTemplateChallengeRoutePath, this.templateId, this.templatePhases]); - } - - /** - * Display confirm dialog before deleting a team member. - */ - deleteTeamMemberWrapper() { - const SELF = this; - const deleteTeamMember = (team) => { - const deleteUrl = SELF.deleteMembersPath.replace('', team.teamId); - SELF.apiCall = (params) => { - SELF.apiService.deleteUrl(deleteUrl + team.participantId).subscribe( - (data) => { - // Success Message in data.message - SELF.globalService.showToast('success', 'Member was removed from the team!', 5); - SELF.fetchMyTeams(SELF.fetchTeamsPath); - SELF.selectedTeam = null; - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => {} - ); - }; - const PARAMS = { - title: 'Would you like to remove this member ?', - content: 'Note: This action will remove this member from the team', - confirm: 'Yes', - deny: 'Cancel', - confirmCallback: SELF.apiCall, - }; - SELF.globalService.showConfirm(PARAMS); - return false; - }; - return deleteTeamMember; - } - - /** - * Filter teams by team name - * @param teamName Participant team name - */ - filterTeam(teamName) { - const SELF = this; - SELF.filterTeamsQuery = teamName; - let API_PATH; - if (SELF.isHost) { - API_PATH = SELF.endpointsService.FilteredHostTeamURL(teamName); - } else { - API_PATH = SELF.endpointsService.FilteredParticipantTeamURL(teamName); - } - const name = SELF.filterTeamsQuery; - SELF.apiService.getUrl(API_PATH).subscribe( - (data) => { - if (name === SELF.filterTeamsQuery) { - SELF.updateTeamsData(data); - } - }, - (err) => { - SELF.globalService.handleApiError(err, true); - }, - () => {} - ); - } - - /** - * Update teams data. - * @param teamsData Fetched teams data. - */ - updateTeamsData(teamsData) { - if (teamsData['results']) { - this.allTeams = teamsData['results']; - if (this.isHost || this.isOnChallengePage) { - this.allTeams = this.appendIsSelected(this.allTeams); - } - this.updateTeamsView(true); - } - } -} diff --git a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.html b/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.html deleted file mode 100644 index 894542cffe..0000000000 --- a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.html +++ /dev/null @@ -1,34 +0,0 @@ -
-

All Challenge Templates

- -
diff --git a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.scss b/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.scss deleted file mode 100644 index b32b4ee1ef..0000000000 --- a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.scss +++ /dev/null @@ -1,42 +0,0 @@ -@import 'styles/variables'; - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} - -.none { - margin: 1%; -} - -@import 'styles/variables'; - -.ev-challenge-card { - min-height: 415px; -} - -.bg-img { - width: 100%; - height: 100%; - margin: auto; -} - -.margin-top-btm { - margin-top: 10px; - margin-bottom: 25px; -} - -.card { - margin-left: 0; - margin-right: 0; -} - -p { - word-wrap: break-word; -} - -.card-content { - height: 275px; - overflow: hidden; -} diff --git a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.ts b/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.ts deleted file mode 100644 index 6496ca82e8..0000000000 --- a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.component.ts +++ /dev/null @@ -1,78 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ApiService } from '../../../services/api.service'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-templatechallengelist', - templateUrl: './templatechallengelist.component.html', - styleUrls: ['./templatechallengelist.component.scss'], -}) -export class TemplateChallengeListComponent implements OnInit { - /** - * Is the user logged in? - */ - isLoggedIn = false; - - /** - * All the challenge templates are stored here - */ - challengeTemplates = []; - - /** - * Path to create a template based challenge - */ - templateChallengeCreatePath = '/template-challenge-create'; - - /** - * Path to fetch all challenge templates - */ - templateChallengesFetchPath = 'challenges/get_all_challenge_templates/'; - - /** - * Constructor. - * @param authService AuthService Injection. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - */ - constructor(public authService: AuthService, private globalService: GlobalService, private apiService: ApiService) {} - - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - this.fetchChallengeTemplates(); - } - - /* - Template is of form: - { - "title": , - "image": <preview image of the challenge template>, - "dataset": <string discribing the dataset>, - "eval_metrics": <an array or list of strings which are the leaderboard metrics>, - "phases": <number of challenge phases>, - "splits": <number of dataset splits>, - "id": <id_of_challenge_template> - } - */ - fetchChallengeTemplates(callback = null) { - this.apiService.getUrl(this.templateChallengesFetchPath, true, false).subscribe( - (data) => { - for (let i = 0; i < data.length; i++) { - this.challengeTemplates.push(data[i]); - } - }, - (err) => { - this.globalService.showToast( - 'error', - 'Sorry, something went wrong when fetching the templates. Please try again later.' - ); - }, - () => {} - ); - } -} diff --git a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.module.ts b/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.module.ts deleted file mode 100644 index e87b11b7fe..0000000000 --- a/frontend_v2/src/app/components/publiclists/templatechallengelist/templatechallengelist.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -// import component -import { TemplateChallengeListComponent } from './templatechallengelist.component'; - -// import module -import { SharedModule } from '../../../shared/shared.module'; - -@NgModule({ - declarations: [TemplateChallengeListComponent], - imports: [CommonModule, SharedModule], - exports: [TemplateChallengeListComponent], -}) -export class TemplateChallengeListModule {} diff --git a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create-routing.module.ts b/frontend_v2/src/app/components/template-challenge-create/template-challenge-create-routing.module.ts deleted file mode 100644 index 53f8d76612..0000000000 --- a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create-routing.module.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; - -// import component -import { TemplateChallengeCreateComponent } from './template-challenge-create.component'; - -const routes: Routes = [ - { - path: '', - component: TemplateChallengeCreateComponent, - }, -]; - -@NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule], -}) -export class TemplateChallengeCreateRoutingModule {} \ No newline at end of file diff --git a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.html b/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.html deleted file mode 100644 index 860294ec62..0000000000 --- a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.html +++ /dev/null @@ -1,71 +0,0 @@ -<app-side-bar *ngIf="authService.isAuth"></app-side-bar> -<app-header-static></app-header-static> - -<div class="web-container"> - <div class="challenge-create-flex"> - <div class="challenge-create-content"> - <section class="ev-md-container text-center"> - <h4 class="fw-light">Create Challenge</h4> - <br /> - <div class="form"> - <div class="row row-lr-margin"> - <div class="align-left col-sm-10 col-lr-pad"> - <span class="fw-regular fs-16 text-med-black">Challenge Title</span> - <input - type="text" - [(ngModel)]="challengeData['title']" - name="title" - id="title" - /> - <span class="form-icon"><i class="fa fa-text"></i></span> - </div> - </div> - <div class="row row-lr-margin"> - <div class="align-left col-sm-10 col-lr-pad"> - <span class="fs-16 fw-regular text-med-black">Challenge Descripiton</span> - <input - type="text" - [(ngModel)]="challengeData['description']" - name="description" - id="description" - /> - <span class="form-icon"><i class="fa fa-text"></i></span> - </div> - </div> - <div class="row row-lr-margin"> - <div class="align-left col-sm-10 col-lr-pad"> - <span class="text-med-black fw-regular fs-16">Start date and time</span> - <input type="datetime-local" [(ngModel)]="challengeData['start_date']"/><br /> - <span class="text-med-black fw-regular fs-16">End date and time</span> - <input type="datetime-local" [(ngModel)]="challengeData['end_date']"/> - </div> - </div> - <div class="row row-lr-margin"> - <span class="fs-20 text-med-black">Challenge Phases</span> - <div class="row row-lr-margin" *ngFor="let phase of challenge_phases"> - <div class="align-left col-sm-10 col-lr-pad challenge-phase"> - <span class="text-med-black fw-regular fs-16">Name for Phase {{phase['id']}}</span> - <input - type="text" - [(ngModel)]="phase['name']" - name="phase['id']" - id="phase['id']" - /> - <span class="form-icon"><i class="fa fa-text"></i></span> - <span class="text-med-black fw-regular fs-16">Start date and time</span> - <input type="datetime-local" [(ngModel)]="phase['start_date']"/><br /> - <span class="text-med-black fw-regular fs-16">End date and time</span> - <input type="datetime-local" [(ngModel)]="phase['end_date']"/> - </div> - </div> - </div> - <button class="btn btn-waves-effect grad-rec-btn waves-dark ev-btn-dark grad-btn-dark fw-light fs-14" (click)="createTemplateChallenge()"> - Create - </button> - </div> - </section> - </div> - <app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> - </div> -</div> -<app-footer *ngIf="!authService.isAuth"></app-footer> diff --git a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.scss b/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.scss deleted file mode 100644 index 5bc6db6909..0000000000 --- a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.scss +++ /dev/null @@ -1,117 +0,0 @@ -@import 'styles/variables'; - -.web-container { - width: calc(100vw - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -.challenge-phase { - margin-top: 2rem; -} - -::-webkit-calendar-picker-indicator:hover{ - cursor:pointer; -} - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} - -@import 'styles/variables'; - -.ev-challenge-card { - min-height: 415px; -} - -p { - word-wrap: break-word; -} - -@import 'styles/variables'; - -.challenge-create-flex { - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.challenge-create-content { - flex: 1; - min-height: 100vh; -} - -.web-container { - width: calc(100% - 223px); - float: right; - padding-top: 70px; - overflow-x: hidden; - &.center { - float: none; - margin: 0 auto; - text-align: left; - overflow: hidden; - } -} - -.zip-file-title { - margin-bottom: 20px; - margin-left: 11px; -} - -.syntax-wrn-msg { - font-size: 1em; -} - -.hr-line { - line-height: 1em; - position: relative; - outline: 0; - border: 0; - color: black; - text-align: center; - height: 1.5em; - opacity: 0.5; - &:before { - content: ''; - background: linear-gradient(to right, transparent, #818078, transparent); - position: absolute; - left: 0; - top: 50%; - width: 100%; - height: 1px; - } - &:after { - content: ''; - position: relative; - display: inline-block; - padding: 0 0.5em; - line-height: 1.5em; - color: #818078; - background-color: #fcfcfa; - } -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .web-container { - width: 100%; - } -} - -@import './variables.scss'; -@import './mixins.scss'; - -.row .row-lr-margin { - margin-bottom: 20px; -} diff --git a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.ts b/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.ts deleted file mode 100644 index 126c44e09a..0000000000 --- a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.component.ts +++ /dev/null @@ -1,149 +0,0 @@ -import { Component, OnInit, OnDestroy } from '@angular/core'; - -import { AuthService } from '../../services/auth.service'; -import { GlobalService } from '../../services/global.service'; -import { ChallengeService } from '../../services/challenge.service'; -import { Router, ActivatedRoute } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-template-challenge-create', - templateUrl: './template-challenge-create.component.html', - styleUrls: ['./template-challenge-create.component.scss'], -}) -export class TemplateChallengeCreateComponent implements OnInit, OnDestroy { - /** - * Is the user logged in? - */ - isLoggedIn = false; - - /** - * Selected Host team object - */ - hostTeam = null; - - /** - * Challenge template id - */ - id = null; - - /** - * Number of phases - */ - phases = null; - - /** - * Challenge values loaded by host - */ - challengeData = { - title: null, - start_date: null, - end_date: null, - description: null, - evaluation_script: null, - challenge_phases: null, - }; - - /** - * Challenge phase data loaded by hosts - */ - challenge_phases = []; - - /** - * Challenge phase data model used to fill challenge_phases above - */ - challengePhaseData = { - name: null, - start_date: null, - end_date: null, - }; - - /** - * Route for hosted challenges - */ - hostedChallengesRoute = '/challenges/me'; - - /** - * Route path for host teams - */ - hostTeamsRoute = '/teams/hosts'; - - constructor( - public authService: AuthService, - private router: Router, - private route: ActivatedRoute, - private challengeService: ChallengeService, - private globalService: GlobalService - ) {} - - ngOnInit() { - if (this.authService.isLoggedIn()) { - this.isLoggedIn = true; - } - - this.route.params.subscribe((params) => { - if (params['id']) { - this.id = params['id']; - } - - if (params['phases']) { - this.phases = params['phases']; - } - - this.challengeService.currentHostTeam.subscribe((hostTeam) => { - this.hostTeam = hostTeam; - if (!this.hostTeam) { - this.router.navigate([this.hostTeamsRoute], { - queryParams: { template: true, templateId: this.id, templatePhases: this.phases }, - }); - } - }); - }); - - for (let i = 0; i < this.phases; i++) { - this.challengePhaseData['id'] = i + 1; - this.challenge_phases.push(Object.assign({}, this.challengePhaseData)); - } - } - - ngOnDestroy() { - this.hostTeam = null; - } - - createTemplateChallenge() { - if (this.challengeData != null) { - const FORM_DATA: FormData = new FormData(); - this.challengeData['is_challenge_template'] = true; - this.challengeData['template_id'] = this.id; - this.challengeData.challenge_phases = JSON.stringify(this.challenge_phases); - for (const key of Object.keys(this.challengeData)) { - FORM_DATA.append(key, this.challengeData[key]); - } - this.globalService.startLoader('Creating Challenge'); - this.challengeService.challengeCreate(this.hostTeam['id'], FORM_DATA).subscribe( - (data) => { - this.globalService.stopLoader(); - this.globalService.showToast( - 'success', - 'Challenge created and successfuly sent to EvalAI admin for approval.' - ); - this.router.navigate([this.hostedChallengesRoute]); - }, - (err) => { - console.log(err.error); - this.globalService.stopLoader(); - this.globalService.showToast( - 'error', - 'Sorry, something went wrong when creating the challenge. Please try again later: ' + - JSON.stringify(err.error) - ); - }, - () => {} - ); - } else { - this.globalService.showToast('error', 'Please fill all the given challenge details'); - } - } -} diff --git a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.module.ts b/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.module.ts deleted file mode 100644 index 77510d6bce..0000000000 --- a/frontend_v2/src/app/components/template-challenge-create/template-challenge-create.module.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { MatDatepickerModule, MatInputModule, MatNativeDateModule } from '@angular/material'; - -// import component -import { TemplateChallengeCreateComponent } from './template-challenge-create.component'; - -// import module -import { TemplateChallengeCreateRoutingModule } from './template-challenge-create-routing.module'; -import { SharedModule } from '../../shared/shared.module'; - -@NgModule({ - declarations: [TemplateChallengeCreateComponent], - imports: [ - CommonModule, - TemplateChallengeCreateRoutingModule, - SharedModule, - MatDatepickerModule, - MatInputModule, - MatNativeDateModule, - ], - exports: [TemplateChallengeCreateComponent], -}) -export class TemplateChallengeCreateModule {} diff --git a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.html b/frontend_v2/src/app/components/utility/cardlist/cardlist.component.html deleted file mode 100644 index 45f0bc0f66..0000000000 --- a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.html +++ /dev/null @@ -1,9 +0,0 @@ -<div class="cardlist-container"> - <div *ngIf="arrayJavascript.isArray(data) && data['length'] == 0" class="cardlist-empty"> - <!-- <img src="assets/images/sadcloud.png" /> --> - <i class="fa fa-clipboard" aria-hidden="true"></i> No Results.. - </div> - <ng-container *ngIf="type == 'challenges'"> - <app-challengecard *ngFor="let item of data" [challenge]="item"> </app-challengecard> - </ng-container> -</div> diff --git a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.scss b/frontend_v2/src/app/components/utility/cardlist/cardlist.component.scss deleted file mode 100644 index ad4cd9d079..0000000000 --- a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.scss +++ /dev/null @@ -1,14 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.cardlist-container { - .cardlist-empty { - font-size: $fs-16; - color: $gray-darker; - text-align: center; - padding: 20px; - img { - height: 100px; - } - } -} diff --git a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.spec.ts b/frontend_v2/src/app/components/utility/cardlist/cardlist.component.spec.ts deleted file mode 100644 index dbc0336956..0000000000 --- a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.spec.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { CardlistComponent } from './cardlist.component'; -import { ChallengecardComponent } from '../../publiclists/challengelist/challengecard/challengecard.component'; -import { TeamcardComponent } from '../../publiclists/teamlist/teamcard/teamcard.component'; - -describe('CardlistComponent', () => { - let component: CardlistComponent; - let fixture: ComponentFixture<CardlistComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [CardlistComponent, ChallengecardComponent, TeamcardComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(CardlistComponent); - component = fixture.componentInstance; - component.type = 'challenges'; - component.data = []; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.ts b/frontend_v2/src/app/components/utility/cardlist/cardlist.component.ts deleted file mode 100644 index 6ffe042cfe..0000000000 --- a/frontend_v2/src/app/components/utility/cardlist/cardlist.component.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; - -/** - * Component Class - */ -@Component({ - selector: 'app-cardlist', - templateUrl: './cardlist.component.html', - styleUrls: ['./cardlist.component.scss'], -}) -export class CardlistComponent implements OnInit { - /** - * Type of card (team/challenge) - */ - @Input() type: string; - - /** - * data object - */ - @Input() data: object; - - /** - * data observable - */ - @Input() dataObservable: any; - - /** - * delete team input event - */ - @Input() deleteTeam: any; - - /** - * Edit team input event - */ - @Input() editTeam: any; - - /** - * Add members to team input event - */ - @Input() addMembersToTeam: any; - - /** - * Select team input event - */ - @Input() selectTeam: any; - - /** - * list of elements - */ - dataList: any; - - /** - * Javascript Array object - */ - arrayJavascript: any; - - /** - * Constructor. - */ - constructor() {} - - /** - * Component on intialized. - */ - ngOnInit() { - this.arrayJavascript = Array; - if (this.dataObservable) { - this.dataObservable.subscribe((data) => { - this.dataList = data; - }); - } - } -} diff --git a/frontend_v2/src/app/components/utility/confirm/confirm.component.html b/frontend_v2/src/app/components/utility/confirm/confirm.component.html deleted file mode 100644 index 72b4fb9148..0000000000 --- a/frontend_v2/src/app/components/utility/confirm/confirm.component.html +++ /dev/null @@ -1,32 +0,0 @@ -<div class="modal-container confirm-container"> - <div class="modal-card confirm-card"> - <div class="title"> - {{ title }} - </div> - <div class="content"> - {{ content }} - </div> - <div class="row"> - <div class="col-md-12 col-sm-12"> - <div class="align-center text-med-black fw-regular"> - <ul class="confirm-buttons hide-on-med-and-down"> - <li> - <a appClickstop (click)="denied()" class="dark-link pointer" - ><strong class="fw-semibold">{{ deny }}</strong></a - > - </li> - <li> - <button - appClickstop - (click)="confirmed()" - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn grad-btn-dark fs-16" - > - {{ confirm }} - </button> - </li> - </ul> - </div> - </div> - </div> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/confirm/confirm.component.scss b/frontend_v2/src/app/components/utility/confirm/confirm.component.scss deleted file mode 100644 index ce13f6559f..0000000000 --- a/frontend_v2/src/app/components/utility/confirm/confirm.component.scss +++ /dev/null @@ -1,21 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.confirm-container { - z-index: 110; - .confirm-card { - z-index: 111; - .title { - margin: 0px; - } - } - - .btn-inline { - display: -webkit-inline-box; - } -} - -.row ul.confirm-buttons li { - display: inline-block; - margin: 9px 9px; -} diff --git a/frontend_v2/src/app/components/utility/confirm/confirm.component.spec.ts b/frontend_v2/src/app/components/utility/confirm/confirm.component.spec.ts deleted file mode 100644 index e9f41de784..0000000000 --- a/frontend_v2/src/app/components/utility/confirm/confirm.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ConfirmComponent } from './confirm.component'; -import { GlobalService } from '../../../services/global.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; - -describe('ConfirmComponent', () => { - let component: ConfirmComponent; - let fixture: ComponentFixture<ConfirmComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ConfirmComponent], - providers: [GlobalService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ConfirmComponent); - component = fixture.componentInstance; - const PARAMS = { - title: 'Would you like to remove yourself ?', - content: 'Note: This action will remove you from the team', - confirm: 'Yes', - deny: 'Cancel', - confirmCallback: () => {}, - }; - component.params = PARAMS; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/confirm/confirm.component.ts b/frontend_v2/src/app/components/utility/confirm/confirm.component.ts deleted file mode 100644 index a478174061..0000000000 --- a/frontend_v2/src/app/components/utility/confirm/confirm.component.ts +++ /dev/null @@ -1,93 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-confirm', - templateUrl: './confirm.component.html', - styleUrls: ['./confirm.component.scss'], -}) -export class ConfirmComponent implements OnInit { - /** - * Input parameters object - */ - @Input() params: any; - - /** - * Confirm Title - */ - title = 'Are you sure ?'; - - /** - * Confirm content - */ - content = ''; - - /** - * confirm accept button - */ - confirm = 'Yes'; - - /** - * Confirm deny button - */ - deny = 'Cancel'; - - /** - * Confirm callback - */ - confirmCallback = () => {}; - - /** - * Deny callback - */ - denyCallback = () => {}; - - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor(private globalService: GlobalService) {} - - /** - * Component on initialized. - */ - ngOnInit() { - if (this.params['title']) { - this.title = this.params['title']; - } - if (this.params['content']) { - this.content = this.params['content']; - } - if (this.params['confirm']) { - this.confirm = this.params['confirm']; - } - if (this.params['deny']) { - this.deny = this.params['deny']; - } - if (this.params['confirmCallback']) { - this.confirmCallback = this.params['confirmCallback']; - } - if (this.params['denyCallback']) { - this.denyCallback = this.params['denyCallback']; - } - } - - /** - * Confirm callback. - */ - confirmed() { - this.globalService.hideConfirm(); - this.confirmCallback(); - } - - /** - * Deny callback. - */ - denied() { - this.globalService.hideConfirm(); - this.denyCallback(); - } -} diff --git a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.html b/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.html deleted file mode 100644 index 9fe2c7628f..0000000000 --- a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.html +++ /dev/null @@ -1 +0,0 @@ -<div class="content fs-16 fw-light">Please <a (click)="redirectToLogin()" class="highlight-link">Login</a> to access this section.</div> diff --git a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.scss b/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.spec.ts b/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.spec.ts deleted file mode 100644 index 0fa652d344..0000000000 --- a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.spec.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ForceloginComponent } from './forcelogin.component'; -import { GlobalService } from '../../../services/global.service'; -import { AuthService } from '../../../services/auth.service'; -import { ApiService } from '../../../services/api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; - -describe('ForceloginComponent', () => { - let component: ForceloginComponent; - let fixture: ComponentFixture<ForceloginComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ForceloginComponent], - providers: [GlobalService, AuthService, ApiService], - imports: [HttpClientModule, RouterTestingModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ForceloginComponent); - component = fixture.componentInstance; - component.path = '/challenges/me'; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.ts b/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.ts deleted file mode 100644 index 3e707f4ca1..0000000000 --- a/frontend_v2/src/app/components/utility/forcelogin/forcelogin.component.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { Router } from '@angular/router'; - -/** - * Component Class - */ -@Component({ - selector: 'app-forcelogin', - templateUrl: './forcelogin.component.html', - styleUrls: ['./forcelogin.component.scss'], -}) -export class ForceloginComponent implements OnInit { - /** - * Path of redirect-to page - */ - @Input() path: string; - - /** - * Constructor. - * @param router GlobalService Injection. - * @param globalService GlobalService Injection. - */ - constructor(private globalService: GlobalService, private router: Router) {} - - /** - * Component on initialized. - */ - ngOnInit() {} - - /** - * Redirects to login page. - */ - redirectToLogin() { - this.globalService.storeData('redirect', { path: this.path }); - this.router.navigate(['/auth/login']); - } -} diff --git a/frontend_v2/src/app/components/utility/input/input.component.html b/frontend_v2/src/app/components/utility/input/input.component.html deleted file mode 100644 index 921a0f58d5..0000000000 --- a/frontend_v2/src/app/components/utility/input/input.component.html +++ /dev/null @@ -1,107 +0,0 @@ -<div class="input-group"> - <div *ngIf="type != 'file' && type != 'textarea' && type != 'datetime' && type != 'textattribute'"> - <input - class="input-field" - (input)="validateInput($event.target.value)" - [class.isValid]="isValid" - [class.theme-dark]="theme == 'dark'" - name="{{ name }}" - type="{{ type }}" - [value]="value" - [readonly]="isReadonly" - /> - <span class="input-bar"></span> - <label [class.is-not-empty]="!isEmpty" [class.theme-dark]="theme == 'dark'">{{ placeholder }}</label> - <i class="input-icon {{ icon }}" *ngIf="isIconPresent"></i> - <div class="input-message" #textValue [class.hidden]="toggleErrorMessage()">{{ message }}</div> - </div> - - <div *ngIf="type == 'textarea'"> - <textarea - autosize - class="input-field" - (input)="validateInput($event.target.value)" - [class.isValid]="isValid" - [class.theme-dark]="theme == 'dark'" - [value]="value" - [readonly]="isReadonly" - ></textarea> - <span class="input-bar"></span> - <label [class.is-not-empty]="!isEmpty" [class.theme-dark]="theme == 'dark'">{{ placeholder }}</label> - <i class="input-icon {{ icon }}" *ngIf="isIconPresent"></i> - <div class="input-message" [class.hidden]="toggleErrorMessage()">{{ message }}</div> - </div> - - <div *ngIf="type == 'datetime'"> - <input - class="input-field" - [(ngModel)]="value" - [min]="mindatetime" - [owlDateTime]="datetime" - [owlDateTimeTrigger]="datetime" - (input)="validateInput($event.target.value)" - [class.isValid]="isValid" - [class.theme-dark]="theme == 'dark'" - type="{{ type }}" - [readonly]="isReadonly" - /> - <owl-date-time [hour12Timer]="true" #datetime></owl-date-time> - <span class="input-bar"></span> - <label [class.is-not-empty]="!isEmpty" [class.theme-dark]="theme == 'dark'">{{ placeholder }}</label> - <i class="input-icon {{ icon }}" *ngIf="isIconPresent"></i> - <div class="input-message" #textValue [class.hidden]="toggleErrorMessage()">{{ message }}</div> - </div> - - <div *ngIf="type == 'textattribute'"> - <input - class="input-field" - name="{{ name }}" - type="{{ type }}" - [(ngModel)]="value" - [value]="value" - [readonly]="isReadonly" - /> - <span class="input-bar"></span> - <label [class.is-not-empty]="!isEmpty" [class.theme-dark]="theme == 'dark'">{{ attributeName }} - ({{ attributeDescription }}) <span *ngIf="attributeRequired === true" class="color-orange">*</span></label> - <i class="input-icon {{ icon }}" *ngIf="isIconPresent"></i> - <div class="input-message" #textValue [class.hidden]="toggleErrorMessage()">{{ message }}</div> - </div> - - <div *ngIf="type == 'checkbox'"> - <label for="{{name}}" class="mat-label-radio" for="{{name}}">{{name}} </label> - <br> - <br> - <div *ngFor="let option of attributeOptions"> - <mat-checkbox - (change)="toggleSelection(option)" - id="{{ option }}" - [value]="option" - [checked]="isChecked(option)" - > - <label class="fs-16" for="{{ option }}" class="zero-padding">{{ option }}</label> - </mat-checkbox> - <br/> - </div> - <br/> - </div> - - <div class="file-field file-upload" *ngIf="type == 'file'"> - <div class="btn btn-waves-effect ev-file-btn-dark waves-dark grad-btn grad-btn-transparent fs-14"> - <span> Upload File </span> - <input - name="fileUpload" - id="file-upload-custom" - [(ngModel)]="fileValue" - accept="{{ accept }}" - (change)="handleFileInput($event.target.files)" - type="file" - [readonly]="isReadonly" - class="btn btn-waves-effect ev-file-btn-dark waves-dark grad-btn grad-btn-transparent fs-14" - /> - </div> - <div class="file-path-wrapper"> - <input type="text" value="{{ placeholder }}" disabled /> - </div> - <div class="input-message" #textValue [class.hidden]="toggleErrorMessage()">{{ message }}</div> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/input/input.component.scss b/frontend_v2/src/app/components/utility/input/input.component.scss deleted file mode 100644 index 3836f7d4dc..0000000000 --- a/frontend_v2/src/app/components/utility/input/input.component.scss +++ /dev/null @@ -1,261 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.input-group { - width: 100%; - margin-top: 0px; - position: relative; - height: auto; - padding-bottom: 20px; - .input-icon { - height: $fs-14; - position: absolute; - right: 0; - top: 10px; - color: $wild-blue; - font-size: 0.9em; - } - - input[type='text'] input[text='password'] { - background-color: transparent; - border: none; - border-bottom: 1px solid #9e9e9e; - border-radius: 0; - outline: none; - height: 3rem; - width: 100%; - font-size: 1rem; - margin: 0 0 20px 0; - padding: 0; - box-shadow: none; - box-sizing: content-box; - transition: all 0.3s; - } - - .file-upload { - margin-top: 16px; - position: relative; - overflow: auto; - .transparent { - position: relative; - opacity: 0; - } - .btn { - float: left; - height: 3rem; - line-height: 3rem; - position: relative; - cursor: pointer; - margin-left: 0; - &.theme-dark { - color: $gray-dark; - &.selected { - color: white; - } - } - } - .input-message { - position: relative; - } - } - - .file-field input[type='file'] { - position: absolute; - top: 0; - right: 0; - left: 0; - bottom: 0; - width: 100%; - margin: 0; - padding: 0; - font-size: 20px; - cursor: pointer; - opacity: 0; - filter: alpha(opacity=0); - } - - .file-field .file-path-wrapper { - overflow: hidden; - padding-left: 10px; - } - - .file-path-wrapper input[type='text'] { - background-color: transparent; - border: none; - border-bottom: 1px solid #9e9e9e; - border-radius: 0; - outline: none; - height: 3rem; - width: 100%; - font-size: 1rem; - padding: 0; - box-shadow: none; - box-sizing: content-box; - transition: all 0.3s; - } - label { - color: $wild-blue !important; - font-size: 12px; - position: absolute; - pointer-events: none; - left: 0px; - top: 10px; - transition: 0.2s ease all; - -moz-transition: 0.2s ease all; - -webkit-transition: 0.2s ease all; - &.theme-dark { - color: $gray-dark; - } - &.is-not-empty { - top: -10px; - font-size: $fs-12; - color: white; - &.theme-dark { - color: $gray-dark !important; - } - } - } - .input-field { - font-size: $fs-16; - padding: 10px 10px 10px 5px; - margin-top: 16px; - display: block; - width: 100%; - border: none; - border-bottom: 1px solid $gray-dark; - background: transparent; - padding-bottom: 10px; - font-weight: $fw-light; - &:focus { - outline: none; - border-bottom: 1px solid $yellow; - box-shadow: none; - } - &.theme-dark { - color: $gray-darker; - border-bottom: 1px solid $gray-dark; - } - } - input:focus ~ label { - top: -10px; - color: $wild-blue !important; - font-weight: $fw-regular; - font-size: 0.8rem; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } - textarea { - overflow: hidden; - resize: none; - min-height: 5rem; - background-color: transparent; - border: none; - border-radius: 0; - outline: none; - width: 100%; - margin: 0 0 25px 0; - transition: all 0.3s; - } - textarea:focus ~ label { - top: -20px; - color: $wild-blue !important; - font-weight: $fw-regular; - font-size: 0.8rem; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } - input:focus ~ label.theme-dark { - color: $gray-dark !important; - } - .input-message { - position: relative; - top: 2px; - left: 0; - text-align: left; - margin-top: 10px; - font-size: 12px; - font-weight: $fw-light; - color: $yellow; - &.hidden { - opacity: 0; - } - } - .input-bar { - position: relative; - display: block; - width: 300px; - } - &:before, - &:after { - content: ''; - height: 2px; - width: 0; - bottom: 1px; - position: absolute; - background: white; - transition: 0.2s ease all; - -moz-transition: 0.2s ease all; - -webkit-transition: 0.2s ease all; - } - &:before { - left: 50%; - } - &:after { - right: 50%; - } -} - -.zero-padding { - top: 0px !important; - left: 0px !important; - position: relative !important; -} - -::ng-deep .owl-dt-timer-content .owl-dt-timer-input { - margin: 0.2rem; -} - -::ng-deep .owl-dt-popup-container .owl-dt-calendar { - height: 23.6em; -} -::ng-deep .owl-dt-inline-container .owl-dt-calendar { - height: 23.6em; -} - -::ng-deep .owl-dt-timer { - padding: 0px; -} - -/* media queries for rocket container */ -@media only screen and (max-width: $screen-sm-md) { - .input-group { - width: 100% !important; - } - - .input-group input { - width: 100% !important; - } - - .input-group textarea { - width: 100% !important; - } -} - -/* active state */ - -.input-field:focus ~ .input-bar:before, -.input-field:focus ~ .input-bar:after { - width: 50%; -} - -@include screen-small { - .input-group { - width: 250px; - .input-field { - width: 250px; - } - } - .input-bar { - width: 250px; - } -} diff --git a/frontend_v2/src/app/components/utility/input/input.component.spec.ts b/frontend_v2/src/app/components/utility/input/input.component.spec.ts deleted file mode 100644 index 7eb9c4fa06..0000000000 --- a/frontend_v2/src/app/components/utility/input/input.component.spec.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { InputComponent } from './input.component'; -import { GlobalService } from '../../../services/global.service'; -import { FormsModule } from '@angular/forms'; -import { OwlDateTimeModule } from 'ng-pick-datetime'; - -describe('InputComponent', () => { - let component: InputComponent; - let fixture: ComponentFixture<InputComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - imports: [FormsModule, OwlDateTimeModule], - declarations: [InputComponent], - providers: [GlobalService], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(InputComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/input/input.component.ts b/frontend_v2/src/app/components/utility/input/input.component.ts deleted file mode 100644 index 3979d240ca..0000000000 --- a/frontend_v2/src/app/components/utility/input/input.component.ts +++ /dev/null @@ -1,306 +0,0 @@ -import { Component, OnInit, Input, Inject } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-input', - templateUrl: './input.component.html', - styleUrls: ['./input.component.scss'], -}) -export class InputComponent implements OnInit { - /** - * Placeholder string - */ - @Input() placeholder: string; - - /** - * Label string - */ - @Input() label: string; - - /** - * Type of input (text, password, email and file) - */ - @Input() type: string; - - /** - * Supported file type for file field - */ - @Input() accept: string; - - /** - * Name of input - */ - @Input() name: string; - - /** - * Is it a required field - */ - @Input() isRequired: boolean; - - /** - * Dark / light - */ - @Input() theme: string; - - /** - * icon at the end of input field - */ - @Input() icon: string; - - /** - * Input field message - */ - @Input() message: string; - - /** - * Custom validate function - */ - @Input() validate: Function; - - /** - * Value of input field - */ - @Input() value: any; - - /** - * Value of checkbox input field - */ - @Input() values: any = []; - - /** - * Is field read-only - */ - @Input() readonly: boolean; - - /** - * Minimum datetime - */ - @Input() mindatetime: string; - - /** - * Input file value - */ - @Input() fileValue = ''; - - /** - * Is editing phase details - */ - @Input() editPhaseDetails: boolean; - - /** - * Attribute name for placeholder - */ - @Input() attributeName: string; - - - /** - * Attribute description for placeholder - */ - @Input() attributeDescription: string; - - - /** - * Attribute required for placeholder - */ - @Input() attributeRequired: boolean; - - /** - * Attribute ngmodel variable - */ - @Input() attributeModel: string; - - /** - * Attribute options variable - */ - @Input() attributeOptions: string[]; - - /** - * Is email flag - */ - isEmail = false; - - /** - * Is input field touched - */ - isDirty = false; - - /** - * Is field valid - */ - isValid = false; - - /** - * Is field empty - */ - isEmpty = true; - - /** - * Icon present flag - */ - isIconPresent = false; - - /** - * Is custom validate function provided - */ - isValidateCustom = false; - - /** - * read only flag - */ - isReadonly = false; - - /** - * file selected flag - */ - fileSelected = null; - - /** - * Input field message for required fields - */ - requiredMessage = 'Required field'; - - /** - * Constructor. - * @param document Window document Injection. - * @param globalService GlobalService Injection. - */ - constructor(@Inject(DOCUMENT) private document: Document, private globalService: GlobalService) {} - - /** - * Component on intialized - */ - ngOnInit() { - if (!this.type || this.type === 'email') { - if (this.type === 'email') { - this.isEmail = true; - } - this.type = 'text'; - } - if (this.label === undefined) { - this.label = 'Default Label'; - } - if (this.message === undefined) { - this.message = 'Required field'; - } else if (this.message !== '') { - this.isValid = false; - this.isEmpty = false; - } - if (this.accept === undefined) { - this.accept = ''; - } - if (this.isRequired === undefined) { - this.isRequired = false; - } - if (this.theme === undefined) { - this.theme = 'light'; - } - if (this.icon !== undefined) { - this.isIconPresent = true; - } - if (this.validate !== undefined) { - this.isValidateCustom = true; - } - if (this.placeholder === undefined) { - this.placeholder = this.label; - } - if (!this.value) { - this.value = ''; - } else { - this.isEmpty = false; - } - if (this.readonly) { - this.isReadonly = true; - } - if (this.editPhaseDetails === true) { - this.isValid = true; - } - } - - /** - * Perform validations on the input - */ - validateInput(e) { - this.isDirty = true; - this.value = e; - e === '' ? (this.isEmpty = true) : (this.isEmpty = false); - if (e === '' && this.isRequired) { - this.isValid = false; - this.isRequired ? (this.message = this.requiredMessage) : (this.message = ''); - } - if (this.isValidateCustom) { - this.isValid = this.validate(e).is_valid; - this.isValid ? (this.message = '') : (this.message = this.validate(e).message); - } else if (this.isEmail) { - this.isValid = this.globalService.validateEmail(e); - this.isValid ? (this.message = '') : (this.message = 'Enter a valid email'); - } else if (this.type === 'text' || this.type === 'textarea' || this.type === 'textattribute') { - this.isValid = this.globalService.validateText(e); - this.isValid ? (this.message = '') : (this.message = 'Enter a valid text'); - } else if (this.type === 'number') { - this.isValid = this.globalService.validateInteger(e); - this.isValid ? (this.message = '') : (this.message = 'Enter a valid number'); - } else if (this.type === 'datetime') { - this.isValid = true; - } else if (this.type === 'password') { - this.isValid = this.globalService.validatePassword(e); - this.isValid ? (this.message = '') : (this.message = 'Password minimum 8 characters'); - } - if (this.name === 'bannedEmailIds' || this.name === 'filterByTeamName') { - this.message = ''; - this.isRequired = false; - } - } - - /** - * Handle file input (like validateInput, but for files). - */ - handleFileInput(f) { - if (f && f.length >= 1) { - this.fileSelected = f.item(0); - this.placeholder = this.fileSelected['name']; - this.isValid = true; - this.isValid ? (this.message = '') : (this.message = this.requiredMessage); - } - } - - /** - * Trigger click on a DOM element. - * @param id id of DOM element to be clicked - */ - transferClick(id) { - this.document.getElementById(id).click(); - } - - showErrorCondition() { - return (this.isRequired && this.isEmpty) || (!this.isValid && !this.isEmpty); - } - - toggleErrorMessage() { - return !((this.showErrorCondition() || this.message !== '') && this.isDirty); - } - - // unchecking checked options - toggleSelection(value) { - if (!Array.isArray(this.value)) { - this.value = []; - } - const idx = this.value.indexOf(value); - if (idx > -1) { - this.value.splice(idx, 1); - } else { - this.value.push(value); - } - } - - isChecked(value) { - if (!Array.isArray(this.value)) { - this.value = []; - } - const idx = this.value.indexOf(value); - return idx != -1; - } -} diff --git a/frontend_v2/src/app/components/utility/loading/loading.component.html b/frontend_v2/src/app/components/utility/loading/loading.component.html deleted file mode 100644 index d114468846..0000000000 --- a/frontend_v2/src/app/components/utility/loading/loading.component.html +++ /dev/null @@ -1,6 +0,0 @@ -<div class="loader-container card-loader-container fade"> - <div class="text-med-black center fw-light loader-title">{{ globalService.loaderTitle }}</div> - <div class="loader"> - <div *ngFor="let i of [0, 1, 2, 3, 4]"></div> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/loading/loading.component.scss b/frontend_v2/src/app/components/utility/loading/loading.component.scss deleted file mode 100644 index 75c11cc7a7..0000000000 --- a/frontend_v2/src/app/components/utility/loading/loading.component.scss +++ /dev/null @@ -1,88 +0,0 @@ -@import 'styles/variables'; - -.loader-container { - position: fixed; - width: 100vw; - height: 100vh; - left: 0; - top: 0; - z-index: 5; - background-color: transparent; -} - -.card-loader-container { - position: fixed; - width: 100%; - height: 100%; - left: 0; - top: 0; - z-index: 5; - background-color: transparent; - .loader-title { - margin-top: 39vh; - } - .loader { - margin-top: 45vh; - top: 0; - } -} - -.loader-title { - margin-top: 39vh; -} - -.loader { - width: $loader-size; - height: $loader-height; - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - > div { - content: ' '; - width: $loader-dot-size; - height: $loader-dot-size; - background: $loader-dot-color; - border-radius: 100%; - position: absolute; - animation: shift 2s linear infinite; - &:nth-of-type(1) { - animation-delay: -0.4s; - } - &:nth-of-type(2) { - animation-delay: -0.8s; - } - &:nth-of-type(3) { - animation-delay: -1.2s; - } - &:nth-of-type(4) { - animation-delay: -1.6s; - } - } -} - -.fade { - transition: all linear 500ms; - background: #ffffff96; -} - -@keyframes shift { - 0% { - left: -3 * $loader-dot-size; - opacity: 0; - background-color: $loader-dot-color; - } - 10% { - left: 0; - opacity: 1; - } - 90% { - left: $loader-size; - opacity: 1; - } - 100% { - left: ($loader-size + 3 * $loader-dot-size); - background-color: $light-gray; - opacity: 0; - } -} diff --git a/frontend_v2/src/app/components/utility/loading/loading.component.spec.ts b/frontend_v2/src/app/components/utility/loading/loading.component.spec.ts deleted file mode 100644 index a680c7cefb..0000000000 --- a/frontend_v2/src/app/components/utility/loading/loading.component.spec.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { LoadingComponent } from './loading.component'; -import { AuthService } from '../../../services/auth.service'; -import { GlobalService } from '../../../services/global.service'; -import { ApiService } from '../../../services/api.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { HttpClientModule } from '@angular/common/http'; - -describe('LoadingComponent', () => { - let component: LoadingComponent; - let fixture: ComponentFixture<LoadingComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [LoadingComponent], - providers: [AuthService, GlobalService, ApiService, EndpointsService], - imports: [HttpClientModule], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(LoadingComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/loading/loading.component.ts b/frontend_v2/src/app/components/utility/loading/loading.component.ts deleted file mode 100644 index fdd2ebc143..0000000000 --- a/frontend_v2/src/app/components/utility/loading/loading.component.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-loading', - templateUrl: './loading.component.html', - styleUrls: ['./loading.component.scss'], -}) -export class LoadingComponent implements OnInit { - /** - * Constructor. - */ - constructor(public globalService: GlobalService) {} - - /** - * Component on intialized - */ - ngOnInit() {} -} diff --git a/frontend_v2/src/app/components/utility/modal/modal.component.html b/frontend_v2/src/app/components/utility/modal/modal.component.html deleted file mode 100644 index b7260e418a..0000000000 --- a/frontend_v2/src/app/components/utility/modal/modal.component.html +++ /dev/null @@ -1,131 +0,0 @@ -<div class="modal-container"> - <div class="modal-card"> - <div class="modal-wrapper"> - <div class="title"> - {{ title }} - <i class="fa fa-times fs-22 pointer cross-icon" aria-hidden="true" *ngIf="isCliInstructions" (click)="denied()"> - </i> - </div> - <div class="modal-content" *ngIf="!isCliInstructions"> - <div class="content"> - {{ content }} - </div> - <div class="editor-validation-message fs-12" *ngIf="isEditorRequired && isInputMessage"> - {{ editorValidationMessage }} - </div> - <div *ngIf="isEditorRequired" class="edit-global-modal"> - <quill-editor [styles]="quillEditorStyle" [(ngModel)]="editorContent"></quill-editor> - </div> - <div class="form modal-inputs"> - <div *ngFor="let item of form"> - <app-input - *ngIf="item['type'] != 'file'" - [name]="item['name']" - (input)="validateModalInput($event)" - [isRequired]="item['isRequired']" - [label]="item['label']" - [placeholder]="item['placeholder']" - [type]="item['type']" - [icon]="item['icon']" - [value]="item['value']" - [attributeOptions]="item['attributeOptions']" - [message]="inputErrorMessage" - #formmodal - ></app-input> - <app-input - *ngIf="item['type'] == 'file'" - [name]="item['name']" - (change)="validateFileInput($event)" - [isRequired]="item['isRequired']" - [label]="item['label']" - [placeholder]="item['placeholder']" - [type]="item['type']" - [icon]="item['icon']" - [value]="item['value']" - #formmodal - ></app-input> - </div> - <small class="editor-validation-message">{{ invalidFieldsAsText }}</small - ><br /> - </div> - </div> - <div class="buttons" *ngIf="!isCliInstructions"> - <ul class="inline-list pointer"> - <li> - <a appClickstop (click)="denied()" class="dark-link pointer"> - <strong class="fw-semibold">{{ deny }}</strong></a - > - </li> - <li> - <button - [disabled]="isDisabled" - appClickstop - (click)="formValidate()" - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn grad-btn-dark fs-14" - > - {{ confirm }} - </button> - </li> - </ul> - </div> - <div class="row row-lr-margin" *ngIf="isCliInstructions"> - <div class="modal-content" [ngClass]="{ 'content-instructions': isCliInstructions == true }"> - <ol> - <li class="content"> - Install evalai-cli<br /> - <code #install_evalai>$ pip install evalai{{ cliVersion }}</code> - <button - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn code-btn" - value="pip install "evalai{{ cliVersion }}"" - (click)="copyTextToClipboard(install_evalai)" - > - <i - class="fa fa-clipboard" - aria-hidden="true" - alt="Copy to - clipboard." - ></i> - </button> - </li> - <li class="content"> - Add your EvalAI account token to evalai-cli<br /> - <code #configure_token>$ evalai set_token {{ authToken }}</code> - <button - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn code-btn" - (click)="copyTextToClipboard(configure_token)" - > - <i class="fa fa-clipboard" aria-hidden="true" alt="Copy to clipboard."> </i> - </button> - </li> - <li class="content"> - Upload challenge phase annotations<br /> - <code #evalai_annotation - >$ evalai challenge <challenge_id> phase <phase_id> submit --file annotation.json - --annotation</code - > - <button - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn code-btn" - (click)="copyTextToClipboard(evalai_annotation)" - > - <i class="fa fa-clipboard" aria-hidden="true" alt="Copy to clipboard."> </i> - </button> - </li> - <li class="content"> - Upload challenge phase annotations > 400MB<br /> - <code #evalai_annotation_large - >$ evalai challenge <challenge_id> phase <phase_id> submit --file annotation.json --large - --annotation</code - > - <button - class="btn ev-btn-dark btn-waves-effect waves-dark grad-btn code-btn" - (click)="copyTextToClipboard(evalai_annotation_large)" - > - <i class="fa fa-clipboard" aria-hidden="true" alt="Copy to clipboard."> </i> - </button> - </li> - </ol> - </div> - </div> - </div> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/modal/modal.component.scss b/frontend_v2/src/app/components/utility/modal/modal.component.scss deleted file mode 100644 index 5dcf10ed9b..0000000000 --- a/frontend_v2/src/app/components/utility/modal/modal.component.scss +++ /dev/null @@ -1,24 +0,0 @@ -@import './variables.scss'; - -.editor-validation-message { - color: $highlight; - margin-bottom: 20px; -} - -.buttons { - ul { - margin-right: 20px; - } -} - -code { - max-width: 650px; -} - -.content-instructions { - width: 760px; -} - -.cross-icon { - float: right; -} diff --git a/frontend_v2/src/app/components/utility/modal/modal.component.spec.ts b/frontend_v2/src/app/components/utility/modal/modal.component.spec.ts deleted file mode 100644 index 9b79deca7d..0000000000 --- a/frontend_v2/src/app/components/utility/modal/modal.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ModalComponent } from './modal.component'; -import { InputComponent } from '../input/input.component'; -import { GlobalService } from '../../../services/global.service'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; - -describe('ModalComponent', () => { - let component: ModalComponent; - let fixture: ComponentFixture<ModalComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ModalComponent, InputComponent], - imports: [RouterTestingModule, HttpClientModule], - providers: [GlobalService, ChallengeService, EndpointsService, AuthService, ApiService], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ModalComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/modal/modal.component.ts b/frontend_v2/src/app/components/utility/modal/modal.component.ts deleted file mode 100644 index b4fe5ba331..0000000000 --- a/frontend_v2/src/app/components/utility/modal/modal.component.ts +++ /dev/null @@ -1,381 +0,0 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { ViewChildren, QueryList } from '@angular/core'; -import { GlobalService } from '../../../services/global.service'; -import { InputComponent } from '../input/input.component'; -import { ChallengeService } from '../../../services/challenge.service'; -import { AuthService } from '../../../services/auth.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-modal', - templateUrl: './modal.component.html', - styleUrls: ['./modal.component.scss'], -}) -export class ModalComponent implements OnInit { - /** - * Input parameters object - */ - @Input() params: any; - - /** - * Modal title - */ - title = 'Are you sure ?'; - - /** - * Modal field label - */ - label = ''; - - /** - * Modal body - */ - content = ''; - - /** - * Invalid fields - */ - invalidFields = []; - invalidFieldsAsText = ''; - - /** - * Modal name - */ - isButtonDisabled: boolean; - - /** - * Is Cli instructions modal - */ - isCliInstructions = false; - - /** - * If rich text editor required - */ - isEditorRequired = false; - - /** - * Modal edit content - */ - editorContent = ''; - - /** - * If editor error message - */ - isInputMessage = false; - - /** - * Editor validation message - */ - editorValidationMessage = ''; - - /** - * Modal accept button - */ - confirm = 'Yes'; - - /** - * Modal deny button - */ - deny = 'Cancel'; - - /** - * Modal form items list - */ - form = []; - - /** - * challenge object - */ - challenge: any; - - /** - * User object - */ - user: any; - - /** - * Old password - */ - oldPassword = ''; - - /** - * New password - */ - newPassword = ''; - - /** - * Re-type new password - */ - retype_newPassword = ''; - - /** - * delete challenge button disable - */ - isDisabled = true; - - /** - * Input field message - */ - inputErrorMessage = ''; - - /** - * Quill editor style - */ - quillEditorStyle = { - height: '320px', - width: '720px', - }; - - /** - * Cli version - */ - cliVersion = ''; - - /** - * Auth token - */ - authToken = ''; - - /** - * Modal form items - */ - @ViewChildren('formmodal') - formComponents: QueryList<InputComponent>; - - /** - * Modal confirmed callback - */ - confirmCallback = (params) => {}; - - /** - * Modal denied callback - */ - denyCallback = () => {}; - - /** - * Constructor. - * @param globalService GlobalService Injection. - */ - constructor( - private globalService: GlobalService, - private challengeService: ChallengeService, - private authService: AuthService - ) {} - - /** - * Component on intialized. - */ - ngOnInit() { - if (this.params) { - if (this.params['title']) { - this.title = this.params['title']; - } - if (this.params['label']) { - this.label = this.params['label']; - } - if (this.params['isButtonDisabled']) { - this.isButtonDisabled = this.params['isButtonDisabled']; - } - if (this.params['isEditorRequired']) { - this.isEditorRequired = this.params['isEditorRequired']; - } - if (this.params['editorContent']) { - this.editorContent = this.params['editorContent']; - } - if (this.params['content']) { - this.content = this.params['content']; - } - if (this.params['isCliInstructions']) { - this.isCliInstructions = this.params['isCliInstructions']; - } - if (this.params['confirm']) { - this.confirm = this.params['confirm']; - } - if (this.params['deny']) { - this.deny = this.params['deny']; - } - if (this.params['confirmCallback']) { - this.confirmCallback = this.params['confirmCallback']; - } - if (this.params['denyCallback']) { - this.denyCallback = this.params['denyCallback']; - } - if (this.params['form'] && this.params['form'].length > 0) { - this.form = this.params['form']; - } - } - - this.authService.change.subscribe((details) => { - this.user = details; - }); - - if (this.isEditorRequired || this.isButtonDisabled) { - this.isDisabled = false; - } - - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - if (this.challenge.cli_version !== null) { - this.cliVersion = this.challenge.cli_version; - } - }); - this.authToken = this.globalService.getData('refreshJWT'); - } - - /** - * Form Validate function. - */ - formValidate() { - if (this.formComponents.length > 0) { - if (this.title === 'Update Profile') { - this.confirmed(this); - } else { - this.globalService.formValidate(this.formComponents, this.confirmed, this); - } - } else { - this.confirmed(this); - } - } - - /** - * Modal Confirmed. - */ - confirmed(self) { - let PARAMS = {}; - if (self.isEditorRequired) { - const content_text = document.createElement('div'); - content_text.innerHTML = this.editorContent; - const actual_text = content_text.textContent || content_text.innerText || ''; - if (actual_text.trim() === '') { - self.denyCallback(); - self.isInputMessage = true; - self.editorValidationMessage = 'This field cannot be empty!'; - return; - } - PARAMS[self.label] = self.editorContent; - } else { - PARAMS = self.globalService.formFields(self.formComponents); - } - self.globalService.hideModal(); - self.confirmCallback(PARAMS); - } - - /** - * Copy text to clipboard - */ - copyTextToClipboard(ref: HTMLElement) { - const textBox = document.createElement('textarea'); - textBox.style.position = 'fixed'; - textBox.style.left = '0'; - textBox.style.top = '0'; - textBox.style.opacity = '0'; - textBox.value = ref.innerText.split('$ ')[1]; - document.body.appendChild(textBox); - textBox.focus(); - textBox.select(); - document.execCommand('copy'); - document.body.removeChild(textBox); - - this.globalService.showToast('success', 'Command copied to clipboard'); - } - - /** - * Modal Denied. - */ - denied() { - this.globalService.hideModal(); - this.denyCallback(); - } - - convertFieldArrayIntoText(fields) { - let finalText = ''; - if (fields.length) { - if (fields.length > 1) { - finalText = `${fields.join(', ')} are not valid. \n\n\nBe sure to include HTTP/HTTPS.`; - } else { - finalText = `${fields.join('')} is not valid. \n\n\nBe sure to include HTTP/HTTPS.`; - } - } else { - finalText = ''; - } - this.invalidFieldsAsText = finalText; - } - - validURL(string) { - const res = string.match( - /^((http|https):\/\/.)(www\.)?[-a-zA-Z0-9@:%._\+~#=]{0,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g - ); - return res !== null; - } - - validateModalInput(e) { - this.inputErrorMessage = ''; - if (e.target.name === 'challegenDeleteInput') { - this.isDisabled = e.target.value !== this.challenge.title; - } else if (e.target.name === 'editChallengeTitle') { - this.isDisabled = e.target.value === this.challenge.title; - } else if (e.target.name === 'update_first_name') { - this.isDisabled = e.target.value === this.user.first_name; - } else if (e.target.name === 'update_last_name') { - this.isDisabled = e.target.value === this.user.last_name; - } else if (e.target.name === 'update_affiliation') { - this.isDisabled = e.target.value === this.user.affiliation; - } else if (e.target.name === 'update_google_scholar_url') { - if (this.validURL(e.target.value) || e.target.value === '') { - this.isDisabled = false; - - this.invalidFields = this.invalidFields.filter((element) => element !== 'Google Scholar'); - this.convertFieldArrayIntoText(this.invalidFields); - } else { - if (!this.invalidFields.find((element) => element === 'Google Scholar')) { - this.invalidFields.push('Google Scholar'); - } - } - } else if (e.target.name === 'update_github_url') { - if (this.validURL(e.target.value) || e.target.value === '') { - this.isDisabled = false; - - this.invalidFields = this.invalidFields.filter((element) => element !== 'GitHub'); - this.convertFieldArrayIntoText(this.invalidFields); - } else { - if (!this.invalidFields.find((element) => element === 'GitHub')) { - this.invalidFields.push('GitHub'); - } - } - } else if (e.target.name === 'update_linkedin_url') { - if (this.validURL(e.target.value) || e.target.value === '') { - this.isDisabled = false; - - this.invalidFields = this.invalidFields.filter((element) => element !== 'LinkedIn'); - this.convertFieldArrayIntoText(this.invalidFields); - } else { - if (!this.invalidFields.find((element) => element === 'LinkedIn')) { - this.invalidFields.push('LinkedIn'); - } - } - } else if (e.target.name === 'old_password') { - this.oldPassword = e.target.value; - } else if (e.target.name === 'new_password1') { - this.newPassword = e.target.value; - if (e.target.value === this.oldPassword) { - this.inputErrorMessage = 'Old password cannot be same as New Password'; - } - } else if (e.target.name === 'new_password2') { - this.retype_newPassword = e.target.value; - if (e.target.value !== this.newPassword) { - this.inputErrorMessage = 'Password do not match'; - } - } - - if (this.invalidFields.length >= 1) { - this.convertFieldArrayIntoText(this.invalidFields); - this.isDisabled = true; - } - } - - validateFileInput(e) { - this.isDisabled = e.target.value === ''; - } -} diff --git a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.html b/frontend_v2/src/app/components/utility/selectphase/selectphase.component.html deleted file mode 100644 index 9484b49904..0000000000 --- a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.html +++ /dev/null @@ -1,129 +0,0 @@ -<ng-container *ngIf="phaseSelectionType == 'radioButton'"> - <li *ngFor="let item of phases"> - <input - [disabled]="challenge['currentDate'] < item.start_date || challenge['currentDate'] >= item.end_date" - type="radio" - [checked]="radioSelected == item.id" - name="selectPhase" - class="with-gap selectPhase fw-light" - id="{{ item.id }}" - value="{{ item.id }}" - (click)="selectPhase(item)" - /> - <label for="{{ item.id }}" class="radio-button-text pointer"> - <div *ngIf="!item.showPrivate"> - <strong class="text-med-black fw-light fs-16">Phase: </strong> - <span class="content fs-16 fs-light">{{ item.name }}</span> - <br /> - <strong class="text-med-black fw-light fs-16">Start date: </strong> - <span class="content fs-16 fs-light">{{ item.start_date | date: 'medium' }}</span> - <br /> - <strong class="text-med-black fw-light fs-16">End date: </strong> - <span class="content fs-16 fs-light">{{ item.end_date | date: 'medium' }}</span> - </div> - <div class="pointer" *ngIf="item.showPrivate"> - <strong class="text-highlight fw-light fs-16">Phase: </strong> - <span class="text-highlight fs-16 fs-light">{{ item.name }}</span> - <br /> - <strong class="text-highlight fw-light fs-16">Start date: </strong> - <span class="text-highlight fs-16 fs-light">{{ item.start_date | date: 'medium' }}</span> - <br /> - <strong class="text-highlight fw-light fs-16">End date: </strong> - <span class="text-highlight fs-16 fs-light">{{ item.end_date | date: 'medium' }}</span> - </div> - </label> - </li> -</ng-container> - -<ng-container *ngIf="phaseSelectionType == 'selectBox' && phaseSelectionListType == 'phase'"> - <mat-form-field> - <mat-label class="fs-16 phase-placeholder" [ngClass]="{ 'hide-label': phaseName !== '' }">Select phase</mat-label> - <mat-select class="rm-margin" [(value)]="selectedPhase"> - <mat-select-trigger> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7 phase_name">{{ phaseName }} - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-12"> - <span class="private-badge"> - <mat-chip-list *ngIf="phaseVisibility"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </span> - </mat-select-trigger> - <mat-option (click)="selectPhase(key)" [value]="key" *ngFor="let key of phases"> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7">{{ key.name }} -     - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-5"> - <mat-chip-list *ngIf="key.showPrivate"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </mat-option> - </mat-select> - </mat-form-field> -</ng-container> - -<ng-container *ngIf="phaseSelectionType == 'selectBox' && phaseSelectionListType == 'settingsPhaseSplit'"> -<mat-form-field> - <mat-label class="fs-16 phase-placeholder" [ngClass]="{'hide-label': settingsSplitName !== '' }">Select Phase Split</mat-label> - <mat-select class="rm-margin" [(value)]="selectedPhaseSplit"> - <mat-select-trigger> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7 phase_name"> - <span class="fw-light">Phase: </span>{{ phaseName }}, <span class="fw-light">Split:  </span - >{{ settingsSplitName }}   - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-12"> - <span class="private-badge"> - <mat-chip-list *ngIf="phaseVisibility"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </span> - </mat-select-trigger> - <mat-option (click)="selectSettingsPhaseSplit(key, 'selectBox', 'settingsPhaseSplit')" [value]="key" *ngFor="let key of settingsPhaseSplits"> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7"> - <span class="fw-light">Phase:</span>{{ key.challenge_phase_name }}, <span class="fw-light">Split: </span - >{{ key.dataset_split_name }}   - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-5"> - <mat-chip-list *ngIf="key.showPrivate"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </mat-option> - </mat-select> - </mat-form-field> -</ng-container> - -<ng-container *ngIf="phaseSelectionType == 'selectBox' && phaseSelectionListType == 'phaseSplit'"> - <mat-form-field class="select_phase_form"> - <mat-label class="fs-16 phase-placeholder" [ngClass]="{ 'hide-label': selectedPhaseSplit !== '' }">Challenge Phase</mat-label> - <mat-select class="rm-margin" [(ngModel)]="selectedPhaseSplit"> - <mat-select-trigger> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7 phase_name"> - <span class="fw-light">Phase: </span>{{ phaseName }}, <span class="fw-light">Split:  </span - >{{ splitName }}   - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-12"> - <span class="private-badge"> - <mat-chip-list *ngIf="phaseVisibility"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </span> - </mat-select-trigger> - <mat-option (click)="selectPhaseSplit(key, 'selectBox', 'phaseSplit')" [value]="key" *ngFor="let key of phaseSplits"> - <span class="col-lg-9 col-md-9 col-sm-8 col-xs-7 phase_name"> - <span class="fw-light">Phase:</span>{{ key.challenge_phase_name }}, <span class="fw-light">Split: </span - >{{ key.dataset_split_name }}   - </span> - <span class="col-lg-3 col-md-3 col-sm-4 col-xs-5"> - <mat-chip-list *ngIf="key.showPrivate"> - <mat-chip>Private</mat-chip> - </mat-chip-list> - </span> - </mat-option> - </mat-select> - </mat-form-field> -</ng-container> diff --git a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.scss b/frontend_v2/src/app/components/utility/selectphase/selectphase.component.scss deleted file mode 100644 index 7728cd91b2..0000000000 --- a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.scss +++ /dev/null @@ -1,48 +0,0 @@ -:host li { - margin: 20px 0px; -} - -.hide-label { - display: none; -} - -.phase_name { - white-space: normal; -} - -.select_phase_form { - display: unset; -} - -::ng-deep .mat-select-panel mat-option.mat-option { - height: unset; -} - -::ng-deep .mat-option-text.mat-option-text { - white-space: normal; - overflow-wrap: break-word; -} - -.private-badge { - float: right; - padding-right: 0px; -} - -@media (max-width: 400px) { - .mat-form-field { - margin-right: 40px; - display: block; - } - .col-xs-12 { - padding-bottom: 5px; - width: 80%; - } -} - -::ng-deep .mat-select-placeholder { - padding-bottom: 10px; -} - -.phase-placeholder { - padding-left: 10px; -} diff --git a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.spec.ts b/frontend_v2/src/app/components/utility/selectphase/selectphase.component.spec.ts deleted file mode 100644 index a5182c5f77..0000000000 --- a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.spec.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { SelectphaseComponent } from './selectphase.component'; -import { GlobalService } from '../../../services/global.service'; -import { ChallengeService } from '../../../services/challenge.service'; -import { ApiService } from '../../../services/api.service'; -import { AuthService } from '../../../services/auth.service'; -import { EndpointsService } from '../../../services/endpoints.service'; -import { RouterTestingModule } from '@angular/router/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; - -describe('SelectphaseComponent', () => { - let component: SelectphaseComponent; - let fixture: ComponentFixture<SelectphaseComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [SelectphaseComponent], - providers: [GlobalService, ChallengeService, ApiService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(SelectphaseComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.ts b/frontend_v2/src/app/components/utility/selectphase/selectphase.component.ts deleted file mode 100644 index e1690b79f0..0000000000 --- a/frontend_v2/src/app/components/utility/selectphase/selectphase.component.ts +++ /dev/null @@ -1,209 +0,0 @@ -import { Component, OnInit, Input, OnChanges } from '@angular/core'; -import { ChallengeService } from '../../../services/challenge.service'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-selectphase', - templateUrl: './selectphase.component.html', - styleUrls: ['./selectphase.component.scss'], -}) -export class SelectphaseComponent implements OnInit, OnChanges { - /** - * Phase list - */ - @Input() phases: any; - - /** - * Phase Splits list for settings tab - */ - @Input() settingsPhaseSplits: any; - - /** - * Phase Splits list - */ - @Input() phaseSplits: any; - - /** - * Selected phase callback - */ - @Input() phaseSelected: any; - - /** - * Selected phase split callback to update the router URL - */ - @Input() selectedPhaseSplitUrlChange: any; - - /** - * Selected phase split - */ - @Input() phaseSplitSelected: any; - - /** - * Phase selection type (radio button or select box) - */ - @Input() phaseSelectionType: string; - - /** - * Phase selection list type (phase or phase split) - */ - @Input() phaseSelectionListType: string; - - /** - * Selected phase name - */ - phaseName = ''; - - /** - * Selected phase visibility - */ - phaseVisibility = false; - - /** - * If phase selected - */ - isPhaseSelected = false; - - /** - * Currently selected phase - */ - selectedPhase: any = null; - - /** - * Selected split name - */ - splitName = ''; - - /** - * Selected split name - */ - settingsSplitName = ''; - - /** - * Selected phase split - */ - selectedPhaseSplit = ''; - - /** - * If phase selected - */ - isPhaseSplitSelected = false; - - /** - * Challenge object - */ - challenge: any; - - /** - * Select default radio option if same as phase id - */ - radioSelected: number; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param challengeService ChallengeService Injection. - */ - constructor(private challengeService: ChallengeService, private globalService: GlobalService) {} - - /** - * Component on intialized. - */ - ngOnInit() { - this.challengeService.currentChallenge.subscribe((challenge) => { - this.challenge = challenge; - if (Array.isArray(this.phases) && this.phases.length) { - this.selectedPhase = this.phases[0]; - this.radioSelected = this.phases[0].id; - this.selectPhase(this.phases[0]); - } else if (Array.isArray(this.settingsPhaseSplits) && this.settingsPhaseSplits.length) { - this.selectedPhaseSplit = this.settingsPhaseSplits[0]; - this.selectSettingsPhaseSplit(this.settingsPhaseSplits[0], 'selectBox', 'settingsPhaseSplit'); - } else if (Array.isArray(this.phaseSplits) && this.phaseSplits.length) { - this.selectedPhaseSplit = this.phaseSplits[0]; - this.phaseName = this.selectedPhaseSplit['challenge_phase_name']; - this.splitName = this.selectedPhaseSplit['dataset_split_name']; - } - }); - } - - /** - * Component on changes detected in Input. - * @param change changes detected - */ - ngOnChanges(change) { - this.challengeService.isPhaseSelected.subscribe((isPhaseSelected) => { - this.isPhaseSelected = isPhaseSelected; - }); - - if (this.isPhaseSelected === true && this.phaseSelected) { - this.challengeService.changePhaseSelected(false); - this.selectPhase(this.selectedPhase); - } - - this.challengeService.isPhaseSplitSelected.subscribe((isPhaseSplitSelected) => { - this.isPhaseSplitSelected = isPhaseSplitSelected; - }); - - if (this.phaseSplitSelected && this.isPhaseSplitSelected) { - this.challengeService.changePhaseSplitSelected(false); - this.selectSettingsPhaseSplit(this.selectedPhaseSplit, this.phaseSelectionType, this.phaseSelectionListType); - } - } - - /** - * Select a particular phase. - * @param phase phase to be selected. - */ - selectPhase(phase) { - this.selectedPhase = phase; - this.phaseName = phase.name; - this.phaseVisibility = phase.showPrivate; - this.phaseSelected(phase); - } - - /** - * Select a particular phase split. - * @param phaseSplit phase split to be selected. - * @param phaseSelectionType phase selection type (radio button or select box). - * @param phaseSelectionListType phase selection list type (phase or phase split) - */ - - selectSettingsPhaseSplit(phaseSplit, phaseSelectionType, phaseSelectionListType) { - this.phaseSelectionType = phaseSelectionType; - this.phaseSelectionListType = phaseSelectionListType; - this.selectedPhaseSplit = phaseSplit; - this.phaseName = phaseSplit.challenge_phase_name; - this.settingsSplitName = phaseSplit.dataset_split_name; - this.phaseVisibility = phaseSplit.showPrivate; - this.phaseSplitSelected(phaseSplit); - } - - selectPhaseSplit(phaseSplit, phaseSelectionType, phaseSelectionListType) { - this.phaseSelectionType = phaseSelectionType; - this.phaseSelectionListType = phaseSelectionListType; - this.selectedPhaseSplit = phaseSplit; - this.phaseName = phaseSplit.challenge_phase_name; - this.splitName = phaseSplit.dataset_split_name; - this.phaseVisibility = phaseSplit.showPrivate; - this.selectedPhaseSplitUrlChange(phaseSplit); - } - - selectPhaseSplitNoURLChange(phaseSplit, phaseSelectionType, phaseSelectionListType) { - this.phaseSelectionType = phaseSelectionType; - this.phaseSelectionListType = phaseSelectionListType; - this.selectedPhaseSplit = phaseSplit; - this.phaseName = phaseSplit.challenge_phase_name; - this.splitName = phaseSplit.dataset_split_name; - this.phaseVisibility = phaseSplit.showPrivate; - } - - /** - * Get 12Hour formatted date function. - */ - getFormattedDate(date) { - return this.globalService.formatDate12Hour(new Date(Date.parse(date))); - } -} diff --git a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.html b/frontend_v2/src/app/components/utility/side-bar/side-bar.component.html deleted file mode 100644 index e00acdb49f..0000000000 --- a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.html +++ /dev/null @@ -1,36 +0,0 @@ -<div class="ev-sidebar ev-fixed fixed hide-on-med-and-down"> - <div class="links-section-outer"> - <div class="links-section"> - <ul> - <li> - <a class="text-light-black" routerLink="/challenges/participated" routerLinkActive="side-active-link" - [class.side-active-link]="tabHighlight == 'participatedChallenges' && !isChallengeComponent == true"> - <i class="fa fa fa-id-card-o side-link-icon"></i> - <div class="sidebar-title">Participated challenges</div> - </a> - </li> - <li> - <a class="text-light-black" routerLink="/challenges/me" routerLinkActive="side-active-link" - [ngClass] = "{'side-active-link': tabHighlight == 'hostedChallenges' && !isChallengeComponent == true}"> - <i class="fa fa fa-folder-open side-link-icon"></i> - <div class="sidebar-title">Hosted challenges</div> - </a> - </li> - <li> - <a class="text-light-black" routerLink="/teams/hosts" routerLinkActive="side-active-link" - [ngClass] = "{'side-active-link': tabHighlight == 'createChallenge'}"> - <i class="fa fa-paper-plane side-link-icon"></i> - <div class="sidebar-title">Create challenge</div> - </a> - </li> - <li> - <a class="text-light-black" routerLink="/teams/participants" routerLinkActive="side-active-link" - [ngClass] = "{'side-active-link': tabHighlight == 'myParticipantTeams'}"> - <i class="fa fa-users side-link-icon"></i> - <div class="sidebar-title">My participant teams</div> - </a> - </li> - </ul> - </div> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.scss b/frontend_v2/src/app/components/utility/side-bar/side-bar.component.scss deleted file mode 100644 index 8d6b256471..0000000000 --- a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.scss +++ /dev/null @@ -1,60 +0,0 @@ -@import 'styles/variables'; -.ev-sidebar { - display: block; - height: 100vh; - width: 220px; - color: #fff; - z-index: 10; - text-align: center; -} - -.side-logo { - font-size: 20px; -} - -.links-section-outer { - border-right: 1px solid $grad-light-black; - overflow: auto; - height: calc(100% - 120px); - margin-top: 98px; -} - -.links-section { - ul { - margin: 0px; - } - li { - a { - padding: 20px 30px 20px 30px; - word-wrap: break-word; - position: relative; - display: block; - width: 100%; - height: 100%; - font-size: 14px; - transition: all 0.2s ease-in-out; - border-right: 1px solid transparent; - &:hover { - color: $highlight; - border-right: 1px solid $highlight; - } - &.side-active-link { - color: $med-black; - border-right: 1px solid $highlight; - } - } - } -} - -.side-link-icon { - font-size: 30px; -} - -.side-title { - padding: 20px 20px 10px 30px; - font-size: 12px; -} - -.sidebar-title { - font-size: 14px; -} diff --git a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.spec.ts b/frontend_v2/src/app/components/utility/side-bar/side-bar.component.spec.ts deleted file mode 100644 index 631cd2d203..0000000000 --- a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { SideBarComponent } from './side-bar.component'; - -describe('SideBarComponent', () => { - let component: SideBarComponent; - let fixture: ComponentFixture<SideBarComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [SideBarComponent], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(SideBarComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.ts b/frontend_v2/src/app/components/utility/side-bar/side-bar.component.ts deleted file mode 100644 index 2eef877312..0000000000 --- a/frontend_v2/src/app/components/utility/side-bar/side-bar.component.ts +++ /dev/null @@ -1,56 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { Router, NavigationEnd } from '@angular/router'; -import { filter } from 'rxjs/internal/operators'; -import { GlobalService } from '../../../services/global.service'; - -@Component({ - selector: 'app-side-bar', - templateUrl: './side-bar.component.html', - styleUrls: ['./side-bar.component.scss'], -}) -export class SideBarComponent implements OnInit { - /** - * Current name of tab which needs to be active - */ - tabHighlight = 'allChallenges'; - - /** - * Returns true if the string is not a number - */ - isChallengeComponent = false; - - /** - * Constructor - * @param globalService GlobalService Injection. - * @param router Router - */ - constructor(private globalService: GlobalService, private router: Router) {} - - ngOnInit() { - this.globalService.nameTabHighlight.subscribe((tabHighlight) => { - this.tabHighlight = tabHighlight; - }); - - this.router.events.pipe(filter((event) => event instanceof NavigationEnd)).subscribe((event) => { - if (event) { - if (this.router.url.split('/')[2] === 'me') { - this.tabHighlight = 'hostedChallenges'; - this.globalService.changeTabActiveStatus('hostedChallenges'); - } else if (this.router.url.split('/')[2] === 'hosts') { - this.tabHighlight = 'createChallenge'; - this.globalService.changeTabActiveStatus('createChallenge'); - } else if (this.router.url.split('/')[2] === 'participants') { - this.tabHighlight = 'myParticipantTeams'; - this.globalService.changeTabActiveStatus('myParticipantTeams'); - } else if (this.router.url.split('/')[2] === 'participated') { - this.tabHighlight = 'participatedChallenges'; - this.globalService.changeTabActiveStatus('participatedChallenges'); - } else if (this.router.url.split('/')[2] === 'all') { - this.tabHighlight = 'allChallenges'; - this.globalService.changeTabActiveStatus('allChallenges'); - } - this.isChallengeComponent = isNaN(parseInt(this.router.url.split('/')[length], 10)); - } - }); - } -} diff --git a/frontend_v2/src/app/components/utility/toast/toast.component.html b/frontend_v2/src/app/components/utility/toast/toast.component.html deleted file mode 100644 index 10a919d5f7..0000000000 --- a/frontend_v2/src/app/components/utility/toast/toast.component.html +++ /dev/null @@ -1,11 +0,0 @@ -<div id="toast" class="toast-container"> - <div - class="toast-desc" - [ngClass]="{ 'toast-success': type == 'success', 'toast-error': type == 'error', 'toast-info': type == 'info' }" - > - <span *ngIf="type == 'success'"><i class="fa fa-check" aria-hidden="true"></i></span> - <span *ngIf="type == 'error'"><i class="fa fa-times" aria-hidden="true"></i></span> - <span *ngIf="type == 'info'"><i class="fa fa-info" aria-hidden="true"></i></span> - <span class="toast-message" id="toastmessage">{{ message }}</span> - </div> -</div> diff --git a/frontend_v2/src/app/components/utility/toast/toast.component.scss b/frontend_v2/src/app/components/utility/toast/toast.component.scss deleted file mode 100644 index 3daf1c35bd..0000000000 --- a/frontend_v2/src/app/components/utility/toast/toast.component.scss +++ /dev/null @@ -1,116 +0,0 @@ -@import './variables.scss'; -@import './mixins.scss'; - -.toast-container { - visibility: hidden; - word-wrap: break-word; - z-index: 1; - display: inline-block; - color: #fff; - text-align: center; - position: fixed; - right: 0; - top: 64px; - box-shadow: none; - .toast-desc { - padding: 15px 20px; - @include box-shadow(0px, 0px, 10px, 5px, $overlay-light); - .toast-message { - font-size: $fs-14; - font-weight: $fw-light; - margin-left: 8px; - } - .fa-info, - .fa-times, - .fa-check { - font-size: 15px; - } - } - &.show { - visibility: visible; - -webkit-animation: fadein 0.5s, shake 1s 0.5s, shake 1s 0.5s; //stay 5s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s; - animation: fadein 0.5s, shake 1s 0.5s, shake 1s 0.5s; //stay 5s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s; - width: 350px; - transition: width 0.5s; - transition-delay: 1.5s; - .toast-desc { - visibility: visible; - transition: visibility 0s; - transition-delay: 1.5s; - -webkit-animation: showpls 0s 1s; - animation: showpls 0s 1s; - } - } -} - -.toast-desc { - word-break: initial; - &.toast-success { - background-color: $green-med; - &:hover { - background-color: $green-med; - } - } - &.toast-error { - background-color: $med-red; - &:hover { - background-color: $med-red; - } - } - - &.toast-info { - background-color: $info-blue; - &:hover { - background-color: $info-blue; - } - } -} - -@include screen-small { - .toast-container { - &.show { - min-width: 300px; - } - .toast-desc { - margin-left: -15px; - min-width: 250px; - .toast-message { - max-width: 250px; - } - } - } -} - -@include keyframes(fadein) { - from { - bottom: 0; - opacity: 0; - } - to { - bottom: 30px; - opacity: 1; - } -} - -@include keyframes(shake) { - 10%, - 90% { - transform: translate3d(-1px, 0, 0); - } - - 20%, - 80% { - transform: translate3d(2px, 0, 0); - } - - 30%, - 50%, - 70% { - transform: translate3d(-4px, 0, 0); - } - - 40%, - 60% { - transform: translate3d(4px, 0, 0); - } -} diff --git a/frontend_v2/src/app/components/utility/toast/toast.component.spec.ts b/frontend_v2/src/app/components/utility/toast/toast.component.spec.ts deleted file mode 100644 index 813da2a129..0000000000 --- a/frontend_v2/src/app/components/utility/toast/toast.component.spec.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { ToastComponent } from './toast.component'; -import { GlobalService } from '../../../services/global.service'; - -describe('ToastComponent', () => { - let component: ToastComponent; - let fixture: ComponentFixture<ToastComponent>; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ToastComponent], - providers: [GlobalService], - }).compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(ToastComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/frontend_v2/src/app/components/utility/toast/toast.component.ts b/frontend_v2/src/app/components/utility/toast/toast.component.ts deleted file mode 100644 index ff65b088c5..0000000000 --- a/frontend_v2/src/app/components/utility/toast/toast.component.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { Component, OnInit, OnDestroy, Inject } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; -import { GlobalService } from '../../../services/global.service'; - -/** - * Component Class - */ -@Component({ - selector: 'app-toast', - templateUrl: './toast.component.html', - styleUrls: ['./toast.component.scss'], -}) -export class ToastComponent implements OnInit, OnDestroy { - /** - * Type of toast - */ - type: any = 'success'; - - /** - * Toast message - */ - message: any = 'Success'; - - /** - * Global Service subscription public - */ - globalServiceSubscription: any; - - /** - * Constructor. - * @param document Window document Injection. - * @param globalService GlobalService Injection. - */ - constructor(@Inject(DOCUMENT) private document: Document, private globalService: GlobalService) {} - - /** - * Component on initialized. - */ - ngOnInit() { - this.globalServiceSubscription = this.globalService.toast.subscribe((temp) => { - this.type = temp.type || 'success'; - this.message = temp.message || 'Success'; - if (this.message.length >= 40) { - console.warn('Toast message length should be < 65 and < 40 for mobile devices.'); - } - this.show(temp.duration); - }); - } - - /** - * Display Toast. - * @param duration toast display duration in seconds. - */ - show(duration) { - const TOAST = this.document.getElementById('toast'); - const TOAST_MESSAGE = this.document.getElementById('toastmessage'); - TOAST_MESSAGE.innerHTML = this.message; - TOAST.className = TOAST.className + ' show'; - setTimeout(() => { - TOAST.className = TOAST.className.replace('show', ''); - }, duration * 1000); - } - - /** - * Component on destroyed. - */ - ngOnDestroy() { - if (this.globalServiceSubscription) { - this.globalServiceSubscription.unsubscribe(); - } - } -} diff --git a/frontend_v2/src/app/components/utility/utility.module.ts b/frontend_v2/src/app/components/utility/utility.module.ts deleted file mode 100644 index e418ba3357..0000000000 --- a/frontend_v2/src/app/components/utility/utility.module.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { OwlDateTimeModule, OwlNativeDateTimeModule } from 'ng-pick-datetime'; -import { RouterModule } from '@angular/router'; -import { - MatChipsModule, - MatTableModule, - MatMenuModule, - MatSelectModule, - MatIconModule, - MatDividerModule, - MatCheckboxModule, -} from '@angular/material'; -import { FormsModule } from '@angular/forms'; - -// import components -import { ConfirmComponent } from './confirm/confirm.component'; -import { ForceloginComponent } from './forcelogin/forcelogin.component'; -import { InputComponent } from './input/input.component'; -import { LoadingComponent } from './loading/loading.component'; -import { SelectphaseComponent } from './selectphase/selectphase.component'; -import { SideBarComponent } from './side-bar/side-bar.component'; - -@NgModule({ - declarations: [ - ForceloginComponent, - InputComponent, - SideBarComponent, - ConfirmComponent, - LoadingComponent, - SelectphaseComponent, - ], - imports: [ - CommonModule, - OwlDateTimeModule, - OwlNativeDateTimeModule, - FormsModule, - RouterModule, - MatSelectModule, - MatChipsModule, - MatTableModule, - MatDividerModule, - MatMenuModule, - MatIconModule, - MatCheckboxModule, - ], - - exports: [ - ForceloginComponent, - InputComponent, - OwlDateTimeModule, - OwlNativeDateTimeModule, - SideBarComponent, - ConfirmComponent, - LoadingComponent, - SelectphaseComponent, - ], -}) -export class UtilityModule {} diff --git a/frontend_v2/src/app/services/api.service.spec.ts b/frontend_v2/src/app/services/api.service.spec.ts deleted file mode 100644 index dc7bec88ad..0000000000 --- a/frontend_v2/src/app/services/api.service.spec.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; -import { HttpClientModule } from '@angular/common/http'; -import { ApiService } from './api.service'; -import { GlobalService } from './global.service'; - -describe('ApiService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - imports: [HttpClientModule], - providers: [ApiService, GlobalService], - }); - }); - - it('should be created', inject([ApiService], (service: ApiService) => { - expect(service).toBeTruthy(); - })); - - /** - * Prepare HTTP Options test - */ - it('Prepare Headers', inject([ApiService], (service: ApiService) => { - expect(service).toBeTruthy(); - expect(service.prepareHttpOptions(true)['Content-Type']).toBeUndefined(); - expect(service.prepareHttpOptions()['Content-Type']).toBeDefined(); - })); - - /** - * - * Loading Wrapper - */ - it('Test Loading Wrapper', inject([ApiService], (service: ApiService) => { - expect(service).toBeTruthy(); - const SPIES = { - success: () => {}, - error: () => {}, - final: () => {}, - }; - const SPY1 = spyOn(SPIES, 'success'); - const SPY2 = spyOn(SPIES, 'error'); - const SPY3 = spyOn(SPIES, 'final'); - - const HTTP_CALL_MOCK = { - subscribe: (one, two, three) => { - SPIES.success(); - SPIES.error(); - SPIES.final(); - one(); - two(); - three(); - }, - }; - const RET = service.loadingWrapper(HTTP_CALL_MOCK); - RET.subscribe(null, null, null); - expect(SPY1).toHaveBeenCalled(); - expect(SPY2).toHaveBeenCalled(); - expect(SPY3).toHaveBeenCalled(); - })); -}); diff --git a/frontend_v2/src/app/services/api.service.ts b/frontend_v2/src/app/services/api.service.ts deleted file mode 100644 index b5ff3574c6..0000000000 --- a/frontend_v2/src/app/services/api.service.ts +++ /dev/null @@ -1,162 +0,0 @@ -import { Injectable } from '@angular/core'; -import { environment } from '../../environments/environment'; -import { HttpClient, HttpHeaders } from '@angular/common/http'; -import { GlobalService } from './global.service'; - -@Injectable() -export class ApiService { - API = environment.api_endpoint; - HEADERS = { 'Content-Type': 'application/json' }; - HTTP_OPTIONS: any; - - /** - * Constructor. - * @param http Http Injection. - * @param globalService GlobalService Injection. - */ - constructor(private http: HttpClient, private globalService: GlobalService) {} - - /** - * Prepares headers for each request to API. - * @param fileHeaders Set to true when uploading a file. - */ - prepareHttpOptions(fileHeaders = false) { - const TOKEN = this.globalService.getAuthToken(); - if (TOKEN) { - this.HEADERS['Authorization'] = 'Token ' + TOKEN; - } else { - delete this.HEADERS['Authorization']; - } - const TEMP = Object.assign({}, this.HEADERS); - if (fileHeaders) { - delete TEMP['Content-Type']; - } - this.HTTP_OPTIONS = { - headers: new HttpHeaders(TEMP), - }; - return TEMP; - } - - /** - * HTTP GET wrapper. - * @param path path of API call. - * @param isJson set to false when fetching some non-JSON content. - */ - getUrl(path: string, isJson = true, isLoader = true) { - if (isJson) { - this.prepareHttpOptions(); - return this.loadingWrapper(this.http.get(this.API + path, this.HTTP_OPTIONS), isLoader); - } else { - this.prepareHttpOptions(true); - const TEMP = Object.assign({}, this.HTTP_OPTIONS, { observe: 'response', responseType: 'text' }); - return this.loadingWrapper(this.http.get(this.API + path, TEMP)); - } - } - - /** - * HTTP POST wrapper. - * @param path path of API call. - * @param body stringified json body. - */ - postUrl(path: string, body: any) { - this.prepareHttpOptions(); - return this.loadingWrapper(this.http.post(this.API + path, body, this.HTTP_OPTIONS)); - } - - /** - * HTTP PATCH wrapper. - * @param path path of API call. - * @param body stringified json body. - */ - patchUrl(path: string, body: any) { - this.prepareHttpOptions(); - return this.loadingWrapper(this.http.patch(this.API + path, body, this.HTTP_OPTIONS)); - } - - /** - * HTTP PUT wrapper. - * @param path path of API call. - * @param body stringified json body. - */ - putUrl(path: string, body: any) { - this.prepareHttpOptions(); - return this.loadingWrapper(this.http.put(this.API + path, body, this.HTTP_OPTIONS)); - } - - /** - * HTTP POST (file upload) wrapper. - * @param path path of API call. - * @param body stringified json body. - */ - postFileUrl(path: string, formData: any) { - this.prepareHttpOptions(true); - return this.loadingWrapper(this.http.post(this.API + path, formData, this.HTTP_OPTIONS)); - } - - /** - * HTTP PATCH (file upload) wrapper. - * @param path path of API call. - * @param body stringified json body. - */ - patchFileUrl(path: string, formData: any) { - this.prepareHttpOptions(true); - return this.loadingWrapper(this.http.patch(this.API + path, formData, this.HTTP_OPTIONS)); - } - - /** - * HTTP DELETE wrapper. - * @param path path of API call. - */ - deleteUrl(path: string) { - this.prepareHttpOptions(); - return this.loadingWrapper(this.http.delete(this.API + path, this.HTTP_OPTIONS)); - } - - /** - * Wrapper to display Loading-component during each network request. - * @param path path of API call. - * @param body stringified json body. - */ - loadingWrapper(httpCall, isLoader = true) { - if (isLoader) { - setTimeout(() => { - this.globalService.toggleLoading(true); - }, 100); - } - let success = (params) => {}; - let error = (params) => {}; - let final = () => {}; - const RETURN_WRAPPER = { - subscribe: (fa, fb, fc) => { - success = fa; - error = fb; - final = fc; - }, - }; - httpCall.subscribe( - (data) => { - success(data); - }, - (err) => { - setTimeout(() => { - this.globalService.toggleLoading(false); - }, 100); - error(err); - }, - () => { - setTimeout(() => { - this.globalService.toggleLoading(false); - }, 100); - final(); - } - ); - return RETURN_WRAPPER; - } - - /** - * Utility for appending extra headers - */ - appendHeaders(headers) { - // TODO: Add Headers to this.HEADERS and update this.HTTP_OPTIONS - } -} diff --git a/frontend_v2/src/app/services/auth.service.spec.ts b/frontend_v2/src/app/services/auth.service.spec.ts deleted file mode 100644 index 844b566e14..0000000000 --- a/frontend_v2/src/app/services/auth.service.spec.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; - -import { AuthService } from './auth.service'; -import { GlobalService } from './global.service'; -import { EndpointsService } from './endpoints.service'; -import { ApiService } from './api.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; - -describe('AuthService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [AuthService, GlobalService, ApiService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }); - }); - - it('should be created', inject([AuthService], (service: AuthService) => { - expect(service).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/services/auth.service.ts b/frontend_v2/src/app/services/auth.service.ts deleted file mode 100644 index 68bc14af30..0000000000 --- a/frontend_v2/src/app/services/auth.service.ts +++ /dev/null @@ -1,232 +0,0 @@ -import { Injectable } from '@angular/core'; -import { GlobalService } from './global.service'; -import { EndpointsService } from './endpoints.service'; -import { ApiService } from './api.service'; -import { BehaviorSubject } from 'rxjs'; -import { Router } from '@angular/router'; - -@Injectable() -export class AuthService { - authState = { isLoggedIn: false }; - private authStateSource = new BehaviorSubject(this.authState); - change = this.authStateSource.asObservable(); - - isAuth = false; - isMail = true; - // getUser for signup - regUser = {}; - // useDetails for login - getUser = {}; - // color to show password strength - color = {}; - isResetPassword = false; - // form error - isFormError = false; - FormError = {}; - - // default parameters - isLoader = false; - regMsg = ''; - wrnMsg = {}; - isValid = {}; - deliveredMsg = ''; - canShowPassword = false; - canShowConfirmPassword = false; - - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - * @param endpointsService EndpointsService Injection. - */ - constructor( - private globalService: GlobalService, - private apiService: ApiService, - private endpointsService: EndpointsService, - private router: Router - ) {} - - /** - * Call this to update authentication state. - * @param state New Authentication state - */ - authStateChange(state) { - this.authState = state; - this.authStateSource.next(this.authState); - this.isAuth = this.authState.isLoggedIn; - } - - /** - * To affirm that user is logged in - * @param autoFetchUserDetails User details fetch flag - */ - loggedIn(autoFetchUserDetails = false) { - this.authStateChange({ isLoggedIn: true, username: '' }); - if (autoFetchUserDetails) { - this.fetchUserDetails(); - } - } - - /** - * Log Out Trigger - */ - logOut() { - const temp = { isLoggedIn: false }; - const routePath = ''; - this.globalService.deleteData(this.globalService.authStorageKey); - this.authStateChange(temp); - this.router.navigate([routePath]); - this.globalService.showToast('info', 'Successfully logged out!'); - } - - /** - * User Details fetch Trigger - */ - fetchUserDetails() { - const API_PATH = 'auth/user/'; - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - const TEMP = Object.assign({ isLoggedIn: true }, SELF.authState, data); - SELF.authStateChange(TEMP); - }, - (err) => { - this.globalService.showToast('info', 'Timeout, Please login again to continue!'); - this.globalService.resetStorage(); - this.authState = { isLoggedIn: false }; - SELF.globalService.handleApiError(err, false); - }, - () => {} - ); - } - - /** - * Calculating Password Strength (Not being called as of now) - * TODO: make use of it - */ - passwordStrength(password) { - // Regular Expressions. - const REGEX = new Array(); - REGEX.push('[A-Z]', '[a-z]', '[0-9]', '[$$!%*#?&]'); - - let passed = 0; - // Validate for each Regular Expression. - for (let i = 0; i < REGEX.length; i++) { - if (new RegExp(REGEX[i]).test(password)) { - passed++; - } - } - // Validate for length of Password. - if (passed > 2 && password.length > 8) { - passed++; - } - - let color = ''; - let strength = ''; - if (passed === 1) { - strength = 'Weak'; - color = 'red'; - } else if (passed === 2) { - strength = 'Average'; - color = 'darkorange'; - } else if (passed === 3) { - strength = 'Good'; - color = 'green'; - } else if (passed === 4) { - strength = 'Strong'; - color = 'darkgreen'; - } else if (passed === 5) { - strength = 'Very Strong'; - color = 'darkgreen'; - } - return [strength, color]; - } - - /** - * Check if user is loggedIn and trigger logIn if token present but not loggedIn - */ - isLoggedIn() { - const token = this.globalService.getAuthToken(); - if (token) { - if (!this.authState['isLoggedIn']) { - this.loggedIn(true); - } - return true; - } else { - if (this.authState['isLoggedIn']) { - this.logOut(); - } - } - } - - /** - * User Details fetch Trigger - * @param token - * @param success - * @param error - */ - verifyEmail(token, success = () => {}, error = () => {}) { - const API_PATH = this.endpointsService.verifyEmailURL(); - const SELF = this; - const BODY = JSON.stringify({ - key: token, - }); - this.apiService.postUrl(API_PATH, BODY).subscribe( - (data) => { - success(); - }, - (err) => { - error(); - SELF.globalService.handleApiError(err); - }, - () => {} - ); - } - - /** - * Fetch JWT for submission Auth Token - */ - setRefreshJWT() { - const API_PATH = 'accounts/user/get_auth_token'; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - this.globalService.storeData('refreshJWT', data['token']); - }, - (err) => { - this.globalService.showToast('info', 'Could not fetch Auth Token'); - return false; - }, - () => {} - ); - } - - // toggle password visibility - togglePasswordVisibility() { - this.canShowPassword = !this.canShowPassword; - } - - // toggle confirm password visibility - toggleConfirmPasswordVisibility() { - this.canShowConfirmPassword = !this.canShowConfirmPassword; - } - - resetForm() { - // getUser for signup - this.regUser = {}; - // useDetails for login - this.getUser = {}; - - // reset error msg - this.wrnMsg = {}; - - // switch off form errors - this.isFormError = false; - - // reset form when link sent for reset password - this.isMail = true; - - // reset the eye icon and type to password - this.canShowPassword = false; - this.canShowConfirmPassword = false; - } -} diff --git a/frontend_v2/src/app/services/challenge.service.spec.ts b/frontend_v2/src/app/services/challenge.service.spec.ts deleted file mode 100644 index 92f93e6898..0000000000 --- a/frontend_v2/src/app/services/challenge.service.spec.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; -import { ApiService } from './api.service'; -import { ChallengeService } from './challenge.service'; -import { EndpointsService } from './endpoints.service'; -import { HttpClientModule } from '@angular/common/http'; -import { RouterTestingModule } from '@angular/router/testing'; -import { GlobalService } from './global.service'; -import { AuthService } from './auth.service'; - -describe('ChallengeService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [ChallengeService, ApiService, GlobalService, AuthService, EndpointsService], - imports: [RouterTestingModule, HttpClientModule], - }); - }); - - it('should be created', inject([ChallengeService], (service: ChallengeService) => { - expect(service).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/services/challenge.service.ts b/frontend_v2/src/app/services/challenge.service.ts deleted file mode 100644 index e5848491d2..0000000000 --- a/frontend_v2/src/app/services/challenge.service.ts +++ /dev/null @@ -1,396 +0,0 @@ -import { Injectable } from '@angular/core'; -import { BehaviorSubject } from 'rxjs'; -import { NGXLogger } from 'ngx-logger'; -import { Router } from '@angular/router'; - -// import service -import { ApiService } from './api.service'; -import { GlobalService } from './global.service'; -import { AuthService } from './auth.service'; -import { EndpointsService } from './endpoints.service'; - -@Injectable() -export class ChallengeService { - private defaultChallenge: any = { creator: {} }; - private defaultStars: any = { count: 0, is_starred: false }; - private defaultPublishChallenge: any = { - state: 'Not Published', - icon: 'fa fa-eye-slash red-text', - }; - private isLoggedIn = false; - private challengeSource = new BehaviorSubject(this.defaultChallenge); - currentChallenge = this.challengeSource.asObservable(); - private starSource = new BehaviorSubject(this.defaultStars); - currentStars = this.starSource.asObservable(); - private teamsSource = new BehaviorSubject([]); - currentParticipantTeams = this.teamsSource.asObservable(); - private phasesSource = new BehaviorSubject([]); - currentPhases = this.phasesSource.asObservable(); - private phaseSplitSource = new BehaviorSubject([]); - currentPhaseSplit = this.phaseSplitSource.asObservable(); - private challengeParticipationSource = new BehaviorSubject(false); - currentParticipationStatus = this.challengeParticipationSource.asObservable(); - private hostTeamSource = new BehaviorSubject(null); - currentHostTeam = this.hostTeamSource.asObservable(); - private challengeHostSource = new BehaviorSubject(false); - isChallengeHost = this.challengeHostSource.asObservable(); - private challengePublishSource = new BehaviorSubject(this.defaultPublishChallenge); - currentChallengePublishState = this.challengePublishSource.asObservable(); - private phaseSelected = new BehaviorSubject(false); - isPhaseSelected = this.phaseSelected.asObservable(); - private phaseSplitSelected = new BehaviorSubject(false); - isPhaseSplitSelected = this.phaseSplitSelected.asObservable(); - /** - * Constructor. - * @param globalService GlobalService Injection. - * @param apiService ApiService Injection. - * @param authService AuthService Injection. - */ - constructor( - private apiService: ApiService, - private globalService: GlobalService, - private authService: AuthService, - private endpointsService: EndpointsService, - private logger: NGXLogger, - private router: Router - ) {} - - /** - * Update current Challenge. - * @param challenge new Current-Challenge. - */ - changeCurrentChallenge(challenge: object) { - this.challengeSource.next(challenge); - } - - /** - * Update user's challenge host status for current challenge. - * @param isChallengeHost new challenge host status. - */ - changeChallengeHostStatus(isChallengeHost: any) { - this.challengeHostSource.next(isChallengeHost); - } - - /** - * Update challenge publish state and icon for current challenge. - * @param publishChallenge new challenge publish status and icon. - */ - changeChallengePublish(publishChallenge: any) { - this.challengePublishSource.next(publishChallenge); - } - - /** - * Update stars for current challenge. - * @param stars new stars. - */ - changeCurrentStars(stars: object) { - this.starSource.next(stars); - } - - /** - * Update current Participant teams. - * @param teams new teams. - */ - changeCurrentParticipantTeams(teams: any) { - this.teamsSource.next(teams); - } - - /** - * Update current Phases for the current challenge. - * @param phases new phases. - */ - changeCurrentPhases(phases: any) { - this.phasesSource.next(phases); - } - - /** - * Update the status for selectPhase component after details are updated - * @param selectedPhase new updated phase details status - */ - changePhaseSelected(selectedPhase: boolean) { - this.phaseSelected.next(selectedPhase); - } - - /** - * Update user's participation status for current Challenge. - * @param participationStatus new participation status. - */ - changeParticipationStatus(participationStatus: any) { - this.challengeParticipationSource.next(participationStatus); - } - - /** - * Update current phase splits. - * @param phaseSplits new phase splits. - */ - changeCurrentPhaseSplit(phaseSplits: any) { - this.phaseSplitSource.next(phaseSplits); - } - - /** - * Update the status for selectPhase component after details are updated - * @param selectedPhase new updated phase details status - */ - changePhaseSplitSelected(selectedPhaseSplit: boolean) { - this.phaseSplitSelected.next(selectedPhaseSplit); - } - - /** - * Update current Host Team. - * @param hostTeam new host team. - */ - changeCurrentHostTeam(hostTeam: any) { - this.hostTeamSource.next(hostTeam); - } - - /** - * Fetch challenge details. (internally calls fetchStars, fetchParticipantTeams, fetchPhases, fetchPhaseSplits) - * @param id id of new challenge. - */ - fetchChallenge(id) { - const API_PATH = this.endpointsService.challengeDetailsURL(id); - const SELF = this; - this.changeCurrentPhases([]); - this.changeCurrentPhaseSplit([]); - this.authService.change.subscribe((authState) => { - if (authState['isLoggedIn']) { - SELF.isLoggedIn = true; - SELF.fetchStars(id); - SELF.fetchParticipantTeams(id); - SELF.changeParticipationStatus(true); - } else if (!authState['isLoggedIn']) { - SELF.isLoggedIn = false; - SELF.changeParticipationStatus(false); - } - }); - SELF.fetchPhases(id); - SELF.fetchPhaseSplits(id); - SELF.changeChallengeHostStatus(false); - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - if (data['id'] === parseInt(id, 10)) { - SELF.changeCurrentChallenge(data); - } - const challengePublish = { - state: '', - icon: '', - }; - if (data['published']) { - challengePublish.state = 'Published'; - challengePublish.icon = 'fa fa-eye green-text'; - } else { - challengePublish.state = 'Not Published'; - challengePublish.icon = 'fa fa-eye-slash red-text'; - } - this.changeChallengePublish(challengePublish); - }, - (err) => { - SELF.globalService.handleApiError(err); - if (err.error.error === 'Challenge does not exist!') { - this.router.navigate(['not-found']); - } - }, - () => { - this.logger.info('Challenge', id, 'fetched!'); - } - ); - } - - /** - * Fetch Stars - * @param hostTeam new host team. - */ - fetchStars(id, callback = null) { - const API_PATH = this.endpointsService.challengeStarsURL(id); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - if (callback) { - callback(data); - } else { - SELF.changeCurrentStars(data); - } - }, - (err) => { - SELF.globalService.handleApiError(err, false); - }, - () => { - this.logger.info('Stars', id, 'fetched!'); - } - ); - } - - /** - * Update Stars for a particular challenge - * @param id ID of the challenge to be updated - * @param callback callback function. - * @param self context this - */ - starToggle(id, callback = null, self = null) { - const API_PATH = this.endpointsService.challengeStarsURL(id); - const SELF = this; - const BODY = JSON.stringify({}); - this.apiService.postUrl(API_PATH, BODY).subscribe( - (data) => { - if (callback) { - callback(data, self); - } else { - SELF.changeCurrentStars(data); - } - }, - (err) => { - SELF.globalService.handleApiError(err, false); - }, - () => { - this.logger.info('Stars', id, 'fetched!'); - } - ); - } - - /** - * Load Javascript function. - * @param url Name of script. - * @param implementationCode callback function. - * @param location where to append the file - * @param env `This` variable of the environment - */ - private fetchParticipantTeams(id) { - const API_PATH = this.endpointsService.challengeParticipantTeamsURL(id); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - let teams = []; - let participated = false; - if (data['is_challenge_host']) { - SELF.changeChallengeHostStatus(true); - } - if (data['challenge_participant_team_list']) { - teams = data['challenge_participant_team_list']; - this.changeCurrentParticipantTeams(teams); - for (let i = 0; i < teams['length']; i++) { - if (teams[i]['challenge'] !== null && teams[i]['challenge']['id'] === parseInt(id, 10)) { - SELF.changeParticipationStatus(true); - participated = true; - break; - } - } - } - if (teams.length === 0 || !participated) { - SELF.changeParticipationStatus(false); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Participant Teams fetched'); - } - ); - } - - /** - * Fetch Phases - * @param id id of the challenge. - */ - fetchPhases(id) { - const API_PATH = this.endpointsService.challengePhaseURL(id); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - let phases = []; - if (data['results']) { - phases = data['results']; - this.changeCurrentPhases(phases); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Phases fetched'); - } - ); - } - - /** - * Fetch Phase Splits - * @param id id of the challenge - */ - fetchPhaseSplits(id) { - const API_PATH = this.endpointsService.challengePhaseSplitURL(id); - const SELF = this; - this.apiService.getUrl(API_PATH).subscribe( - (data) => { - let phaseSplits = []; - if (data && data.length > 0) { - phaseSplits = data; - this.changeCurrentPhaseSplit(phaseSplits); - } - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Phase Splits fetched'); - } - ); - } - - /** - * Participate in challenge with a team - * @param id id of the challenge. - * @param team team id of the participating team. - */ - participateInChallenge(id, team) { - const API_PATH = this.endpointsService.challengeParticipateURL(id, team); - const SELF = this; - const BODY = JSON.stringify({}); - this.apiService.postUrl(API_PATH, BODY).subscribe( - (data) => { - SELF.fetchParticipantTeams(id); - }, - (err) => { - SELF.globalService.handleApiError(err); - }, - () => { - this.logger.info('Challenge participated'); - } - ); - } - - /** - * Make a Challenge submission - * @param challenge id of challenge. - * @param phase challenge phase id. - * @param formData Form Data for submission (file) - * @param callback callback function - */ - challengeSubmission(challenge, phase, formData, callback = () => {}) { - const API_PATH = this.endpointsService.challengeSubmissionURL(challenge, phase); - const SELF = this; - this.apiService.postFileUrl(API_PATH, formData).subscribe( - (data) => { - SELF.globalService.showToast('success', 'Submission successful!'); - callback(); - }, - (err) => { - SELF.globalService.handleApiError(err); - callback(); - }, - () => { - this.logger.info('Submission Uploaded'); - } - ); - } - - /** - * Create a new Challenge (Zip Upload) - * @param hostTeam Id of hosting team. - * @param formData challenge submission data (file) - * @param callback callback function - */ - challengeCreate(hostTeam, formData, callback = () => {}) { - const API_PATH = this.endpointsService.challengeCreateURL(hostTeam); - return this.apiService.postFileUrl(API_PATH, formData); - } -} diff --git a/frontend_v2/src/app/services/endpoints.service.spec.ts b/frontend_v2/src/app/services/endpoints.service.spec.ts deleted file mode 100644 index c708a85b80..0000000000 --- a/frontend_v2/src/app/services/endpoints.service.spec.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; - -import { EndpointsService } from './endpoints.service'; - -describe('EndpointsService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [EndpointsService], - }); - }); - - it('should be created', inject([EndpointsService], (service: EndpointsService) => { - expect(service).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/services/endpoints.service.ts b/frontend_v2/src/app/services/endpoints.service.ts deleted file mode 100644 index a2787f6d90..0000000000 --- a/frontend_v2/src/app/services/endpoints.service.ts +++ /dev/null @@ -1,449 +0,0 @@ -import { Injectable } from '@angular/core'; - -@Injectable() -export class EndpointsService { - /** - * Categories of API paths - */ - participants = 'participants/'; - hosts = 'hosts/'; - jobs = 'jobs/'; - challenges = 'challenges/'; - challenge = 'challenge/'; - auth = 'auth/'; - analytics = 'analytics/'; - - constructor() {} - - /** - * Login URL - */ - loginURL() { - return `auth/login/`; - } - - /** - * Signup URL - */ - signupURL() { - return `auth/registration/`; - } - - /** - * Reset password URL - */ - resetPasswordURL() { - return `auth/password/reset/`; - } - - /** - * Reset password confirm URL - */ - resetPasswordConfirmURL() { - return `auth/password/reset/confirm`; - } - - /** - * Contact form URL - */ - contactURL() { - return `web/contact/`; - } - - /** - * Get User Details - */ - userDetailsURL() { - return `${this.auth}user/`; - } - - /** - * Change Password - */ - changePasswordURL() { - return `${this.auth}password/change/`; - } - - /** - * Verify Email - */ - verifyEmailURL() { - return `${this.auth}registration/verify-email/`; - } - - featuredChallengesURL() { - return `${this.challenges}featured/`; - } - - /** - * Subscribe to Newsletters - */ - subscribeURL() { - return `web/subscribe/`; - } - - /** - * All Participant teams - */ - allParticipantTeamsURL() { - return `${this.participants}participant_team`; - } - - /** - * Participant Teams Filter - * @param teamName team name - */ - FilteredParticipantTeamURL(teamName) { - return `${this.participants}participant_team?team_name=${teamName}`; - } - - /** - * Edit Participant Team Name - */ - participantTeamURL(teamId) { - return `${this.participants}participant_team/${teamId}`; - } - /** - * Edit Host Team Name - */ - hostTeamURL(teamId) { - return `${this.hosts}challenge_host_team/${teamId}`; - } - - /** - * Host Teams Filter - * @param teamName team name - */ - FilteredHostTeamURL(teamName) { - return `${this.hosts}challenge_host_team?team_name=${teamName}`; - } - - /** - * Our Team members - */ - ourTeamURL() { - return `web/team/`; - } - - /** - * Invite members to participant team - */ - participantTeamInviteURL(teamId) { - return `${this.participants}participant_team/${teamId}/invite`; - } - - /** - * Fetch all challenges for a time frame - * @param time past, present or future - */ - allChallengesURL(time) { - return `${this.challenges}${this.challenge}${time}`; - } - - /** - * Fetch all unapproved challenges for a team - * @param teamId team Id - */ - allUnapprovedChallengesURL(teamId) { - return `${this.challenges}challenge_host_team/${teamId}/challenge`; - } - - /** - * All host teams - */ - allHostTeamsURL() { - return `${this.hosts}challenge_host_team`; - } - - /** - * Invite members to host team - */ - hostTeamInviteURL(teamId) { - return `${this.hosts}challenge_host_teams/${teamId}/invite`; - } - - /** - * Fetch challenge details for a given id - * @param id challenge id - */ - challengeDetailsURL(id) { - return `${this.challenges}${this.challenge}${id}/`; - } - - /** - * Challenge stars for a given challenge id - * @param id challenge id - */ - challengeStarsURL(id) { - return `${this.challenges}${id}/`; - } - - /** - * Challenge participant teams for a given challenge id - * @param id challenge id - */ - challengeParticipantTeamsURL(id) { - return `${this.participants}participant_teams/${this.challenges}${id}/user`; - } - - /** - * Challenge participate url for a given challenge id - * @param id challenge id - * @param team team id - */ - challengeParticipateURL(id, team) { - return `${this.challenges}${this.challenge}${id}/participant_team/${team}`; - } - - /** - * Challenge phase for a given challenge id - * @param id challenge id - */ - challengePhaseURL(id) { - return `${this.challenges}${this.challenge}${id}/challenge_phase`; - } - - /** - * Challenge phase details - * @param id challenge id - * @param phaseId challenge phase id - */ - updateChallengePhaseDetailsURL(id, phaseId) { - return `${this.challenges}${this.challenge}${id}/challenge_phase/${phaseId}`; - } - - /** - * Challenge phase split for a given challenge id - * @param id challenge id - */ - challengePhaseSplitURL(id) { - return `${this.challenges}${id}/challenge_phase_split`; - } - - /** - * Challenge Creation - * @param hostTeam host team id - */ - challengeCreateURL(hostTeam) { - return `${this.challenges}${this.challenge}challenge_host_team/${hostTeam}/zip_upload/`; - } - - /** - * Challenge Leaderboard fetch - * @param phaseSplitId phase split id - */ - challengeLeaderboardURL(phaseSplitId, orderByMetric) { - return `${this.jobs}challenge_phase_split/${phaseSplitId}/leaderboard/?page_size=1000&order_by=${orderByMetric}`; - } - - /** - * Challenge Complete Leaderboard fetch for challenge host - * @param phaseSplitId phase split id - */ - challengeCompleteLeaderboardURL(phaseSplitId, orderByMetric) { - return `${this.jobs}phase_split/${phaseSplitId}/public_leaderboard_all_entries/?page_size=1000&order_by=${orderByMetric}`; - } - - /** - * Returns or Updates challenge phase split - * @param phaseSplitId phase split id - */ - particularChallengePhaseSplitUrl(phaseSplitId) { - return `${this.challenges}${this.challenge}create/challenge_phase_split/${phaseSplitId}/`; - } - - /** - * Challenge Submission - * @param challenge challenge id - * @param phase phase id - */ - challengeSubmissionURL(challenge, phase) { - return `${this.jobs}${this.challenge}${challenge}/challenge_phase/${phase}/submission/`; - } - - /** - * Filter challenge submissions in my submissions by participant team name - * @param challenge challenge id - * @param phase phase id - * @param participantTeamName participant team name - */ - challengeSubmissionWithFilterQueryURL(challenge, phase, participantTeamName) { - return `${this.jobs}${this.challenge}${challenge}/challenge_phase/ -${phase}/submission?participant_team__team_name=${participantTeamName}`; - } - - /** - * Get participated team name - * @param challenge challenge id - */ - getParticipatedTeamNameURL(challenge) { - return `${this.challenges}${challenge}/participant_team/team_detail`; - } - - /** - * Get all Challenge Submission - * @param challenge challenge id - * @param phase phase id - */ - allChallengeSubmissionURL(challenge, phase) { - return `${this.challenges}${challenge}/challenge_phase/${phase}/submissions`; - } - - /** - * Filter challenge submissions in view all submissions by participant team name - * @param challenge challenge id - * @param phase phase id - * @param participantTeamName participant team name - */ - allChallengeSubmissionWithFilterQueryUrl(challenge, phase, participantTeamName) { - return `${this.challenges}${challenge}/challenge_phase/${phase}/submissions?participant_team__team_name=${participantTeamName}`; - } - - /** - * Challenge Submission Download - * @param challenge challenge id - * @param phase phase id - */ - challengeSubmissionDownloadURL(challenge, phase, fileSelected) { - return `${this.challenges}${challenge}/phase/${phase}/download_all_submissions/${fileSelected}/`; - } - - /** - * Challenge Submission Counts of the participant Team - * @param challenge challenge id - * @param phase phase id - */ - challengeSubmissionCountURL(challenge, phase) { - return `${this.analytics}${this.challenge}${challenge}/challenge_phase/${phase}/count`; - } - - /** - * Challenge Submission Visibility - * @param challenge challenge id - * @param phase phase id - * @param submission submission id - */ - challengeSubmissionUpdateURL(challenge, phase, submission) { - return `${this.challengeSubmissionURL(challenge, phase)}${submission}`; - } - - /** - * Disable Challenge Submission - * @param submission submission id - */ - disableChallengeSubmissionURL(submission) { - return `${this.jobs}submission/${submission}`; - } - - /** - * Challenge Submissions Remaining - * @param challenge challenge id - */ - challengeSubmissionsRemainingURL(challenge) { - return `${this.jobs}${challenge}/remaining_submissions`; - } - - /** - * Edit challenge details - * @param hostTeam challenge host team id - * @param challenge challenge id - */ - editChallengeDetailsURL(hostTeam, challenge) { - return `${this.challenges}challenge_host_team/${hostTeam}/${this.challenge}${challenge}`; - } - - getOrUpdateLeaderboardSchemaURL(leaderboard) { - return `${this.challenges}${this.challenge}create/leaderboard/${leaderboard}/`; - } - - /** - * Delete challenge - * @param challenge challenge id - */ - deleteChallengeURL(challenge) { - return `${this.challenges}${this.challenge}${challenge}/disable`; - } - - /** - * Re-run submission - * @param submission submission id - */ - reRunSubmissionURL(submission) { - return `${this.jobs}submissions/${submission}/re-run/`; - } - - /** - * Team count analytics - * @param challengeId challenge id - */ - teamCountAnalyticsURL(challengeId) { - return `${this.analytics}challenge/${challengeId}/team/count`; - } - - /** - * Challenge phase analytics - * @param challengeId challenge id - * @param phaseId phase id - */ - challengePhaseAnalyticsURL(challengeId, phaseId) { - return `${this.analytics}challenge/${challengeId}/challenge_phase/${phaseId}/analytics`; - } - - /** - * Challenge phase last submission analytics - * @param challengeId challenge id - * @param phaseId phase id - */ - lastSubmissionAnalyticsURL(challengeId, phaseId) { - return `${this.analytics}challenge/${challengeId}/challenge_phase/${phaseId}/last_submission_datetime_analysis/`; - } - - /** - * Challenge phase last submission analytics - * @param challengeId challenge id - * @param phaseId phase id - */ - downloadParticipantsAnalyticsURL(challengeId) { - return `${this.analytics}challenges/${challengeId}/download_all_participants/`; - } - - /** - * Manage worker - * @param challengeId challenge id - * @param action worker action - */ - manageWorkerURL(challengeId, action) { - return `${this.challenges}${challengeId}/manage_worker/${action}/`; - } - - /** - * Manage worker - * @param challengeId challenge id - */ - getLogsURL(challengeId) { - return `${this.challenges}${challengeId}/get_worker_logs/`; - } - - /** - * Refresh auth token - */ - refreshAuthTokenURL() { - return `accounts/user/refresh_auth_token`; - } - - /** - * Get auth token - */ - getAuthTokenURL() { - return `accounts/user/get_auth_token`; - } - - /** - * Cancel submission - * @param challengeId challenge id - * @param submissionId submission id - */ - updateSubmissionMetaURL(challengeId, submissionId) { - return `${this.jobs}challenges/${challengeId}/submissions/${submissionId}/update_submission_meta/`; - } -} diff --git a/frontend_v2/src/app/services/global.service.spec.ts b/frontend_v2/src/app/services/global.service.spec.ts deleted file mode 100644 index ee6c1ce53c..0000000000 --- a/frontend_v2/src/app/services/global.service.spec.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; - -import { GlobalService } from './global.service'; - -describe('GlobalService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [GlobalService], - }); - }); - - it('should be created', inject([GlobalService], (service: GlobalService) => { - expect(service).toBeTruthy(); - })); -}); diff --git a/frontend_v2/src/app/services/global.service.ts b/frontend_v2/src/app/services/global.service.ts deleted file mode 100644 index f5c52f768c..0000000000 --- a/frontend_v2/src/app/services/global.service.ts +++ /dev/null @@ -1,594 +0,0 @@ -import { Injectable, Output, EventEmitter } from '@angular/core'; -import { BehaviorSubject } from 'rxjs'; - -@Injectable() -export class GlobalService { - scrolledStateDefault = false; - toastErrorCodes = [400, 500]; - authStorageKey = 'authtoken'; - redirectStorageKey = 'redirect'; - isLoading = false; - private isLoadingSource = new BehaviorSubject(false); - currentisLoading = this.isLoadingSource.asObservable(); - isConfirming = false; - confirmDefault = { - isConfirming: false, - confirm: 'Yes', - deny: 'Cancel', - title: 'Are you sure?', - confirmCallback: null, - denyCallback: null, - }; - - /** - * Reusable modal default settings - */ - isModalVisible = false; - modalDefault = { - isModalVisible: false, - confirm: 'Confirm', - deny: 'Cancel', - title: 'Update Fields', - confirmCallback: null, - denyCallback: null, - form: [], - }; - - /** - * Edit challenge phase modal default settings - */ - isEditPhaseModalVisible = false; - editPhaseModalDefault = { - isEditPhaseModalVisible: false, - confirm: 'Submit', - deny: 'Cancel', - title: 'Edit Challenge Phase Details', - confirmCallback: null, - denyCallback: null, - }; - - /** - * Title loader - */ - loaderTitle = ''; - - /** - * Terms and conditions modal default settings - */ - isTermsAndConditionsModalVisible = false; - termsAndConditionsModalDefault = { - isTermsAndConditionsModalVisible: false, - confirm: 'Submit', - deny: 'Cancel', - title: 'Terms and Conditions', - confirmCallback: null, - denyCallback: null, - }; - - private scrolledStateSource = new BehaviorSubject(this.scrolledStateDefault); - currentScrolledState = this.scrolledStateSource.asObservable(); - private confirmSource = new BehaviorSubject(this.confirmDefault); - currentConfirmParams = this.confirmSource.asObservable(); - private modalSource = new BehaviorSubject(this.modalDefault); - currentModalParams = this.modalSource.asObservable(); - private editPhasemodalSource = new BehaviorSubject(this.editPhaseModalDefault); - editPhaseModalParams = this.editPhasemodalSource.asObservable(); - private termsAndConditionsSource = new BehaviorSubject(this.termsAndConditionsModalDefault); - termsAndConditionsModalParams = this.termsAndConditionsSource.asObservable(); - private tabHighlight = new BehaviorSubject(" "); - nameTabHighlight = this.tabHighlight.asObservable(); - - @Output() toast: EventEmitter<Object> = new EventEmitter(); - @Output() loading: EventEmitter<boolean> = new EventEmitter(); - @Output() logout: EventEmitter<boolean> = new EventEmitter(); - @Output() scrolltop: EventEmitter<Object> = new EventEmitter(); - - /** - * constructor - */ - constructor() {} - - /** - * Update Scrolled State. - * @param s New scrolled state. - */ - scrolledStateChange(s) { - this.scrolledStateSource.next(s); - } - - /** - * Store data in localStorage - * @param key Key for storing - * @param value Value for storing - */ - storeData(key, value) { - localStorage.setItem(key, JSON.stringify(value)); - } - - /** - * Get data from localStorage - * @param key fetch this key from storage. - */ - getData(key) { - if (localStorage.getItem(key) === null || localStorage.getItem(key) === 'undefined') { - localStorage.removeItem(key); - return false; - } else { - return JSON.parse(localStorage.getItem(key)); - } - } - - /** - * Delete key from localStorage - * @param key Delete this key from storage - */ - deleteData(key) { - localStorage.removeItem(key); - } - - /** - * Clear entire storage - */ - resetStorage() { - localStorage.clear(); - } - - /** - * Fetch Auth Token - */ - getAuthToken() { - return this.getData(this.authStorageKey); - } - - /** - * Display Toast component - * @param type Type of toast- success/error/info - * @param message Message to be displayed - * @param duration Duration in seconds - */ - showToast(type, message, duration = 5) { - const TEMP = { - type: type, - message: message, - duration: duration, - }; - this.toast.emit(TEMP); - } - - /** - * Toggle Loading component - * @param loading show or hide loading component - */ - toggleLoading(loading) { - if (loading !== this.isLoading) { - this.isLoading = loading; - this.isLoadingSource.next(loading); - } - } - - /** - * Display confirm component - * @param params parameters for configuring confirm component (see markdown docs) - */ - showConfirm(params) { - if (!this.isConfirming) { - this.isConfirming = true; - const TEMP = { isConfirming: true }; - this.confirmSource.next(Object.assign({}, params, TEMP)); - } - } - - /** - * Hide confirm component - */ - hideConfirm() { - if (this.isConfirming) { - this.isConfirming = false; - const TEMP = { isConfirming: false }; - this.confirmSource.next(Object.assign({}, this.modalDefault, TEMP)); - } - } - - /** - * Display Reusable Modal Component - * @param params parameters for configuring reusable modal component (see markdown docs) - */ - showModal(params) { - if (!this.isModalVisible) { - this.isModalVisible = true; - const TEMP = { isModalVisible: true }; - this.modalSource.next(Object.assign({}, params, TEMP)); - } - } - - /** - * Display Edit Challenge Phase Modal Component - * @param params parameters for configuring edit challenge phase component (see markdown docs) - */ - showEditPhaseModal(params) { - if (!this.isEditPhaseModalVisible) { - this.isEditPhaseModalVisible = true; - const TEMP = { isEditPhaseModalVisible: true }; - this.editPhasemodalSource.next(Object.assign({}, params, TEMP)); - } - } - - /** - * Display terms and conditions Modal Component - * @param params parameters for configuring terms and conditions component (see markdown docs) - */ - showTermsAndConditionsModal(params) { - if (!this.isTermsAndConditionsModalVisible) { - this.isTermsAndConditionsModalVisible = true; - const TEMP = { isTermsAndConditionsModalVisible: true }; - this.termsAndConditionsSource.next(Object.assign({}, params, TEMP)); - } - } - - /** - * Hide Reusable Modal Component - */ - hideModal() { - if (this.isModalVisible) { - this.isModalVisible = false; - const TEMP = { isModalVisible: false }; - this.modalSource.next(Object.assign({}, this.modalDefault, TEMP)); - } - } - - /** - * Hide Edit Challenge Phase Modal Component - */ - hideEditPhaseModal() { - if (this.isEditPhaseModalVisible) { - this.isEditPhaseModalVisible = false; - const TEMP = { isEditPhaseModalVisible: false }; - this.editPhasemodalSource.next(Object.assign({}, this.editPhaseModalDefault, TEMP)); - } - } - - /** - * Hide terms and conditions Modal Component - */ - hideTermsAndConditionsModal() { - if (this.isTermsAndConditionsModalVisible) { - this.isTermsAndConditionsModalVisible = false; - const TEMP = { isTermsAndConditionsModalVisible: false }; - this.termsAndConditionsSource.next(Object.assign({}, this.termsAndConditionsModalDefault, TEMP)); - } - } - - /** - * Update the status for highlighting the active tab - * @param activeTab new updated name of tab - */ - changeTabActiveStatus(activeTab: string) { - this.tabHighlight.next(activeTab); - } - - /** - * This triggers the logout function in auth service (to avoid a cyclic dependency). - */ - triggerLogout() { - this.logout.emit(); - } - - /** - * Scroll to top of the page - */ - scrollToTop() { - this.scrolltop.emit(); - } - - /** - * Form Validation before submitting. - * @param components Expects a QueryList of form components. - * @param callback Form submission callback if fields pass validation. - */ - formValidate(components, callback, self) { - let requiredFieldMissing = false; - components.map((item) => { - if (item.isRequired && !item.isDirty) { - item.isDirty = true; - } - if (item.isRequired && !item.isValid) { - requiredFieldMissing = true; - } - }); - if (!requiredFieldMissing) { - callback(self); - } - } - - /** - * Get Form field values in the form of JSON - * @param components form components - * @returns JSON of form item values - */ - formFields(components) { - const TEMP = {}; - components.map((item) => { - if (item.type === 'file' && item.fileSelected != null) { - TEMP[item.label] = item.fileSelected; - } - if (item.type !== 'file') { - if (item.type === 'datetime') { - const date = new Date(item.value); - TEMP[item.label.toLowerCase()] = date.toISOString(); - } else { - TEMP[item.label.toLowerCase()] = item.value; - } - } - }); - return TEMP; - } - - /** - * Get Form field value for a label - * @param components form components - * @param label label to fetch - * @returns value of form item - */ - formValueForLabel(components, label) { - let value = ''; - let valueFound = false; - components.map((item) => { - if (item.label.toLowerCase() === label.toLowerCase()) { - value = item.value; - valueFound = true; - } - }); - if (!valueFound) { - console.error('Form value not found for ' + label); - return null; - } else { - return value; - } - } - - /** - * Set Form field value for a label - * @param components form components - * @param label label to fetch - * @param value new value to be set - * @returns value of form item - */ - setFormValueForLabel(components, label, value) { - let valueFound = false; - components.map((item) => { - if (item.label.toLowerCase() === label.toLowerCase()) { - if (item.type === 'file') { - item.fileValue = value; - item.placeholder = ''; - } else { - item.value = value; - } - valueFound = true; - } - }); - if (!valueFound) { - console.error('Form value not found for ' + label); - } - } - - /** - * Set Form item for a label - * @param components form components - * @param label label to fetch - * @returns form item - */ - formItemForLabel(components, label) { - let value: any; - let valueFound = false; - components.map((item) => { - if (item.label.toLowerCase() === label.toLowerCase()) { - value = item; - valueFound = true; - } - }); - if (!valueFound) { - console.error('Form value not found for ' + label); - return null; - } else { - return value; - } - } - - /** - * Check if token is still valid - * @param err error object - * @param toast show/hide toast flag - */ - checkTokenValidity(err, toast = true) { - if (err.error !== null && typeof err.error === 'object' && err.error['detail']) { - if ( - err.error['detail'].indexOf('Invalid token') !== -1 || - err.error['detail'].indexOf('Token has expired') !== -1 - ) { - this.triggerLogout(); - this.showToast('error', 'Token Invalid! Please Login again.', 5); - } - } else if (toast) { - this.showToast('error', 'Something went wrong <' + err.status + '> ', 5); - } - } - - /** - * Get Form field value for a label - * @param components form components - * @param label label to fetch - * @returns value of form item - */ - handleFormError(form, err, toast = true) { - const ERR = err.error; - if (this.toastErrorCodes.indexOf(err.status) > -1 && ERR !== null && typeof ERR === 'object') { - console.error(err); - for (const KEY in ERR) { - if (KEY === 'non_field_errors') { - this.showToast('error', ERR[KEY][0], 5); - } else { - const FORM_ITEM = this.formItemForLabel(form, KEY); - if (FORM_ITEM) { - FORM_ITEM.isValid = false; - FORM_ITEM.message = ERR[KEY][0]; - } - } - } - } else { - this.handleApiError(err, toast); - } - } - - /** - * Handle error from an API response - * @param err error object - * @param toast toast show flag - */ - handleApiError(err, toast = true) { - console.error(err); - if (err.status === 401) { - this.checkTokenValidity(err, toast); - } else if (err.status === 403 && toast) { - this.showToast('error', err.error['error'], 5); - } else if (err.status === 404 && toast) { - this.showToast('error', err.error['detail'], 5); - } else if (err.status === 406 && toast) { - this.showToast('error', err.error['error'], 5); - } else if (toast) { - this.showToast('error', 'Something went wrong <' + err.status + '> ', 5); - } - } - - /** - * Get date string in 12 hour format from date object - * @param date date object - * @returns 12 hour date string - */ - formatDate12Hour(date) { - let hours = date.getHours(); - let minutes = date.getMinutes(); - const AM_PM = hours >= 12 ? 'PM' : 'AM'; - hours = hours % 12; - hours = hours ? hours : 12; // the hour '0' should be '12' - minutes = minutes < 10 ? '0' + minutes : minutes; - const STR_TIME = date.toDateString() + ' ' + hours + ':' + minutes + ' ' + AM_PM; - return STR_TIME; - } - - /** - * Get difference between two date objects - * @param d1 date object - * @param d2 date object - * @returns difference in days - */ - getDateDifference(d1, d2) { - const T2 = d2.getTime(); - const T1 = d1.getTime(); - if (T2 >= T1) { - return (T2 - T1) / (24 * 3600 * 1000); - } else { - return (T1 - T2) / (24 * 3600 * 1000); - } - } - - /** - * Get Date difference string in seconds/minutes/hours/days/weeks/years - * @param d1 date object - * @param d2 date object - * @returns date difference string - */ - getDateDifferenceString(d1, d2) { - const DIFF_DAYS = this.getDateDifference(d1, d2); - if (DIFF_DAYS < 1) { - const DIFF_HOURS = DIFF_DAYS * 24; - if (DIFF_HOURS < 1) { - const DIFF_MINUTES = DIFF_HOURS * 60; - if (DIFF_MINUTES < 1) { - const DIFF_SECONDS = DIFF_MINUTES * 60; - return Math.floor(DIFF_SECONDS) + ' seconds'; - } else { - return Math.floor(DIFF_MINUTES) + ' minute(s)'; - } - } else { - return Math.floor(DIFF_HOURS) + ' hour(s)'; - } - } else { - if (DIFF_DAYS > 100) { - const DIFF_WEEKS = DIFF_DAYS / 7; - if (DIFF_WEEKS > 104) { - const DIFF_YEARS = DIFF_WEEKS / 52; - return Math.floor(DIFF_YEARS) + ' year(s)'; - } else { - return Math.floor(DIFF_WEEKS) + ' week(s)'; - } - } else { - return Math.floor(DIFF_DAYS) + ' day(s)'; - } - } - } - - /** - * Form input email validator - * @param email email string - * @returns boolean indicating valid/invalid email - */ - validateEmail(email) { - const RE = new RegExp( - [ - '^(([^<>()[\\]\\.,;:\\s@"]+(\\.[^<>()\\[\\]\\.,;:\\s@"]+)*)', - '|(".+"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.', - '[0-9]{1,3}])|(([a-zA-Z\\-0-9]+\\.)+', - '[a-zA-Z]{2,}))$', - ].join('') - ); - return RE.test(email); - } - - /** - * Form input text validator - * @param text text string - * @returns boolean indicating valid/invalid text - */ - validateText(text) { - if (text.length >= 2) { - return true; - } - return false; - } - - /** - * Form input number validator - * @param integer number integer - * @returns boolean indicating valid/invalid text - */ - validateInteger(integer) { - return integer > 0; - } - - /** - * Form input password validator - * @param password password string - * @returns boolean indicating valid/invalid password - */ - validatePassword(password) { - if (password.length >= 8) { - return true; - } - return false; - } - - /** - * Start loader message - * @param msg string - */ - startLoader(msg) { - this.loaderTitle = msg; - } - - /** - * Stop loader msg - */ - stopLoader() { - this.loaderTitle = ''; - } -} diff --git a/frontend_v2/src/app/services/mock.window.service.ts b/frontend_v2/src/app/services/mock.window.service.ts deleted file mode 100644 index 1ce01a406c..0000000000 --- a/frontend_v2/src/app/services/mock.window.service.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { WindowService } from './window.service'; -import { Injectable, Inject } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; -import { NGXLogger } from 'ngx-logger'; - -@Injectable() -export class MockWindowService extends WindowService { - constructor(@Inject(DOCUMENT) document: Document, private logger: NGXLogger) { - super(document); - } - /** - * Mocked Load Javascript function. - * @param url Name of script. - * @param implementationCode callback function. - * @param location where to append the file - * @param env `This` variable of the environment - */ - loadJS(url, implementationCode, location, env) { - this.logger.info('LoadJS mocked..'); - } -} diff --git a/frontend_v2/src/app/services/window.service.spec.ts b/frontend_v2/src/app/services/window.service.spec.ts deleted file mode 100644 index fc44dee47a..0000000000 --- a/frontend_v2/src/app/services/window.service.spec.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { TestBed, inject } from '@angular/core/testing'; - -import { WindowService } from './window.service'; - -describe('WindowService', () => { - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [WindowService], - }); - }); - - /** - * Download File function test. - */ - it('should be created', inject([WindowService], (service: WindowService) => { - expect(service).toBeTruthy(); - const NW = service.nativeWindow(); - })); - - /** - * Download File function test. - */ - it('Download File Test', inject([WindowService], (service: WindowService) => { - expect(service).toBeTruthy(); - const SELF = this; - SELF.test = () => {}; - const SPY = spyOn(SELF, 'test'); - service.downloadFile('', 'data_test.csv', { type: 'text/csv' }, SPY); - expect(SPY).toHaveBeenCalled(); - })); - - /** - * loadJS function test. - */ - it('script file should be loaded', inject([WindowService], (service: WindowService) => { - expect(service).toBeTruthy(); - const SELF = this; - SELF.appendChild = () => {}; - const SPY = spyOn(SELF, 'appendChild'); - service.loadJS('', (env) => {}, SELF, null); - expect(SPY).toHaveBeenCalled(); - })); -}); diff --git a/frontend_v2/src/app/services/window.service.ts b/frontend_v2/src/app/services/window.service.ts deleted file mode 100644 index 8ae2e0b798..0000000000 --- a/frontend_v2/src/app/services/window.service.ts +++ /dev/null @@ -1,77 +0,0 @@ -import { Injectable, Inject } from '@angular/core'; -import { DOCUMENT } from '@angular/common'; - -/** - * Returns window object - */ -function _window(): any { - return window; -} - -/** - * Window service class - */ -@Injectable() -export class WindowService { - /** - * constructor - * @param document injected document - */ - constructor(@Inject(DOCUMENT) private document: Document) {} - - /** - * object wrapper for the _window function - */ - nativeWindow(): any { - return _window(); - } - - /** - * Load Javascript function. - * @param url Name of script. - * @param implementationCode callback function. - * @param location where to append the file - * @param env `This` variable of the environment - */ - loadJS(url, implementationCode = (param) => {}, location = this.document.body, env = null) { - const SCRIPT_TAG = this.document.createElement('script'); - SCRIPT_TAG.src = url; - - SCRIPT_TAG.onload = () => { - implementationCode(env); - }; - location.appendChild(SCRIPT_TAG); - } - - /** - * Download File function. - * @param data Contents for the file being generated. - * @param filename Name for the file being generated. - * @param params for the file being generated. - * @param callback callback function - */ - downloadFile(data: any, filename = 'data.csv', params = { type: 'text/csv' }, callback = () => {}) { - const BLOB = new Blob([data.body], params); - const URL = window.URL.createObjectURL(BLOB); - const ATAG = this.document.createElement('a'); - ATAG.href = URL; - ATAG.download = filename; - this.document.body.appendChild(ATAG); - ATAG.click(); - this.document.body.removeChild(ATAG); - callback(); - } - - /** - * Copy to clipboard function. - * @param str String to be copied to clipboard. - */ - copyToClipboard(str) { - const el = this.document.createElement('textarea'); - el.value = str; - this.document.body.appendChild(el); - el.select(); - this.document.execCommand('copy'); - this.document.body.removeChild(el); - } -} diff --git a/frontend_v2/src/app/shared/shared.module.ts b/frontend_v2/src/app/shared/shared.module.ts deleted file mode 100644 index 62e0739ff6..0000000000 --- a/frontend_v2/src/app/shared/shared.module.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { RouterModule } from '@angular/router'; -import { FormsModule } from '@angular/forms'; - -// import directive -import { PasswordMismatchValidatorDirective } from '../Directives/password.validator'; -import { EmailValidatorDirective } from '../Directives/email.validator'; -import { LazyImageDirective } from '../Directives/image.lazyload'; - -// import component -import { HeaderStaticComponent } from '../components/nav/header-static/header-static.component'; -import { FooterComponent } from '../components/nav/footer/footer.component'; -import { NotFoundComponent } from '../components/not-found/not-found.component'; - -// import module -import { UtilityModule } from '../components/utility/utility.module'; - -@NgModule({ - declarations: [ - PasswordMismatchValidatorDirective, - EmailValidatorDirective, - LazyImageDirective, - HeaderStaticComponent, - FooterComponent, - NotFoundComponent, - ], - imports: [CommonModule, RouterModule, FormsModule, UtilityModule], - exports: [ - PasswordMismatchValidatorDirective, - EmailValidatorDirective, - LazyImageDirective, - CommonModule, - RouterModule, - FormsModule, - HeaderStaticComponent, - FooterComponent, - UtilityModule, - NotFoundComponent, - ], -}) -export class SharedModule {} diff --git a/frontend_v2/src/assets/.gitkeep b/frontend_v2/src/assets/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frontend_v2/src/assets/fonts/Geometos.ttf b/frontend_v2/src/assets/fonts/Geometos.ttf deleted file mode 100644 index 72a027de3b..0000000000 Binary files a/frontend_v2/src/assets/fonts/Geometos.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/Montserrat-Bold.ttf b/frontend_v2/src/assets/fonts/Montserrat-Bold.ttf deleted file mode 100644 index 8e9a5f3f98..0000000000 Binary files a/frontend_v2/src/assets/fonts/Montserrat-Bold.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/Montserrat-Light.ttf b/frontend_v2/src/assets/fonts/Montserrat-Light.ttf deleted file mode 100644 index e66dc5bf05..0000000000 Binary files a/frontend_v2/src/assets/fonts/Montserrat-Light.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/Montserrat-Medium.ttf b/frontend_v2/src/assets/fonts/Montserrat-Medium.ttf deleted file mode 100644 index 88d70b89c3..0000000000 Binary files a/frontend_v2/src/assets/fonts/Montserrat-Medium.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/Montserrat-Regular.ttf b/frontend_v2/src/assets/fonts/Montserrat-Regular.ttf deleted file mode 100644 index 626355a2c7..0000000000 Binary files a/frontend_v2/src/assets/fonts/Montserrat-Regular.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/Montserrat-SemiBold.ttf b/frontend_v2/src/assets/fonts/Montserrat-SemiBold.ttf deleted file mode 100644 index 615704508b..0000000000 Binary files a/frontend_v2/src/assets/fonts/Montserrat-SemiBold.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Bold.woff b/frontend_v2/src/assets/fonts/OpenSans-Bold.woff deleted file mode 100644 index 2052189760..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Bold.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Bold.woff2 b/frontend_v2/src/assets/fonts/OpenSans-Bold.woff2 deleted file mode 100644 index d633ec4884..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Bold.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff b/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff deleted file mode 100644 index a7ecea73ee..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff2 b/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff2 deleted file mode 100644 index dca07a7ba9..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-BoldItalic.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff b/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff deleted file mode 100644 index a6e4cabe8d..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff2 b/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff2 deleted file mode 100644 index a8e5ded372..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-ExtraBold.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff b/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff deleted file mode 100644 index 8f432b2542..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff2 b/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff2 deleted file mode 100644 index 17622a7394..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Italic.woff b/frontend_v2/src/assets/fonts/OpenSans-Italic.woff deleted file mode 100644 index 5a321f3986..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Italic.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Italic.woff2 b/frontend_v2/src/assets/fonts/OpenSans-Italic.woff2 deleted file mode 100644 index b280251f0f..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Italic.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Light.woff b/frontend_v2/src/assets/fonts/OpenSans-Light.woff deleted file mode 100644 index 7c8ca099b8..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Light.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Light.woff2 b/frontend_v2/src/assets/fonts/OpenSans-Light.woff2 deleted file mode 100644 index 6b5b0bea94..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Light.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff b/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff deleted file mode 100644 index e4ec37b433..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff2 b/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff2 deleted file mode 100644 index 8a65a227a8..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-LightItalic.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Regular.woff b/frontend_v2/src/assets/fonts/OpenSans-Regular.woff deleted file mode 100644 index 2b8bf73ab2..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Regular.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Regular.woff2 b/frontend_v2/src/assets/fonts/OpenSans-Regular.woff2 deleted file mode 100644 index 9908e32378..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Regular.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff b/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff deleted file mode 100644 index fb3b7bbfbd..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff2 b/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff2 deleted file mode 100644 index 2beee9c106..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-Semibold.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff b/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff deleted file mode 100644 index 58bfb34f1f..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff2 b/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff2 deleted file mode 100644 index c1b1ea6bdc..0000000000 Binary files a/frontend_v2/src/assets/fonts/OpenSans-SemiboldItalic.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.eot b/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953..0000000000 Binary files a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.svg b/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.svg deleted file mode 100644 index 855c845e53..0000000000 --- a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > -<svg> -<metadata> -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. -</metadata> -<defs> -<font id="FontAwesome" horiz-adv-x="1536" > - <font-face - font-family="FontAwesome" - font-weight="400" - font-stretch="normal" - units-per-em="1792" - panose-1="0 0 0 0 0 0 0 0 0 0" - ascent="1536" - descent="-256" - bbox="-1.02083 -256.962 2304.6 1537.02" - underline-thickness="0" - underline-position="0" - unicode-range="U+0020-F500" - /> -<missing-glyph horiz-adv-x="896" -d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" /> - <glyph glyph-name=".notdef" horiz-adv-x="896" -d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" /> - <glyph glyph-name=".null" horiz-adv-x="0" - /> - <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" - /> - <glyph glyph-name="space" unicode=" " horiz-adv-x="448" - /> - <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="1792" - /> - <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1792" - /> - <glyph glyph-name="registered" unicode="®" horiz-adv-x="1792" - /> - <glyph glyph-name="acute" unicode="´" horiz-adv-x="1792" - /> - <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1792" - /> - <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1792" - /> - <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1792" - /> - <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1792" - /> - <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1792" - /> - <glyph glyph-name="glass" unicode="" horiz-adv-x="1792" -d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" /> - <glyph glyph-name="music" unicode="" -d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 -t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" /> - <glyph glyph-name="search" unicode="" horiz-adv-x="1664" -d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 -t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> - <glyph glyph-name="envelope" unicode="" horiz-adv-x="1792" -d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 -t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z -M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="heart" unicode="" horiz-adv-x="1792" -d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 -q-18 -18 -44 -18z" /> - <glyph glyph-name="star" unicode="" horiz-adv-x="1664" -d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 -l502 -73q56 -9 56 -46z" /> - <glyph glyph-name="star_empty" unicode="" horiz-adv-x="1664" -d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 -l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" /> - <glyph glyph-name="user" unicode="" horiz-adv-x="1280" -d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5 -t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="film" unicode="" horiz-adv-x="1920" -d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 -q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 -t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 -q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 -t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="th_large" unicode="" horiz-adv-x="1664" -d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 -h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> - <glyph glyph-name="th" unicode="" horiz-adv-x="1792" -d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 -h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 -q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" /> - <glyph glyph-name="th_list" unicode="" horiz-adv-x="1792" -d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 -h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" /> - <glyph glyph-name="ok" unicode="" horiz-adv-x="1792" -d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" /> - <glyph glyph-name="remove" unicode="" horiz-adv-x="1408" -d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 -t-28 -68l-294 -294l294 -294q28 -28 28 -68z" /> - <glyph glyph-name="zoom_in" unicode="" horiz-adv-x="1664" -d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 -q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 -t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> - <glyph glyph-name="zoom_out" unicode="" horiz-adv-x="1664" -d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z -M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z -" /> - <glyph glyph-name="off" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 -t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" /> - <glyph glyph-name="signal" unicode="" horiz-adv-x="1792" -d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 -v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" /> - <glyph glyph-name="cog" unicode="" -d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 -q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 -l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 -q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" /> - <glyph glyph-name="trash" unicode="" horiz-adv-x="1408" -d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 -q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 -q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> - <glyph glyph-name="home" unicode="" horiz-adv-x="1664" -d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 -l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" /> - <glyph glyph-name="file_alt" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -" /> - <glyph glyph-name="time" unicode="" -d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="road" unicode="" horiz-adv-x="1920" -d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 -q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" /> - <glyph glyph-name="download_alt" unicode="" horiz-adv-x="1664" -d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 -q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" /> - <glyph glyph-name="download" unicode="" -d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 -t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="upload" unicode="" -d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 -t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="inbox" unicode="" -d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 -q25 -61 25 -123z" /> - <glyph glyph-name="play_circle" unicode="" -d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="repeat" unicode="" -d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9 -l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" /> - <glyph glyph-name="refresh" unicode="" -d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 -q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 -q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="list_alt" unicode="" horiz-adv-x="1792" -d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z -M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 -t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 -t47 -113z" /> - <glyph glyph-name="lock" unicode="" horiz-adv-x="1152" -d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" /> - <glyph glyph-name="flag" unicode="" horiz-adv-x="1792" -d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 -t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" /> - <glyph glyph-name="headphones" unicode="" horiz-adv-x="1664" -d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 -t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 -t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" /> - <glyph glyph-name="volume_off" unicode="" horiz-adv-x="768" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="volume_down" unicode="" horiz-adv-x="1152" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36 -t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" /> - <glyph glyph-name="volume_up" unicode="" horiz-adv-x="1664" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36 -t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 -t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 -t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" /> - <glyph glyph-name="qrcode" unicode="" horiz-adv-x="1408" -d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z -M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" /> - <glyph glyph-name="barcode" unicode="" horiz-adv-x="1792" -d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z -M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" /> - <glyph glyph-name="tag" unicode="" -d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 -l715 -714q37 -39 37 -91z" /> - <glyph glyph-name="tags" unicode="" horiz-adv-x="1920" -d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 -l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" /> - <glyph glyph-name="book" unicode="" horiz-adv-x="1664" -d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 -q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 -q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 -t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" /> - <glyph glyph-name="bookmark" unicode="" horiz-adv-x="1280" -d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> - <glyph glyph-name="print" unicode="" horiz-adv-x="1664" -d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 -v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" /> - <glyph glyph-name="camera" unicode="" horiz-adv-x="1920" -d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 -q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="font" unicode="" horiz-adv-x="1664" -d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 -q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 -q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" /> - <glyph glyph-name="bold" unicode="" horiz-adv-x="1408" -d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 -q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 -t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 -t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" /> - <glyph glyph-name="italic" unicode="" horiz-adv-x="1024" -d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 -q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" /> - <glyph glyph-name="text_height" unicode="" horiz-adv-x="1792" -d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 -t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 -q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 -q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" /> - <glyph glyph-name="text_width" unicode="" -d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 -t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 -q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 -t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 -t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" /> - <glyph glyph-name="align_left" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 -t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_center" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 -h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_right" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 -t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_justify" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 -t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> - <glyph glyph-name="list" unicode="" horiz-adv-x="1792" -d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 -t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 -q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 -t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 -q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="indent_left" unicode="" horiz-adv-x="1792" -d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 -t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 -q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="indent_right" unicode="" horiz-adv-x="1792" -d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 -t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 -q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="facetime_video" unicode="" horiz-adv-x="1792" -d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 -q39 -17 39 -59z" /> - <glyph glyph-name="picture" unicode="" horiz-adv-x="1920" -d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 -q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="pencil" unicode="" -d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 -q53 0 91 -38l235 -234q37 -39 37 -91z" /> - <glyph glyph-name="map_marker" unicode="" horiz-adv-x="1024" -d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" /> - <glyph glyph-name="adjust" unicode="" -d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="tint" unicode="" horiz-adv-x="1024" -d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 -q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" /> - <glyph glyph-name="edit" unicode="" horiz-adv-x="1792" -d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 -q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 -l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" /> - <glyph glyph-name="share" unicode="" horiz-adv-x="1664" -d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 -q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 -t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="check" unicode="" horiz-adv-x="1664" -d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 -q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 -q24 -24 24 -57t-24 -57z" /> - <glyph glyph-name="move" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 -t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="step_backward" unicode="" horiz-adv-x="1024" -d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" /> - <glyph glyph-name="fast_backward" unicode="" horiz-adv-x="1792" -d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710 -q19 19 32 13t13 -32v-710q4 10 13 19z" /> - <glyph glyph-name="backward" unicode="" horiz-adv-x="1664" -d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" /> - <glyph glyph-name="play" unicode="" horiz-adv-x="1408" -d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" /> - <glyph glyph-name="pause" unicode="" -d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" /> - <glyph glyph-name="stop" unicode="" -d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="forward" unicode="" horiz-adv-x="1664" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" /> - <glyph glyph-name="fast_forward" unicode="" horiz-adv-x="1792" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710 -q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" /> - <glyph glyph-name="step_forward" unicode="" horiz-adv-x="1024" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" /> - <glyph glyph-name="eject" unicode="" horiz-adv-x="1538" -d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" /> - <glyph glyph-name="chevron_left" unicode="" horiz-adv-x="1280" -d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="chevron_right" unicode="" horiz-adv-x="1280" -d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="plus_sign" unicode="" -d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 -t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="minus_sign" unicode="" -d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="remove_sign" unicode="" -d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 -q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ok_sign" unicode="" -d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="question_sign" unicode="" -d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 -q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="info_sign" unicode="" -d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 -t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="screenshot" unicode="" -d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 -q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 -q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" /> - <glyph glyph-name="remove_circle" unicode="" -d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 -l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 -t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ok_circle" unicode="" -d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 -t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ban_circle" unicode="" -d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 -t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" /> - <glyph glyph-name="arrow_left" unicode="" -d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 -t32.5 -90.5z" /> - <glyph glyph-name="arrow_right" unicode="" -d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" /> - <glyph glyph-name="arrow_up" unicode="" horiz-adv-x="1664" -d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 -q37 -39 37 -91z" /> - <glyph glyph-name="arrow_down" unicode="" horiz-adv-x="1664" -d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" /> - <glyph glyph-name="share_alt" unicode="" horiz-adv-x="1792" -d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 -t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" /> - <glyph glyph-name="resize_full" unicode="" -d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 -q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" /> - <glyph glyph-name="resize_small" unicode="" -d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 -t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" /> - <glyph glyph-name="plus" unicode="" horiz-adv-x="1408" -d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" /> - <glyph glyph-name="minus" unicode="" horiz-adv-x="1408" -d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" /> - <glyph glyph-name="asterisk" unicode="" horiz-adv-x="1664" -d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 -q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" /> - <glyph glyph-name="exclamation_sign" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 -q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" /> - <glyph glyph-name="gift" unicode="" -d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 -q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 -t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" /> - <glyph glyph-name="leaf" unicode="" horiz-adv-x="1792" -d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 -q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 -t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" /> - <glyph glyph-name="fire" unicode="" horiz-adv-x="1408" -d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 -q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" /> - <glyph glyph-name="eye_open" unicode="" horiz-adv-x="1792" -d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 -t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" /> - <glyph glyph-name="eye_close" unicode="" horiz-adv-x="1792" -d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 -q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 -q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z -" /> - <glyph glyph-name="warning_sign" unicode="" horiz-adv-x="1792" -d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 -q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" /> - <glyph glyph-name="plane" unicode="" horiz-adv-x="1408" -d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 -q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" /> - <glyph glyph-name="calendar" unicode="" horiz-adv-x="1664" -d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z -M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 -q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 -h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="random" unicode="" horiz-adv-x="1792" -d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 -t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 -v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 -t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> - <glyph glyph-name="comment" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 -q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="magnet" unicode="" -d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 -q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" /> - <glyph glyph-name="chevron_up" unicode="" horiz-adv-x="1792" -d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" /> - <glyph glyph-name="chevron_down" unicode="" horiz-adv-x="1792" -d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" /> - <glyph glyph-name="retweet" unicode="" horiz-adv-x="1920" -d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21 -zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z -" /> - <glyph glyph-name="shopping_cart" unicode="" horiz-adv-x="1664" -d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 -t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="folder_close" unicode="" horiz-adv-x="1664" -d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> - <glyph glyph-name="folder_open" unicode="" horiz-adv-x="1920" -d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 -t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" /> - <glyph glyph-name="resize_vertical" unicode="" horiz-adv-x="768" -d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="resize_horizontal" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="bar_chart" unicode="" horiz-adv-x="2048" -d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" /> - <glyph glyph-name="twitter_sign" unicode="" -d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 -q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 -t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="facebook_sign" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960z" /> - <glyph glyph-name="camera_retro" unicode="" horiz-adv-x="1792" -d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 -t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 -q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="key" unicode="" horiz-adv-x="1792" -d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 -l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 -t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" /> - <glyph glyph-name="cogs" unicode="" horiz-adv-x="1920" -d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 -l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 -l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 -q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 -t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 -q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 -q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" /> - <glyph glyph-name="comments" unicode="" horiz-adv-x="1792" -d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 -q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 -q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" /> - <glyph glyph-name="thumbs_up_alt" unicode="" -d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 -t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 -q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 -q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" /> - <glyph glyph-name="thumbs_down_alt" unicode="" -d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 -t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z -M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 -h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" /> - <glyph glyph-name="star_half" unicode="" horiz-adv-x="896" -d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" /> - <glyph glyph-name="heart_empty" unicode="" horiz-adv-x="1792" -d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 -q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 -q224 0 351 -124t127 -344z" /> - <glyph glyph-name="signout" unicode="" horiz-adv-x="1664" -d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 -q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" /> - <glyph glyph-name="linkedin_sign" unicode="" -d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 -q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="pushpin" unicode="" horiz-adv-x="1152" -d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 -t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" /> - <glyph glyph-name="external_link" unicode="" horiz-adv-x="1792" -d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 -q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" /> - <glyph glyph-name="signin" unicode="" -d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 -q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="trophy" unicode="" horiz-adv-x="1664" -d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 -t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 -q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" /> - <glyph glyph-name="github_sign" unicode="" -d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4 -q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4 -t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16 -q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="upload_alt" unicode="" horiz-adv-x="1664" -d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 -t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" /> - <glyph glyph-name="lemon" unicode="" -d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 -q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 -q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 -q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" /> - <glyph glyph-name="phone" unicode="" horiz-adv-x="1408" -d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186 -q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14 -t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" /> - <glyph glyph-name="check_empty" unicode="" horiz-adv-x="1408" -d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 -q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="bookmark_empty" unicode="" horiz-adv-x="1280" -d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 -q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> - <glyph glyph-name="phone_sign" unicode="" -d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5 -t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5 -t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z -" /> - <glyph glyph-name="twitter" unicode="" horiz-adv-x="1664" -d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 -q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" /> - <glyph glyph-name="facebook" unicode="" horiz-adv-x="1024" -d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" /> - <glyph glyph-name="github" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24 -q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5 -t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12 -q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z -M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" /> - <glyph glyph-name="unlock" unicode="" horiz-adv-x="1664" -d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 -t316.5 -131.5t131.5 -316.5z" /> - <glyph glyph-name="credit_card" unicode="" horiz-adv-x="1920" -d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 -q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" /> - <glyph glyph-name="rss" unicode="" horiz-adv-x="1408" -d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 -t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 -q187 -186 294 -425.5t120 -501.5z" /> - <glyph glyph-name="hdd" unicode="" -d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 -h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 -l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" /> - <glyph glyph-name="bullhorn" unicode="" horiz-adv-x="1792" -d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 -t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" /> - <glyph glyph-name="bell" unicode="" horiz-adv-x="1792" -d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z -M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 -t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> - <glyph glyph-name="certificate" unicode="" -d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 -l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 -l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" /> - <glyph glyph-name="hand_right" unicode="" horiz-adv-x="1792" -d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 -q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 -q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 -t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" /> - <glyph glyph-name="hand_left" unicode="" horiz-adv-x="1792" -d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5 -t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z -M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67 -q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="hand_up" unicode="" -d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 -q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 -t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 -q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" /> - <glyph glyph-name="hand_down" unicode="" -d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 -t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 -q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 -q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" /> - <glyph glyph-name="circle_arrow_left" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_right" unicode="" -d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_up" unicode="" -d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_down" unicode="" -d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="globe" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 -q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 -q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 -q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 -t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 -q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 -q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 -t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 -t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 -q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 -q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 -q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 -t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 -q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 -q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" /> - <glyph glyph-name="wrench" unicode="" horiz-adv-x="1664" -d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 -t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" /> - <glyph glyph-name="tasks" unicode="" horiz-adv-x="1792" -d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 -t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> - <glyph glyph-name="filter" unicode="" horiz-adv-x="1408" -d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" /> - <glyph glyph-name="briefcase" unicode="" horiz-adv-x="1792" -d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 -t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" /> - <glyph glyph-name="fullscreen" unicode="" -d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 -l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z -" /> - <glyph glyph-name="group" unicode="" horiz-adv-x="1920" -d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 -t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 -t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 -t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" /> - <glyph glyph-name="link" unicode="" horiz-adv-x="1664" -d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 -l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 -t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 -q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" /> - <glyph glyph-name="cloud" unicode="" horiz-adv-x="1920" -d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z -" /> - <glyph glyph-name="beaker" unicode="" horiz-adv-x="1664" -d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" /> - <glyph glyph-name="cut" unicode="" horiz-adv-x="1792" -d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 -q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 -q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 -q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 -q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" /> - <glyph glyph-name="copy" unicode="" horiz-adv-x="1792" -d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 -h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" /> - <glyph glyph-name="paper_clip" unicode="" horiz-adv-x="1408" -d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 -l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 -z" /> - <glyph glyph-name="save" unicode="" -d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 -h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" /> - <glyph glyph-name="sign_blank" unicode="" -d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="reorder" unicode="" -d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 -t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="ul" unicode="" horiz-adv-x="1792" -d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 -t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z -M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="ol" unicode="" horiz-adv-x="1792" -d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 -q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 -t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216 -q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="strikethrough" unicode="" horiz-adv-x="1792" -d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 -l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 -l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" /> - <glyph glyph-name="underline" unicode="" -d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 -q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 -q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 -q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" /> - <glyph glyph-name="table" unicode="" horiz-adv-x="1664" -d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 -v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 -q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 -q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 -z" /> - <glyph glyph-name="magic" unicode="" horiz-adv-x="1664" -d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 -l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" /> - <glyph glyph-name="truck" unicode="" horiz-adv-x="1792" -d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 -t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 -t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" /> - <glyph glyph-name="pinterest" unicode="" -d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 -q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 -q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="pinterest_sign" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 -t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 -t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" /> - <glyph glyph-name="google_plus_sign" unicode="" -d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 -h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="google_plus" unicode="" horiz-adv-x="2304" -d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 -q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" /> - <glyph glyph-name="money" unicode="" horiz-adv-x="1920" -d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 -v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" /> - <glyph glyph-name="caret_down" unicode="" horiz-adv-x="1024" -d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> - <glyph glyph-name="caret_up" unicode="" horiz-adv-x="1024" -d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="caret_left" unicode="" horiz-adv-x="640" -d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="caret_right" unicode="" horiz-adv-x="640" -d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="columns" unicode="" horiz-adv-x="1664" -d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" /> - <glyph glyph-name="sort" unicode="" horiz-adv-x="1024" -d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="sort_down" unicode="" horiz-adv-x="1024" -d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> - <glyph glyph-name="sort_up" unicode="" horiz-adv-x="1024" -d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="envelope_alt" unicode="" horiz-adv-x="1792" -d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 -q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" /> - <glyph glyph-name="linkedin" unicode="" -d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 -q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" /> - <glyph glyph-name="undo" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 -t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" /> - <glyph glyph-name="legal" unicode="" horiz-adv-x="1792" -d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 -t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 -q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 -q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" /> - <glyph glyph-name="dashboard" unicode="" horiz-adv-x="1792" -d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 -t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 -t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 -q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="comment_alt" unicode="" horiz-adv-x="1792" -d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 -q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 -t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="comments_alt" unicode="" horiz-adv-x="1792" -d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 -t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 -t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 -q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" /> - <glyph glyph-name="bolt" unicode="" horiz-adv-x="896" -d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" /> - <glyph glyph-name="sitemap" unicode="" horiz-adv-x="1792" -d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 -q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 -z" /> - <glyph glyph-name="umbrella" unicode="" horiz-adv-x="1664" -d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 -q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 -q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" /> - <glyph glyph-name="paste" unicode="" horiz-adv-x="1792" -d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 -h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" /> - <glyph glyph-name="light_bulb" unicode="" horiz-adv-x="1024" -d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 -q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 -q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 -t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" /> - <glyph glyph-name="exchange" unicode="" horiz-adv-x="1792" -d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 -q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> - <glyph glyph-name="cloud_download" unicode="" horiz-adv-x="1920" -d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 -q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> - <glyph glyph-name="cloud_upload" unicode="" horiz-adv-x="1920" -d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 -q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> - <glyph glyph-name="user_md" unicode="" horiz-adv-x="1408" -d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 -t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 -t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 -t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="stethoscope" unicode="" horiz-adv-x="1408" -d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 -t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 -t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="suitcase" unicode="" horiz-adv-x="1792" -d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 -t66 -158z" /> - <glyph glyph-name="bell_alt" unicode="" horiz-adv-x="1792" -d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 -t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> - <glyph glyph-name="coffee" unicode="" horiz-adv-x="1920" -d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 -t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="food" unicode="" horiz-adv-x="1408" -d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 -t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" /> - <glyph glyph-name="file_text_alt" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 -q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" /> - <glyph glyph-name="building" unicode="" horiz-adv-x="1408" -d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" /> - <glyph glyph-name="hospital" unicode="" horiz-adv-x="1408" -d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 -t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 -v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" /> - <glyph glyph-name="ambulance" unicode="" horiz-adv-x="1920" -d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 -q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="medkit" unicode="" horiz-adv-x="1792" -d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 -q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" /> - <glyph glyph-name="fighter_jet" unicode="" horiz-adv-x="1920" -d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 -q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" /> - <glyph glyph-name="beer" unicode="" horiz-adv-x="1664" -d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" /> - <glyph glyph-name="h_sign" unicode="" -d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="f0fe" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="double_angle_left" unicode="" horiz-adv-x="1024" -d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 -t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_right" unicode="" horiz-adv-x="1024" -d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 -l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_up" unicode="" horiz-adv-x="1152" -d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 -q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_down" unicode="" horiz-adv-x="1152" -d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 -t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="angle_left" unicode="" horiz-adv-x="640" -d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="angle_right" unicode="" horiz-adv-x="640" -d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="angle_up" unicode="" horiz-adv-x="1152" -d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="angle_down" unicode="" horiz-adv-x="1152" -d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="desktop" unicode="" horiz-adv-x="1920" -d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 -t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="laptop" unicode="" horiz-adv-x="1920" -d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z -M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" /> - <glyph glyph-name="tablet" unicode="" horiz-adv-x="1152" -d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 -q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" /> - <glyph glyph-name="mobile_phone" unicode="" horiz-adv-x="768" -d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 -q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> - <glyph glyph-name="circle_blank" unicode="" -d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 -t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="quote_left" unicode="" horiz-adv-x="1664" -d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z -M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" /> - <glyph glyph-name="quote_right" unicode="" horiz-adv-x="1664" -d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 -v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" /> - <glyph glyph-name="spinner" unicode="" horiz-adv-x="1792" -d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 -t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z -M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 -q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" /> - <glyph glyph-name="circle" unicode="" -d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="reply" unicode="" horiz-adv-x="1792" -d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 -l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" /> - <glyph glyph-name="github_alt" unicode="" horiz-adv-x="1664" -d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 -q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 -t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 -q0 -87 -27 -168q136 -160 136 -398z" /> - <glyph glyph-name="folder_close_alt" unicode="" horiz-adv-x="1664" -d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 -q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> - <glyph glyph-name="folder_open_alt" unicode="" horiz-adv-x="1920" -d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 -v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z -" /> - <glyph glyph-name="expand_alt" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="collapse_alt" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="smile" unicode="" -d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 -t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="frown" unicode="" -d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 -t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="meh" unicode="" -d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="gamepad" unicode="" horiz-adv-x="1920" -d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 -t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 -t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" /> - <glyph glyph-name="keyboard" unicode="" horiz-adv-x="1920" -d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 -h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 -h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 -q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 -h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="flag_alt" unicode="" horiz-adv-x="1792" -d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 -h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 -q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> - <glyph glyph-name="flag_checkered" unicode="" horiz-adv-x="1792" -d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 -q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 -q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 -q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> - <glyph glyph-name="terminal" unicode="" horiz-adv-x="1664" -d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 -t9 -23z" /> - <glyph glyph-name="code" unicode="" horiz-adv-x="1920" -d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 -l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" /> - <glyph glyph-name="reply_all" unicode="" horiz-adv-x="1792" -d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 -q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" /> - <glyph glyph-name="star_half_empty" unicode="" horiz-adv-x="1664" -d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 -l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" /> - <glyph glyph-name="location_arrow" unicode="" horiz-adv-x="1408" -d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" /> - <glyph glyph-name="crop" unicode="" horiz-adv-x="1664" -d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 -v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" /> - <glyph glyph-name="code_fork" unicode="" horiz-adv-x="1024" -d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 -q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 -q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="unlink" unicode="" horiz-adv-x="1664" -d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 -q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 -l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 -t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> - <glyph glyph-name="question" unicode="" horiz-adv-x="1024" -d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 -t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" /> - <glyph glyph-name="_279" unicode="" horiz-adv-x="640" -d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 -q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" /> - <glyph glyph-name="exclamation" unicode="" horiz-adv-x="640" -d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" /> - <glyph glyph-name="superscript" unicode="" -d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z -M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5 -t-65.5 -51.5t-30.5 -63h232v80h126z" /> - <glyph glyph-name="subscript" unicode="" -d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z -M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73 -h232v80h126z" /> - <glyph glyph-name="_283" unicode="" horiz-adv-x="1920" -d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" /> - <glyph glyph-name="puzzle_piece" unicode="" horiz-adv-x="1664" -d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 -t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 -q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 -q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" /> - <glyph glyph-name="microphone" unicode="" horiz-adv-x="1152" -d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 -t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" /> - <glyph glyph-name="microphone_off" unicode="" horiz-adv-x="1408" -d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 -q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 -t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" /> - <glyph glyph-name="shield" unicode="" horiz-adv-x="1280" -d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 -t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="calendar_empty" unicode="" horiz-adv-x="1664" -d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 -q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="fire_extinguisher" unicode="" horiz-adv-x="1408" -d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 -q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 -q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> - <glyph glyph-name="rocket" unicode="" horiz-adv-x="1664" -d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 -q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> - <glyph glyph-name="maxcdn" unicode="" horiz-adv-x="1792" -d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" /> - <glyph glyph-name="chevron_sign_left" unicode="" -d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_right" unicode="" -d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_up" unicode="" -d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_down" unicode="" -d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="html5" unicode="" horiz-adv-x="1408" -d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" /> - <glyph glyph-name="css3" unicode="" horiz-adv-x="1792" -d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" /> - <glyph glyph-name="anchor" unicode="" horiz-adv-x="1792" -d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 -q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 -t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" /> - <glyph glyph-name="unlock_alt" unicode="" horiz-adv-x="1152" -d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 -v-320h736z" /> - <glyph glyph-name="bullseye" unicode="" -d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 -t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ellipsis_horizontal" unicode="" horiz-adv-x="1408" -d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> - <glyph glyph-name="ellipsis_vertical" unicode="" horiz-adv-x="384" -d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> - <glyph glyph-name="_303" unicode="" -d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128 -q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="play_sign" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 -q16 -8 32 -8q17 0 32 9z" /> - <glyph glyph-name="ticket" unicode="" horiz-adv-x="1792" -d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 -t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" /> - <glyph glyph-name="minus_sign_alt" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="check_minus" unicode="" horiz-adv-x="1408" -d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 -t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="level_up" unicode="" horiz-adv-x="1024" -d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" /> - <glyph glyph-name="level_down" unicode="" horiz-adv-x="1024" -d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" /> - <glyph glyph-name="check_sign" unicode="" -d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 -t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="edit_sign" unicode="" -d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_312" unicode="" -d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 -q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="share_sign" unicode="" -d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 -t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="compass" unicode="" -d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="collapse" unicode="" -d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="collapse_top" unicode="" -d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_317" unicode="" -d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 -t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="eur" unicode="" horiz-adv-x="1024" -d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 -t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 -l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" /> - <glyph glyph-name="gbp" unicode="" horiz-adv-x="1024" -d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 -q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" /> - <glyph glyph-name="usd" unicode="" horiz-adv-x="1024" -d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 -t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 -t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 -t53 -63.5t31.5 -76.5t13 -94z" /> - <glyph glyph-name="inr" unicode="" horiz-adv-x="898" -d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 -q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> - <glyph glyph-name="jpy" unicode="" horiz-adv-x="1027" -d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 -l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> - <glyph glyph-name="rub" unicode="" horiz-adv-x="1280" -d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 -q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" /> - <glyph glyph-name="krw" unicode="" horiz-adv-x="1792" -d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 -t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 -q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> - <glyph glyph-name="btc" unicode="" horiz-adv-x="1280" -d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 -l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 -t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> - <glyph glyph-name="file" unicode="" -d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" /> - <glyph glyph-name="file_text" unicode="" -d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 -q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" /> - <glyph glyph-name="sort_by_alphabet" unicode="" horiz-adv-x="1664" -d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 -v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 -l230 -662h70z" /> - <glyph glyph-name="_329" unicode="" horiz-adv-x="1664" -d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 -v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 -v119h121z" /> - <glyph glyph-name="sort_by_attributes" unicode="" horiz-adv-x="1792" -d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 -q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" /> - <glyph glyph-name="sort_by_attributes_alt" unicode="" horiz-adv-x="1792" -d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 -q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" /> - <glyph glyph-name="sort_by_order" unicode="" -d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 -zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 -t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" /> - <glyph glyph-name="sort_by_order_alt" unicode="" -d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 -t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 -q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" /> - <glyph glyph-name="_334" unicode="" horiz-adv-x="1664" -d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 -q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 -t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" /> - <glyph glyph-name="_335" unicode="" horiz-adv-x="1664" -d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 -t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 -t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" /> - <glyph glyph-name="youtube_sign" unicode="" -d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 -q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 -q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 -q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38 -q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5 -h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="youtube" unicode="" -d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 -q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 -q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 -q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51 -q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" /> - <glyph glyph-name="xing" unicode="" horiz-adv-x="1408" -d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 -q25 45 64 45h241q22 0 31 -15z" /> - <glyph glyph-name="xing_sign" unicode="" -d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 -l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="youtube_play" unicode="" horiz-adv-x="1792" -d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5 -l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136 -q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" /> - <glyph glyph-name="dropbox" unicode="" horiz-adv-x="1792" -d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" /> - <glyph glyph-name="stackexchange" unicode="" -d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" /> - <glyph glyph-name="instagram" unicode="" -d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270 -q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5 -t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317 -q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" /> - <glyph glyph-name="flickr" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 -t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" /> - <glyph glyph-name="adn" unicode="" -d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="f171" unicode="" horiz-adv-x="1408" -d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 -t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 -t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 -t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" /> - <glyph glyph-name="bitbucket_sign" unicode="" -d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 -t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z -M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="tumblr" unicode="" horiz-adv-x="1024" -d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 -q78 2 134 29z" /> - <glyph glyph-name="tumblr_sign" unicode="" -d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z -M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="long_arrow_down" unicode="" horiz-adv-x="768" -d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" /> - <glyph glyph-name="long_arrow_up" unicode="" horiz-adv-x="768" -d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" /> - <glyph glyph-name="long_arrow_left" unicode="" horiz-adv-x="1792" -d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" /> - <glyph glyph-name="long_arrow_right" unicode="" horiz-adv-x="1792" -d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" /> - <glyph glyph-name="apple" unicode="" horiz-adv-x="1408" -d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 -q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" /> - <glyph glyph-name="windows" unicode="" horiz-adv-x="1664" -d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" /> - <glyph glyph-name="android" unicode="" horiz-adv-x="1408" -d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 -t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 -h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" /> - <glyph glyph-name="linux" unicode="" -d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z -M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 -q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 -q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 -t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 -q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 -q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 -q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 -q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4 -t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5 -t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43 -q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49 -t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54 -q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5 -t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5 -t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" /> - <glyph glyph-name="dribble" unicode="" -d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 -t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 -q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 -t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="skype" unicode="" -d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 -t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 -q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 -q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" /> - <glyph glyph-name="foursquare" unicode="" horiz-adv-x="1280" -d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z -M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 -l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" /> - <glyph glyph-name="trello" unicode="" -d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 -q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="female" unicode="" horiz-adv-x="1280" -d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 -q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="male" unicode="" horiz-adv-x="1024" -d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z -M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="gittip" unicode="" -d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="sun" unicode="" horiz-adv-x="1792" -d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 -l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 -q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" /> - <glyph glyph-name="_366" unicode="" -d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 -t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" /> - <glyph glyph-name="archive" unicode="" horiz-adv-x="1792" -d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 -q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" /> - <glyph glyph-name="bug" unicode="" horiz-adv-x="1664" -d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 -q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 -t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> - <glyph glyph-name="vk" unicode="" horiz-adv-x="1920" -d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 -t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 -q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24 -q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 -q39 5 64 -2.5t31 -16.5z" /> - <glyph glyph-name="weibo" unicode="" horiz-adv-x="1792" -d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 -q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 -q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 -q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z -M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> - <glyph glyph-name="renren" unicode="" -d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 -q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" /> - <glyph glyph-name="_372" unicode="" horiz-adv-x="1408" -d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 -t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 -t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 -t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" /> - <glyph glyph-name="stack_exchange" unicode="" horiz-adv-x="1280" -d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z -" /> - <glyph glyph-name="_374" unicode="" -d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 -t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="arrow_circle_alt_left" unicode="" -d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 -t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_376" unicode="" -d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z -M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="dot_circle_alt" unicode="" -d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 -t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_378" unicode="" horiz-adv-x="1664" -d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 -q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" /> - <glyph glyph-name="vimeo_square" unicode="" -d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 -q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_380" unicode="" horiz-adv-x="1152" -d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 -q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> - <glyph glyph-name="plus_square_o" unicode="" horiz-adv-x="1408" -d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 -q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_382" unicode="" horiz-adv-x="2176" -d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 -t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 -q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" /> - <glyph glyph-name="_383" unicode="" horiz-adv-x="1664" -d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 -q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 -t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" /> - <glyph glyph-name="_384" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 -q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 -t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" /> - <glyph glyph-name="_385" unicode="" horiz-adv-x="1792" -d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 -t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 -t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 -t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 -t273 -182.5t331.5 -68z" /> - <glyph glyph-name="_386" unicode="" horiz-adv-x="1792" -d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" /> - <glyph glyph-name="_387" unicode="" horiz-adv-x="2048" -d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 -q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" /> - <glyph glyph-name="_388" unicode="" horiz-adv-x="2304" -d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 -q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" /> - <glyph glyph-name="_389" unicode="" -d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 -q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" /> - <glyph glyph-name="uniF1A0" unicode="" -d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 -t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" /> - <glyph glyph-name="f1a1" unicode="" horiz-adv-x="1792" -d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 -t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 -q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 -t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_392" unicode="" -d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 -q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 -q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_393" unicode="" -d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 -v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 -t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="f1a4" unicode="" horiz-adv-x="1920" -d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 -v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" /> - <glyph glyph-name="_395" unicode="" -d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="_396" unicode="" horiz-adv-x="2048" -d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 -v-369h123z" /> - <glyph glyph-name="_397" unicode="" -d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 -v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_398" unicode="" horiz-adv-x="2038" -d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 -q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 -q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 -q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 -t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 -q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 -t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 -t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" /> - <glyph glyph-name="_399" unicode="" -d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 -q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 -q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 -t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 -q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" /> - <glyph glyph-name="_400" unicode="" -d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z -M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 -t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 -q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 -t135.5 51q85 0 145 -60.5t60 -145.5z" /> - <glyph glyph-name="f1ab" unicode="" -d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 -q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 -q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z -M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 -q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 -q20 0 20 -21v-418z" /> - <glyph glyph-name="_402" unicode="" horiz-adv-x="1792" -d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 -l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 -t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 -q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 -q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" /> - <glyph glyph-name="_403" unicode="" -d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 -t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 -q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 -q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 -t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 -q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 -q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 -t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" /> - <glyph glyph-name="_404" unicode="" horiz-adv-x="1280" -d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152 -q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="uniF1B1" unicode="" horiz-adv-x="1664" -d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 -q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 -q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 -t100.5 134t141.5 55.5z" /> - <glyph glyph-name="_406" unicode="" horiz-adv-x="768" -d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" /> - <glyph glyph-name="_407" unicode="" horiz-adv-x="1792" -d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z -" /> - <glyph glyph-name="_408" unicode="" horiz-adv-x="2304" -d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 -t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 -v-400l434 -186q36 -16 57 -48t21 -70z" /> - <glyph glyph-name="_409" unicode="" horiz-adv-x="2048" -d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 -q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 -q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" /> - <glyph glyph-name="_410" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 -t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 -t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" /> - <glyph glyph-name="_411" unicode="" horiz-adv-x="1792" -d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 -q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 -q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" /> - <glyph glyph-name="_412" unicode="" -d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 -q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 -q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z -" /> - <glyph glyph-name="_413" unicode="" horiz-adv-x="1792" -d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 -l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 -t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 -q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" /> - <glyph glyph-name="_414" unicode="" horiz-adv-x="2048" -d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 -q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 -l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="_415" unicode="" horiz-adv-x="2048" -d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 -t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z -M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" /> - <glyph glyph-name="_416" unicode="" -d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 -q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" /> - <glyph glyph-name="_417" unicode="" -d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 -q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 -q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_418" unicode="" horiz-adv-x="1024" -d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" /> - <glyph glyph-name="_419" unicode="" horiz-adv-x="2304" -d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 -q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 -q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 -l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 -q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236 -q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786 -q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" /> - <glyph glyph-name="uniF1C0" unicode="" -d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 -t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 -t-103 128v128q0 69 103 128t280 93.5t385 34.5z" /> - <glyph glyph-name="uniF1C1" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 -q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 -q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" /> - <glyph glyph-name="_422" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5 -t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" /> - <glyph glyph-name="_423" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 -h-290v-107h68l189 -272l-194 -283h-68z" /> - <glyph glyph-name="_424" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" /> - <glyph glyph-name="_425" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" /> - <glyph glyph-name="_426" unicode="" -d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 -v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 -q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" /> - <glyph glyph-name="_427" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 -q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" /> - <glyph glyph-name="_428" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" /> - <glyph glyph-name="_429" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 -l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" /> - <glyph glyph-name="_430" unicode="" -d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 -q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" /> - <glyph glyph-name="_431" unicode="" horiz-adv-x="1792" -d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 -q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" /> - <glyph glyph-name="_432" unicode="" horiz-adv-x="2048" -d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 -q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 -t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" /> - <glyph glyph-name="_433" unicode="" horiz-adv-x="1792" -d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 -q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 -t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" /> - <glyph glyph-name="_434" unicode="" horiz-adv-x="1792" -d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 -t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" /> - <glyph glyph-name="uniF1D0" unicode="" horiz-adv-x="1792" -d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 -t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 -t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 -q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" /> - <glyph glyph-name="uniF1D1" unicode="" horiz-adv-x="1792" -d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 -l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 -q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 -q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 -t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 -t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF1D2" unicode="" -d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 -q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 -q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 -q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_438" unicode="" horiz-adv-x="1792" -d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 -q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 -q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 -v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" /> - <glyph glyph-name="_439" unicode="" -d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF1D5" unicode="" horiz-adv-x="1280" -d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 -t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 -t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" /> - <glyph glyph-name="uniF1D6" unicode="" horiz-adv-x="1792" -d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 -q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 -t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 -t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" /> - <glyph glyph-name="uniF1D7" unicode="" horiz-adv-x="2048" -d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 -q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 -q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 -q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" /> - <glyph glyph-name="_443" unicode="" horiz-adv-x="1792" -d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" /> - <glyph glyph-name="_444" unicode="" horiz-adv-x="1792" -d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 -l863 639l-478 -797z" /> - <glyph glyph-name="_445" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 -t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 -t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_446" unicode="" -d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_447" unicode="" horiz-adv-x="1792" -d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 -t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 -t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 -q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 -q0 -26 -12 -48t-36 -22z" /> - <glyph glyph-name="_448" unicode="" horiz-adv-x="1280" -d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 -q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" /> - <glyph glyph-name="_449" unicode="" -d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 -q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" /> - <glyph glyph-name="uniF1E0" unicode="" -d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 -t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" /> - <glyph glyph-name="_451" unicode="" -d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 -t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_452" unicode="" horiz-adv-x="1792" -d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 -t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 -q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 -t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> - <glyph glyph-name="_453" unicode="" horiz-adv-x="1792" -d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 -l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" /> - <glyph glyph-name="_454" unicode="" horiz-adv-x="1792" -d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 -v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 -zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 -t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" /> - <glyph glyph-name="_455" unicode="" horiz-adv-x="1792" -d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z -M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_456" unicode="" horiz-adv-x="1792" -d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234 -l401 400q38 37 91 37t90 -37z" /> - <glyph glyph-name="_457" unicode="" horiz-adv-x="1792" -d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 -t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z -M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7 -t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" /> - <glyph glyph-name="_458" unicode="" horiz-adv-x="1792" -d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" /> - <glyph glyph-name="_459" unicode="" -d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 -q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 -t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 -q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" /> - <glyph glyph-name="_460" unicode="" horiz-adv-x="2048" -d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 -t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" /> - <glyph glyph-name="_461" unicode="" horiz-adv-x="2048" -d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 -q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z -M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" /> - <glyph glyph-name="_462" unicode="" horiz-adv-x="1792" -d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 -t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 -t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 -t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z -M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 -h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_463" unicode="" -d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 -q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 -q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" /> - <glyph glyph-name="_464" unicode="" horiz-adv-x="1792" -d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640 -q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" /> - <glyph glyph-name="uniF1F0" unicode="" horiz-adv-x="2304" -d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 -q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 -q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_466" unicode="" horiz-adv-x="2304" -d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249 -q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z -M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32 -h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4 -q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75 -q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14 -q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22 -q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12 -q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122 -h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5 -t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_467" unicode="" horiz-adv-x="2304" -d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 -q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 -v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 -q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 -t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" /> - <glyph glyph-name="f1f3" unicode="" horiz-adv-x="2304" -d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z -M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 -l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 -v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 -q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 -q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 -t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 -h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 -t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" /> - <glyph glyph-name="_469" unicode="" horiz-adv-x="2304" -d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 -t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 -q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 -t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 -l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 -q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_470" unicode="" horiz-adv-x="2304" -d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 -q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 -q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 -q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 -q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_471" unicode="" horiz-adv-x="2048" -d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 -l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 -l418 363q10 8 23.5 7t21.5 -11z" /> - <glyph glyph-name="_472" unicode="" horiz-adv-x="2048" -d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 -q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 -q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" /> - <glyph glyph-name="_473" unicode="" horiz-adv-x="1408" -d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 -q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 -q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_474" unicode="" -d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 -t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 -t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_475" unicode="" -d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 -q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 -t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 -t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" /> - <glyph glyph-name="_476" unicode="" horiz-adv-x="1792" -d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 -t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" /> - <glyph glyph-name="f1fc" unicode="" horiz-adv-x="1792" -d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 -t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" /> - <glyph glyph-name="_478" unicode="" horiz-adv-x="1792" -d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5 -t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38 -t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448 -h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5 -q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" /> - <glyph glyph-name="_479" unicode="" horiz-adv-x="2048" -d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" /> - <glyph glyph-name="_480" unicode="" horiz-adv-x="1792" -d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_481" unicode="" horiz-adv-x="2048" -d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 -t9 -23z" /> - <glyph glyph-name="_482" unicode="" horiz-adv-x="1792" -d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 -q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 -t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 -q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" /> - <glyph glyph-name="_483" unicode="" -d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 -q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 -q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_484" unicode="" horiz-adv-x="2048" -d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 -t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 -t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" /> - <glyph glyph-name="_485" unicode="" horiz-adv-x="2048" -d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 -t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> - <glyph glyph-name="_486" unicode="" horiz-adv-x="2304" -d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 -q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 -q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 -q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" /> - <glyph glyph-name="_487" unicode="" -d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 -h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" /> - <glyph glyph-name="_488" unicode="" horiz-adv-x="2048" -d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 -q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 -q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" /> - <glyph glyph-name="_489" unicode="" horiz-adv-x="1280" -d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 -t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 -t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 -q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 -q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 -t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" /> - <glyph glyph-name="_490" unicode="" horiz-adv-x="2048" -d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 -q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 -t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 -t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" /> - <glyph glyph-name="_491" unicode="" -d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 -t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_492" unicode="" -d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 -q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 -q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" /> - <glyph glyph-name="_493" unicode="" -d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" /> - <glyph glyph-name="_494" unicode="" horiz-adv-x="2048" -d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 -q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 -q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438 -h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66 -l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946 -l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82 -zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" /> - <glyph glyph-name="f210" unicode="" -d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" /> - <glyph glyph-name="_496" unicode="" -d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 -q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" /> - <glyph glyph-name="f212" unicode="" horiz-adv-x="2048" -d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 -q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 -q209 0 374 -102q172 107 374 102z" /> - <glyph glyph-name="_498" unicode="" horiz-adv-x="2048" -d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 -q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 -q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" /> - <glyph glyph-name="_499" unicode="" -d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 -l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 -v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z -M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 -v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 -h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 -t-43 -34t-16.5 -53.5z" /> - <glyph glyph-name="_500" unicode="" horiz-adv-x="2048" -d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 -q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" /> - <glyph glyph-name="_501" unicode="" horiz-adv-x="2048" -d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 -t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 -t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 -q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" /> - <glyph glyph-name="_502" unicode="" horiz-adv-x="1664" -d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 -q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="_503" unicode="" horiz-adv-x="1664" -d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 -q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="_504" unicode="" horiz-adv-x="2048" -d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 -l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" /> - <glyph glyph-name="_505" unicode="" horiz-adv-x="2048" -d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 -q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 -q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 -v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 -q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" /> - <glyph glyph-name="_506" unicode="" -d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 -t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 -q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 -t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" /> - <glyph glyph-name="_507" unicode="" horiz-adv-x="2304" -d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 -t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 -l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 -t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" /> - <glyph glyph-name="_508" unicode="" -d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 -q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 -q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 -t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="_509" unicode="" horiz-adv-x="1792" -d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 -q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 -t127 -344z" /> - <glyph glyph-name="venus" unicode="" horiz-adv-x="1280" -d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 -q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" /> - <glyph glyph-name="_511" unicode="" -d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 -q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_512" unicode="" horiz-adv-x="1280" -d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 -t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_513" unicode="" -d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 -q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_514" unicode="" horiz-adv-x="1792" -d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 -q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 -t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 -t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_515" unicode="" horiz-adv-x="1792" -d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 -t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 -q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 -q0 -226 -154 -391q103 -57 218 -57z" /> - <glyph glyph-name="_516" unicode="" horiz-adv-x="1920" -d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 -q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 -t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 -q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" /> - <glyph glyph-name="_517" unicode="" horiz-adv-x="2048" -d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 -t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 -t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 -t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" /> - <glyph glyph-name="_518" unicode="" -d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 -t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_519" unicode="" horiz-adv-x="1280" -d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 -t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 -t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_520" unicode="" horiz-adv-x="2048" -d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 -t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 -t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_521" unicode="" horiz-adv-x="1280" -d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 -t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_522" unicode="" horiz-adv-x="1280" -d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 -t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" /> - <glyph glyph-name="_523" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_524" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_525" unicode="" -d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" /> - <glyph glyph-name="_526" unicode="" horiz-adv-x="1280" -d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 -l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 -q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" /> - <glyph glyph-name="_527" unicode="" -d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 -t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 -l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" /> - <glyph glyph-name="_528" unicode="" horiz-adv-x="1792" -d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 -q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" /> - <glyph glyph-name="_529" unicode="" horiz-adv-x="2048" -d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 -t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 -t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" /> - <glyph glyph-name="_530" unicode="" horiz-adv-x="2048" -d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 -q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 -t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" /> - <glyph glyph-name="_531" unicode="" horiz-adv-x="2048" -d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 -q-26 0 -45 -19t-19 -45v-384h1152z" /> - <glyph glyph-name="_532" unicode="" -d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" /> - <glyph glyph-name="_533" unicode="" -d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 -t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" /> - <glyph glyph-name="_534" unicode="" -d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 -t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" /> - <glyph glyph-name="_535" unicode="" horiz-adv-x="1792" -d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 -q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" /> - <glyph glyph-name="_536" unicode="" -d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" /> - <glyph glyph-name="_537" unicode="" horiz-adv-x="2296" -d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 -q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 -q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 -q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 -q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 -q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 -q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8 -t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 -q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 -q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z -M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86 -t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 -q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4 -l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130 -t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 -q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 -q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" /> - <glyph glyph-name="_538" unicode="" horiz-adv-x="2304" -d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 -t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 -t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" /> - <glyph glyph-name="_539" unicode="" horiz-adv-x="1792" -d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 -t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 -t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 -q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 -q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" /> - <glyph glyph-name="_540" unicode="" horiz-adv-x="2304" -d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 -v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="_541" unicode="" horiz-adv-x="2304" -d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_542" unicode="" horiz-adv-x="2304" -d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_543" unicode="" horiz-adv-x="2304" -d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_544" unicode="" horiz-adv-x="2304" -d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 -v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_545" unicode="" horiz-adv-x="1280" -d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" /> - <glyph glyph-name="_546" unicode="" horiz-adv-x="1024" -d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" /> - <glyph glyph-name="_547" unicode="" horiz-adv-x="2048" -d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 -h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" /> - <glyph glyph-name="_548" unicode="" horiz-adv-x="2304" -d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 -v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" /> - <glyph glyph-name="_549" unicode="" -d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" /> - <glyph glyph-name="_550" unicode="" -d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 -z" /> - <glyph glyph-name="_551" unicode="" horiz-adv-x="2304" -d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 -t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 -t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 -t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_552" unicode="" horiz-adv-x="2304" -d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 -t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z -M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_553" unicode="" horiz-adv-x="1792" -d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 -zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" /> - <glyph glyph-name="_554" unicode="" horiz-adv-x="2304" -d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 -q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 -t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 -t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" /> - <glyph glyph-name="_555" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 -t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> - <glyph glyph-name="_556" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" /> - <glyph glyph-name="_557" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" /> - <glyph glyph-name="_558" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 -h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> - <glyph glyph-name="_559" unicode="" -d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 -t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 -h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" /> - <glyph glyph-name="_560" unicode="" -d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 -q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 -t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 -q72 69 174 69z" /> - <glyph glyph-name="_561" unicode="" horiz-adv-x="1792" -d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 -t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 -h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" /> - <glyph glyph-name="_562" unicode="" horiz-adv-x="1792" -d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 -q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 -t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 -t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 -q0 -42 -23 -78t-61 -53l-310 -141h91z" /> - <glyph glyph-name="_563" unicode="" horiz-adv-x="2048" -d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 -q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 -q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" /> - <glyph glyph-name="_564" unicode="" horiz-adv-x="2048" -d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79 -t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24 -q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26 -l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" /> - <glyph glyph-name="_565" unicode="" horiz-adv-x="1792" -d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 -q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 -v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 -v-384h32z" /> - <glyph glyph-name="_566" unicode="" -d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 -v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 -q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 -q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 -q0 -53 37.5 -90.5t90.5 -37.5h668z" /> - <glyph glyph-name="_567" unicode="" horiz-adv-x="1973" -d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 -t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 -q13 0 22 -8.5t10 -20.5z" /> - <glyph glyph-name="_568" unicode="" horiz-adv-x="1792" -d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 -t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 -q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_569" unicode="" horiz-adv-x="1792" -d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 -q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5 -t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 -q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 -t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" /> - <glyph glyph-name="f260" unicode="" horiz-adv-x="2048" -d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" /> - <glyph glyph-name="f261" unicode="" horiz-adv-x="1792" -d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 -t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_572" unicode="" horiz-adv-x="2304" -d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 -t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 -t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 -t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 -t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 -q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" /> - <glyph glyph-name="f263" unicode="" horiz-adv-x="1280" -d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 -t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 -q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" /> - <glyph glyph-name="_574" unicode="" -d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 -q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 -zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_575" unicode="" horiz-adv-x="1720" -d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 -l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" /> - <glyph glyph-name="_576" unicode="" horiz-adv-x="2304" -d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 -q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 -l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" /> - <glyph glyph-name="_577" unicode="" horiz-adv-x="1792" -d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 -q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 -t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 -t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 -t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 -t191 -286t71 -348z" /> - <glyph glyph-name="_578" unicode="" horiz-adv-x="1792" -d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 -q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" /> - <glyph glyph-name="_579" unicode="" horiz-adv-x="1792" -d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 -q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 -q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" /> - <glyph glyph-name="_580" unicode="" horiz-adv-x="1792" -d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 -q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z -" /> - <glyph glyph-name="_581" unicode="" horiz-adv-x="1792" -d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 -q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z -M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" /> - <glyph glyph-name="_582" unicode="" horiz-adv-x="2048" -d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 -v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="_583" unicode="" horiz-adv-x="1792" -d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 -h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 -q-68 175 -180 287z" /> - <glyph glyph-name="_584" unicode="" -d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 -q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 -q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 -q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 -q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 -t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" /> - <glyph glyph-name="_585" unicode="" horiz-adv-x="1792" -d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z -M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 -q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 -t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 -q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" /> - <glyph glyph-name="_586" unicode="" horiz-adv-x="1792" -d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 -h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 -v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" /> - <glyph glyph-name="_587" unicode="" horiz-adv-x="1792" -d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 -t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 -t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_588" unicode="" horiz-adv-x="1792" -d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z -M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 -q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_589" unicode="" horiz-adv-x="1792" -d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 -t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 -t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_590" unicode="" horiz-adv-x="1792" -d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" /> - <glyph glyph-name="_591" unicode="" horiz-adv-x="1024" -d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 -q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" /> - <glyph glyph-name="_592" unicode="" horiz-adv-x="1792" -d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 -q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" /> - <glyph glyph-name="_593" unicode="" horiz-adv-x="2048" -d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 -v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" /> - <glyph glyph-name="_594" unicode="" horiz-adv-x="1792" -d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 -q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" /> - <glyph glyph-name="_595" unicode="" horiz-adv-x="1792" -d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 -t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 -t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="_596" unicode="" horiz-adv-x="1792" -d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 -t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 -t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 -t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" /> - <glyph glyph-name="_597" unicode="" horiz-adv-x="1024" -d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" /> - <glyph glyph-name="_598" unicode="" horiz-adv-x="1792" -d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 -q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" /> - <glyph glyph-name="f27e" unicode="" -d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" /> - <glyph glyph-name="uniF280" unicode="" -d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 -h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 -l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" /> - <glyph glyph-name="uniF281" unicode="" horiz-adv-x="1792" -d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 -l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 -t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 -q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" /> - <glyph glyph-name="_602" unicode="" horiz-adv-x="1792" -d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 -q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" /> - <glyph glyph-name="_603" unicode="" horiz-adv-x="2304" -d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" /> - <glyph glyph-name="_604" unicode="" horiz-adv-x="1792" -d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308 -t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20 -t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" /> - <glyph glyph-name="uniF285" unicode="" horiz-adv-x="1792" -d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" /> - <glyph glyph-name="uniF286" unicode="" horiz-adv-x="1792" -d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 -q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5 -q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96 -q16 0 16 -16z" /> - <glyph glyph-name="_607" unicode="" horiz-adv-x="2304" -d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 -q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 -t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" /> - <glyph glyph-name="_608" unicode="" horiz-adv-x="1792" -d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 -t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_609" unicode="" horiz-adv-x="2304" -d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 -q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 -q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 -q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" /> - <glyph glyph-name="_610" unicode="" -d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 -t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 -q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 -t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" /> - <glyph glyph-name="_611" unicode="" -d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 -t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_612" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 -t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" /> - <glyph glyph-name="_613" unicode="" -d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="_614" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 -t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" /> - <glyph glyph-name="_615" unicode="" horiz-adv-x="1792" -d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="_616" unicode="" horiz-adv-x="2048" -d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 -t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 -q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 -h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" /> - <glyph glyph-name="_617" unicode="" horiz-adv-x="1792" -d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 -q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 -q15 0 25 -12q9 -12 6 -28z" /> - <glyph glyph-name="_618" unicode="" -d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 -t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" /> - <glyph glyph-name="_619" unicode="" horiz-adv-x="1024" -d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" /> - <glyph glyph-name="_620" unicode="" -d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 -t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 -t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="_621" unicode="" horiz-adv-x="1792" -d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" /> - <glyph glyph-name="_622" unicode="" horiz-adv-x="1792" -d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111 -q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" /> - <glyph glyph-name="_623" unicode="" -d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14 -t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" /> - <glyph glyph-name="_624" unicode="" horiz-adv-x="1792" -d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57 -q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285 -q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" /> - <glyph glyph-name="_625" unicode="" horiz-adv-x="1792" -d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42 -q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z -M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298 -t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_626" unicode="" -d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300 -l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z -M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" /> - <glyph glyph-name="_627" unicode="" -d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5 -t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5 -t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5 -t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_628" unicode="" horiz-adv-x="1408" -d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457 -q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521 -q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661 -q3 -1 7 1t7 4l3 2q11 9 11 17z" /> - <glyph glyph-name="_629" unicode="" horiz-adv-x="2304" -d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10 -t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5 -t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5 -h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96 -t9.5 -70.5z" /> - <glyph glyph-name="uniF2A0" unicode="" horiz-adv-x="1408" -d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5 -q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127 -l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272 -t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249 -q-18 -19 -45 -19z" /> - <glyph glyph-name="uniF2A1" unicode="" horiz-adv-x="2176" -d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352 -q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864 -q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136 -t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56 -t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56 -t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136 -t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="uniF2A2" unicode="" horiz-adv-x="1792" -d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z -M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72 -t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45 -t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4 -q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" /> - <glyph glyph-name="uniF2A3" unicode="" horiz-adv-x="2304" -d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55 -q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5 -q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101 -q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35 -q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5 -q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" /> - <glyph glyph-name="uniF2A4" unicode="" horiz-adv-x="1792" -d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19 -t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74 -t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233 -l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" /> - <glyph glyph-name="uniF2A5" unicode="" -d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2 -q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10 -q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5 -t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF2A6" unicode="" horiz-adv-x="1535" -d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5 -l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5 -q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9 -q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" /> - <glyph glyph-name="uniF2A7" unicode="" horiz-adv-x="1664" -d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37 -t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38 -l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148 -q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26 -l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" /> - <glyph glyph-name="uniF2A8" unicode="" horiz-adv-x="1792" -d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5 -q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841 -q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5 -q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" /> - <glyph glyph-name="uniF2A9" unicode="" horiz-adv-x="1280" -d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5 -q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z -M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" /> - <glyph glyph-name="uniF2AA" unicode="" -d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z -M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5 -q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="uniF2AB" unicode="" -d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114 -q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5 -t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="uniF2AC" unicode="" horiz-adv-x="1664" -d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35 -q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5 -t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" /> - <glyph glyph-name="uniF2AD" unicode="" -d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115 -q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15 -t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 -q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF2AE" unicode="" horiz-adv-x="2304" -d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7 -q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158 -q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" /> - <glyph glyph-name="uniF2B0" unicode="" -d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104 -q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108 -l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z -M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" /> - <glyph glyph-name="uniF2B1" unicode="" horiz-adv-x="1664" -d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5 -t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" /> - <glyph glyph-name="uniF2B2" unicode="" horiz-adv-x="1792" -d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5 -t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114 -q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50 -q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5 -t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46 -q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5 -q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177 -t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" /> - <glyph glyph-name="uniF2B3" unicode="" -d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110 -h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="uniF2B4" unicode="" -d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5 -q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" /> - <glyph glyph-name="uniF2B5" unicode="" horiz-adv-x="2304" -d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66 -l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180 -q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z -M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421 -q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" /> - <glyph glyph-name="uniF2B6" unicode="" horiz-adv-x="1792" -d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107 -t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39 -q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" /> - <glyph glyph-name="uniF2B7" unicode="" horiz-adv-x="1792" -d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5 -l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5 -h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94 -q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" /> - <glyph glyph-name="uniF2B8" unicode="" -d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465 -l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161 -q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74 -q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" /> - <glyph glyph-name="uniF2B9" unicode="" horiz-adv-x="1664" -d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576 -q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216 -q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" /> - <glyph glyph-name="uniF2BA" unicode="" horiz-adv-x="1664" -d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5 -t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96 -q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216 -q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" /> - <glyph glyph-name="uniF2BB" unicode="" horiz-adv-x="2048" -d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z -M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568 -q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9 -h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2BC" unicode="" horiz-adv-x="2048" -d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925 -q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568 -q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5 -t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113 -t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2BD" unicode="" horiz-adv-x="1792" -d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5 -t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2BE" unicode="" horiz-adv-x="1792" -d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61 -t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" /> - <glyph glyph-name="uniF2C0" unicode="" -d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5 -t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145 -q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" /> - <glyph glyph-name="uniF2C1" unicode="" horiz-adv-x="1280" -d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5 -t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352 -q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C2" unicode="" horiz-adv-x="2048" -d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56 -t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23 -v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728 -q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C3" unicode="" horiz-adv-x="2048" -d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z -M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64 -q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47 -h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C4" unicode="" horiz-adv-x="1792" -d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117 -q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5 -t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" /> - <glyph glyph-name="uniF2C5" unicode="" horiz-adv-x="2304" -d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21 -t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46 -t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54 -t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29 -q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5 -t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314 -q2 -42 2 -64z" /> - <glyph glyph-name="uniF2C6" unicode="" horiz-adv-x="1792" -d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 -t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2C7" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2C8" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2C9" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2CA" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2CB" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z -M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" /> - <glyph glyph-name="uniF2CC" unicode="" horiz-adv-x="1920" -d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41 -t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19 -t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768 -q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19 -t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384 -q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" /> - <glyph glyph-name="uniF2CD" unicode="" horiz-adv-x="1792" -d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9 -t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9 -t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42 -q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9 -t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23 -t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" /> - <glyph glyph-name="uniF2CE" unicode="" -d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5 -t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70 -q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20 -q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5 -t72.5 -263.5z" /> - <glyph glyph-name="uniF2D0" unicode="" horiz-adv-x="1792" -d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D1" unicode="" horiz-adv-x="1792" -d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D2" unicode="" horiz-adv-x="2048" -d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47 -t47 -113z" /> - <glyph glyph-name="uniF2D3" unicode="" horiz-adv-x="1792" -d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10 -l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D4" unicode="" horiz-adv-x="1792" -d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 -l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D5" unicode="" horiz-adv-x="1792" -d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2D6" unicode="" horiz-adv-x="1794" -d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12 -t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5 -t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5 -q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5 -q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34 -q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5 -t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2D7" unicode="" -d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89 -q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5 -t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" /> - <glyph glyph-name="uniF2D8" unicode="" -d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7 -t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5 -h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113 -v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D9" unicode="" horiz-adv-x="2176" -d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584 -q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5 -q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15 -q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82 -q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104 -t302 11t306.5 -97q220 -115 333 -336t87 -474z" /> - <glyph glyph-name="uniF2DA" unicode="" horiz-adv-x="1792" -d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178 -q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199 -t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297 -t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208 -t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" /> - <glyph glyph-name="uniF2DB" unicode="" -d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16 -q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28 -t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32 -q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16 -h48q16 0 16 -16z" /> - <glyph glyph-name="uniF2DC" unicode="" horiz-adv-x="1664" -d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45 -t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33 -q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313 -l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106 -q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" /> - <glyph glyph-name="uniF2DD" unicode="" horiz-adv-x="1792" -d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321 -q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" /> - <glyph glyph-name="uniF2DE" unicode="" horiz-adv-x="1792" -d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62 -t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71 -t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2E0" unicode="" horiz-adv-x="1920" -d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3 -t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53 -q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5 -q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5 -t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5 -q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z -M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21 -q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16 -q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" /> - <glyph glyph-name="uniF2E1" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E2" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E3" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E4" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E5" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E6" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E7" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_698" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E9" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EA" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EB" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EC" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2ED" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EE" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="lessequal" unicode="" horiz-adv-x="1792" - /> - </font> -</defs></svg> diff --git a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.ttf b/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa1..0000000000 Binary files a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff b/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b0..0000000000 Binary files a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff2 b/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc6040..0000000000 Binary files a/frontend_v2/src/assets/fonts/font-awesome/fontawesome-webfont.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.eot b/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.eot deleted file mode 100644 index b73776ee3b..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.ttf b/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.ttf deleted file mode 100644 index 68822caf24..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff b/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff deleted file mode 100644 index 1f75afdcc8..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff2 b/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff2 deleted file mode 100644 index 350d1c3a2d..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Bold.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.eot b/frontend_v2/src/assets/fonts/roboto/Roboto-Light.eot deleted file mode 100644 index 072cdc480c..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.ttf b/frontend_v2/src/assets/fonts/roboto/Roboto-Light.ttf deleted file mode 100644 index aa45340757..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff b/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff deleted file mode 100644 index 3480c6c8b7..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff2 b/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff2 deleted file mode 100644 index 9a4d98c462..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Light.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.eot b/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.eot deleted file mode 100644 index f9ad99566d..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.ttf b/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.ttf deleted file mode 100644 index a3c1a1f170..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff b/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff deleted file mode 100644 index 1186773fd0..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff2 b/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff2 deleted file mode 100644 index d10a59261f..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Medium.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.eot b/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.eot deleted file mode 100644 index 9b5e8e4138..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.ttf b/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.ttf deleted file mode 100644 index 0e58508a64..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff b/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff deleted file mode 100644 index f823258a4e..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff2 b/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff2 deleted file mode 100644 index b7082ef310..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Regular.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.eot b/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.eot deleted file mode 100644 index 2284a3b3ef..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.eot and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.ttf b/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.ttf deleted file mode 100644 index 8779333b1a..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff b/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff deleted file mode 100644 index 2a98c1e41d..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff and /dev/null differ diff --git a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff2 b/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff2 deleted file mode 100644 index a38025a158..0000000000 Binary files a/frontend_v2/src/assets/fonts/roboto/Roboto-Thin.woff2 and /dev/null differ diff --git a/frontend_v2/src/assets/images/404.png b/frontend_v2/src/assets/images/404.png deleted file mode 100644 index 59bf3f37fc..0000000000 Binary files a/frontend_v2/src/assets/images/404.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/EvalAI_favicon.png b/frontend_v2/src/assets/images/EvalAI_favicon.png deleted file mode 100644 index f38d62a363..0000000000 Binary files a/frontend_v2/src/assets/images/EvalAI_favicon.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/Get_involved_Final_documentation.jpg b/frontend_v2/src/assets/images/Get_involved_Final_documentation.jpg deleted file mode 100644 index 5e317484df..0000000000 Binary files a/frontend_v2/src/assets/images/Get_involved_Final_documentation.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/Header_bg.png b/frontend_v2/src/assets/images/Header_bg.png deleted file mode 100644 index db652e0366..0000000000 Binary files a/frontend_v2/src/assets/images/Header_bg.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/Video Background.png b/frontend_v2/src/assets/images/Video Background.png deleted file mode 100644 index 928294f849..0000000000 Binary files a/frontend_v2/src/assets/images/Video Background.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/analysis.gif b/frontend_v2/src/assets/images/analysis.gif deleted file mode 100644 index 4adbdc2342..0000000000 Binary files a/frontend_v2/src/assets/images/analysis.gif and /dev/null differ diff --git a/frontend_v2/src/assets/images/arrow_scroll.png b/frontend_v2/src/assets/images/arrow_scroll.png deleted file mode 100644 index c17333519c..0000000000 Binary files a/frontend_v2/src/assets/images/arrow_scroll.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/auth-cloud.png b/frontend_v2/src/assets/images/auth-cloud.png deleted file mode 100644 index e8d2faf923..0000000000 Binary files a/frontend_v2/src/assets/images/auth-cloud.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/auth_background.png b/frontend_v2/src/assets/images/auth_background.png deleted file mode 100644 index fc8a7c9653..0000000000 Binary files a/frontend_v2/src/assets/images/auth_background.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/auth_orange_image.png b/frontend_v2/src/assets/images/auth_orange_image.png deleted file mode 100644 index 7830fc7f54..0000000000 Binary files a/frontend_v2/src/assets/images/auth_orange_image.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/bird.gif b/frontend_v2/src/assets/images/bird.gif deleted file mode 100644 index 8c433901d2..0000000000 Binary files a/frontend_v2/src/assets/images/bird.gif and /dev/null differ diff --git a/frontend_v2/src/assets/images/challenge_preview.png b/frontend_v2/src/assets/images/challenge_preview.png deleted file mode 100644 index be508797a5..0000000000 Binary files a/frontend_v2/src/assets/images/challenge_preview.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/check.png b/frontend_v2/src/assets/images/check.png deleted file mode 100644 index b6b7f6eaa6..0000000000 Binary files a/frontend_v2/src/assets/images/check.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/clock.png b/frontend_v2/src/assets/images/clock.png deleted file mode 100644 index aaf20fc67b..0000000000 Binary files a/frontend_v2/src/assets/images/clock.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud-1.png b/frontend_v2/src/assets/images/cloud-1.png deleted file mode 100644 index 3116d34cfb..0000000000 Binary files a/frontend_v2/src/assets/images/cloud-1.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud-2.png b/frontend_v2/src/assets/images/cloud-2.png deleted file mode 100644 index 592fd6b100..0000000000 Binary files a/frontend_v2/src/assets/images/cloud-2.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud-4.png b/frontend_v2/src/assets/images/cloud-4.png deleted file mode 100644 index 2d1bfb3a93..0000000000 Binary files a/frontend_v2/src/assets/images/cloud-4.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud1.png b/frontend_v2/src/assets/images/cloud1.png deleted file mode 100644 index 3116d34cfb..0000000000 Binary files a/frontend_v2/src/assets/images/cloud1.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud2.png b/frontend_v2/src/assets/images/cloud2.png deleted file mode 100644 index 592fd6b100..0000000000 Binary files a/frontend_v2/src/assets/images/cloud2.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/cloud3.png b/frontend_v2/src/assets/images/cloud3.png deleted file mode 100644 index 7f3498f9de..0000000000 Binary files a/frontend_v2/src/assets/images/cloud3.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/confirm_dark.png b/frontend_v2/src/assets/images/confirm_dark.png deleted file mode 100644 index d8de4c60a6..0000000000 Binary files a/frontend_v2/src/assets/images/confirm_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/dash-challenge.png b/frontend_v2/src/assets/images/dash-challenge.png deleted file mode 100644 index 8b08c97839..0000000000 Binary files a/frontend_v2/src/assets/images/dash-challenge.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/dots.png b/frontend_v2/src/assets/images/dots.png deleted file mode 100644 index 1d8cc15f6a..0000000000 Binary files a/frontend_v2/src/assets/images/dots.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/email.png b/frontend_v2/src/assets/images/email.png deleted file mode 100644 index 3bfb32e770..0000000000 Binary files a/frontend_v2/src/assets/images/email.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/envelope_dark.png b/frontend_v2/src/assets/images/envelope_dark.png deleted file mode 100644 index ea9e222a1f..0000000000 Binary files a/frontend_v2/src/assets/images/envelope_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai-cover.png b/frontend_v2/src/assets/images/evalai-cover.png deleted file mode 100644 index 0c2e875815..0000000000 Binary files a/frontend_v2/src/assets/images/evalai-cover.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai-logo-single.png b/frontend_v2/src/assets/images/evalai-logo-single.png deleted file mode 100644 index 6351d4788b..0000000000 Binary files a/frontend_v2/src/assets/images/evalai-logo-single.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai-logo.png b/frontend_v2/src/assets/images/evalai-logo.png deleted file mode 100644 index 1644bd6d22..0000000000 Binary files a/frontend_v2/src/assets/images/evalai-logo.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai-paper.jpg b/frontend_v2/src/assets/images/evalai-paper.jpg deleted file mode 100644 index a1df7d8c00..0000000000 Binary files a/frontend_v2/src/assets/images/evalai-paper.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai_logo.png b/frontend_v2/src/assets/images/evalai_logo.png deleted file mode 100644 index 8ad87de38d..0000000000 Binary files a/frontend_v2/src/assets/images/evalai_logo.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai_logo_light.png b/frontend_v2/src/assets/images/evalai_logo_light.png deleted file mode 100644 index 19cded36bd..0000000000 Binary files a/frontend_v2/src/assets/images/evalai_logo_light.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/evalai_logo_light_old.png b/frontend_v2/src/assets/images/evalai_logo_light_old.png deleted file mode 100644 index a3696e3104..0000000000 Binary files a/frontend_v2/src/assets/images/evalai_logo_light_old.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/favicon.ico b/frontend_v2/src/assets/images/favicon.ico deleted file mode 100644 index 4a8cece4bb..0000000000 Binary files a/frontend_v2/src/assets/images/favicon.ico and /dev/null differ diff --git a/frontend_v2/src/assets/images/fb.png b/frontend_v2/src/assets/images/fb.png deleted file mode 100644 index b934135c0f..0000000000 Binary files a/frontend_v2/src/assets/images/fb.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/cli.png b/frontend_v2/src/assets/images/features/cli.png deleted file mode 100644 index a3cbf9f4b6..0000000000 Binary files a/frontend_v2/src/assets/images/features/cli.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/docker.png b/frontend_v2/src/assets/images/features/docker.png deleted file mode 100644 index 4e19f08c3f..0000000000 Binary files a/frontend_v2/src/assets/images/features/docker.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/faster-eval.png b/frontend_v2/src/assets/images/features/faster-eval.png deleted file mode 100644 index d035cba84b..0000000000 Binary files a/frontend_v2/src/assets/images/features/faster-eval.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/portability.png b/frontend_v2/src/assets/images/features/portability.png deleted file mode 100644 index eb7250f58a..0000000000 Binary files a/frontend_v2/src/assets/images/features/portability.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/protocols.png b/frontend_v2/src/assets/images/features/protocols.png deleted file mode 100644 index 41203a0f19..0000000000 Binary files a/frontend_v2/src/assets/images/features/protocols.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/features/remote.png b/frontend_v2/src/assets/images/features/remote.png deleted file mode 100644 index 4bb4975763..0000000000 Binary files a/frontend_v2/src/assets/images/features/remote.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/footer_complete.png b/frontend_v2/src/assets/images/footer_complete.png deleted file mode 100644 index c408a7ac93..0000000000 Binary files a/frontend_v2/src/assets/images/footer_complete.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/footer_partial.png b/frontend_v2/src/assets/images/footer_partial.png deleted file mode 100644 index 3e53ebaeaf..0000000000 Binary files a/frontend_v2/src/assets/images/footer_partial.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/get_involved/Improving_image.png b/frontend_v2/src/assets/images/get_involved/Improving_image.png deleted file mode 100644 index 47169e1aba..0000000000 Binary files a/frontend_v2/src/assets/images/get_involved/Improving_image.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/get_involved/Partnership_image.png b/frontend_v2/src/assets/images/get_involved/Partnership_image.png deleted file mode 100644 index 12c4265f54..0000000000 Binary files a/frontend_v2/src/assets/images/get_involved/Partnership_image.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/get_involved/Press_image.png b/frontend_v2/src/assets/images/get_involved/Press_image.png deleted file mode 100644 index 301ad9d04f..0000000000 Binary files a/frontend_v2/src/assets/images/get_involved/Press_image.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/get_involved/Report_image.png b/frontend_v2/src/assets/images/get_involved/Report_image.png deleted file mode 100644 index d07800e34d..0000000000 Binary files a/frontend_v2/src/assets/images/get_involved/Report_image.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/git.png b/frontend_v2/src/assets/images/git.png deleted file mode 100644 index 9be19c1ac7..0000000000 Binary files a/frontend_v2/src/assets/images/git.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/git_black.png b/frontend_v2/src/assets/images/git_black.png deleted file mode 100644 index dbbefae9e2..0000000000 Binary files a/frontend_v2/src/assets/images/git_black.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/git_dark.png b/frontend_v2/src/assets/images/git_dark.png deleted file mode 100644 index bb2f2150f6..0000000000 Binary files a/frontend_v2/src/assets/images/git_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/kaggle_comparison.png b/frontend_v2/src/assets/images/kaggle_comparison.png deleted file mode 100644 index a783f967c9..0000000000 Binary files a/frontend_v2/src/assets/images/kaggle_comparison.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/link_dark.png b/frontend_v2/src/assets/images/link_dark.png deleted file mode 100644 index 15cf73787f..0000000000 Binary files a/frontend_v2/src/assets/images/link_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/logo.png b/frontend_v2/src/assets/images/logo.png deleted file mode 100644 index 259b600ba0..0000000000 Binary files a/frontend_v2/src/assets/images/logo.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/mapmarker.png b/frontend_v2/src/assets/images/mapmarker.png deleted file mode 100644 index 3f49c9c156..0000000000 Binary files a/frontend_v2/src/assets/images/mapmarker.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/moon.png b/frontend_v2/src/assets/images/moon.png deleted file mode 100644 index 067cecc631..0000000000 Binary files a/frontend_v2/src/assets/images/moon.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/overview.jpg b/frontend_v2/src/assets/images/overview.jpg deleted file mode 100644 index 8e4010ba11..0000000000 Binary files a/frontend_v2/src/assets/images/overview.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/owl.png b/frontend_v2/src/assets/images/owl.png deleted file mode 100644 index 0ccc675eaf..0000000000 Binary files a/frontend_v2/src/assets/images/owl.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/Partner_org_BG.png b/frontend_v2/src/assets/images/partners/Partner_org_BG.png deleted file mode 100644 index 1a87d00b8d..0000000000 Binary files a/frontend_v2/src/assets/images/partners/Partner_org_BG.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/adelaide.png b/frontend_v2/src/assets/images/partners/adelaide.png deleted file mode 100644 index 5444f8e935..0000000000 Binary files a/frontend_v2/src/assets/images/partners/adelaide.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/aptiv.png b/frontend_v2/src/assets/images/partners/aptiv.png deleted file mode 100644 index 5b140ed3e6..0000000000 Binary files a/frontend_v2/src/assets/images/partners/aptiv.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/cmu.png b/frontend_v2/src/assets/images/partners/cmu.png deleted file mode 100644 index 5351b21aff..0000000000 Binary files a/frontend_v2/src/assets/images/partners/cmu.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/draper.png b/frontend_v2/src/assets/images/partners/draper.png deleted file mode 100644 index 5741b0c5ba..0000000000 Binary files a/frontend_v2/src/assets/images/partners/draper.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/ebay.png b/frontend_v2/src/assets/images/partners/ebay.png deleted file mode 100644 index a758367fe7..0000000000 Binary files a/frontend_v2/src/assets/images/partners/ebay.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/fb.png b/frontend_v2/src/assets/images/partners/fb.png deleted file mode 100644 index 1ab485b594..0000000000 Binary files a/frontend_v2/src/assets/images/partners/fb.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/google.png b/frontend_v2/src/assets/images/partners/google.png deleted file mode 100644 index 1ce3510d70..0000000000 Binary files a/frontend_v2/src/assets/images/partners/google.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/gt.png b/frontend_v2/src/assets/images/partners/gt.png deleted file mode 100644 index b0df47f5e8..0000000000 Binary files a/frontend_v2/src/assets/images/partners/gt.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/ibm.png b/frontend_v2/src/assets/images/partners/ibm.png deleted file mode 100644 index 77e98dd42f..0000000000 Binary files a/frontend_v2/src/assets/images/partners/ibm.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/iitm.png b/frontend_v2/src/assets/images/partners/iitm.png deleted file mode 100644 index b451de11ce..0000000000 Binary files a/frontend_v2/src/assets/images/partners/iitm.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/illinois.png b/frontend_v2/src/assets/images/partners/illinois.png deleted file mode 100644 index a77ad32767..0000000000 Binary files a/frontend_v2/src/assets/images/partners/illinois.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/intel.png b/frontend_v2/src/assets/images/partners/intel.png deleted file mode 100644 index 9f71c8240e..0000000000 Binary files a/frontend_v2/src/assets/images/partners/intel.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/ju.png b/frontend_v2/src/assets/images/partners/ju.png deleted file mode 100644 index a1d9b8c3e1..0000000000 Binary files a/frontend_v2/src/assets/images/partners/ju.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/mapillary.png b/frontend_v2/src/assets/images/partners/mapillary.png deleted file mode 100644 index a114993df1..0000000000 Binary files a/frontend_v2/src/assets/images/partners/mapillary.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/mit.png b/frontend_v2/src/assets/images/partners/mit.png deleted file mode 100644 index dc4d0c2adc..0000000000 Binary files a/frontend_v2/src/assets/images/partners/mit.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/nu.png b/frontend_v2/src/assets/images/partners/nu.png deleted file mode 100644 index 080f8716ec..0000000000 Binary files a/frontend_v2/src/assets/images/partners/nu.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/pitt.png b/frontend_v2/src/assets/images/partners/pitt.png deleted file mode 100644 index 48cc7ab938..0000000000 Binary files a/frontend_v2/src/assets/images/partners/pitt.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/siop.png b/frontend_v2/src/assets/images/partners/siop.png deleted file mode 100644 index b3ccad470a..0000000000 Binary files a/frontend_v2/src/assets/images/partners/siop.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/stanford.png b/frontend_v2/src/assets/images/partners/stanford.png deleted file mode 100644 index 1bd1225693..0000000000 Binary files a/frontend_v2/src/assets/images/partners/stanford.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/uiuc.png b/frontend_v2/src/assets/images/partners/uiuc.png deleted file mode 100644 index 067c81f369..0000000000 Binary files a/frontend_v2/src/assets/images/partners/uiuc.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/umbc.png b/frontend_v2/src/assets/images/partners/umbc.png deleted file mode 100644 index f93dda3dbf..0000000000 Binary files a/frontend_v2/src/assets/images/partners/umbc.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/partners/vt.png b/frontend_v2/src/assets/images/partners/vt.png deleted file mode 100644 index 6a300a1e17..0000000000 Binary files a/frontend_v2/src/assets/images/partners/vt.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/password_dark.png b/frontend_v2/src/assets/images/password_dark.png deleted file mode 100644 index 924788bacf..0000000000 Binary files a/frontend_v2/src/assets/images/password_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/plane.png b/frontend_v2/src/assets/images/plane.png deleted file mode 100644 index 776df6db5d..0000000000 Binary files a/frontend_v2/src/assets/images/plane.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/pro-pic.png b/frontend_v2/src/assets/images/pro-pic.png deleted file mode 100644 index 0de2b618d1..0000000000 Binary files a/frontend_v2/src/assets/images/pro-pic.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/profile.png b/frontend_v2/src/assets/images/profile.png deleted file mode 100644 index 0de2b618d1..0000000000 Binary files a/frontend_v2/src/assets/images/profile.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/roc.jpg b/frontend_v2/src/assets/images/roc.jpg deleted file mode 100644 index b82f31f80a..0000000000 Binary files a/frontend_v2/src/assets/images/roc.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/rocket.gif b/frontend_v2/src/assets/images/rocket.gif deleted file mode 100644 index c2d4d23bb6..0000000000 Binary files a/frontend_v2/src/assets/images/rocket.gif and /dev/null differ diff --git a/frontend_v2/src/assets/images/rocket.png b/frontend_v2/src/assets/images/rocket.png deleted file mode 100644 index 014d1fbf8e..0000000000 Binary files a/frontend_v2/src/assets/images/rocket.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/Host_icon.png b/frontend_v2/src/assets/images/rules/Host_icon.png deleted file mode 100644 index 0a111e3cdc..0000000000 Binary files a/frontend_v2/src/assets/images/rules/Host_icon.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/Laptop.png b/frontend_v2/src/assets/images/rules/Laptop.png deleted file mode 100644 index c812199d9f..0000000000 Binary files a/frontend_v2/src/assets/images/rules/Laptop.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/Participate.png b/frontend_v2/src/assets/images/rules/Participate.png deleted file mode 100644 index be5b2682e2..0000000000 Binary files a/frontend_v2/src/assets/images/rules/Participate.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/Rules_BG Ellipse.png b/frontend_v2/src/assets/images/rules/Rules_BG Ellipse.png deleted file mode 100644 index 97b59bde01..0000000000 Binary files a/frontend_v2/src/assets/images/rules/Rules_BG Ellipse.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/achieve icon.png b/frontend_v2/src/assets/images/rules/achieve icon.png deleted file mode 100644 index 9a7fbb4cfa..0000000000 Binary files a/frontend_v2/src/assets/images/rules/achieve icon.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/rules/submissions.png b/frontend_v2/src/assets/images/rules/submissions.png deleted file mode 100644 index 7f578a123c..0000000000 Binary files a/frontend_v2/src/assets/images/rules/submissions.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/sadcloud.png b/frontend_v2/src/assets/images/sadcloud.png deleted file mode 100644 index 660722188a..0000000000 Binary files a/frontend_v2/src/assets/images/sadcloud.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/sat.jpg b/frontend_v2/src/assets/images/sat.jpg deleted file mode 100644 index 8444d57c01..0000000000 Binary files a/frontend_v2/src/assets/images/sat.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/sate.jpg b/frontend_v2/src/assets/images/sate.jpg deleted file mode 100644 index 94b9bfde52..0000000000 Binary files a/frontend_v2/src/assets/images/sate.jpg and /dev/null differ diff --git a/frontend_v2/src/assets/images/spaceman.png b/frontend_v2/src/assets/images/spaceman.png deleted file mode 100644 index ce00aaaf1b..0000000000 Binary files a/frontend_v2/src/assets/images/spaceman.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/sponsors/aws.png b/frontend_v2/src/assets/images/sponsors/aws.png deleted file mode 100644 index 17ee317b19..0000000000 Binary files a/frontend_v2/src/assets/images/sponsors/aws.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/sponsors/gsoc.png b/frontend_v2/src/assets/images/sponsors/gsoc.png deleted file mode 100644 index ac580f599c..0000000000 Binary files a/frontend_v2/src/assets/images/sponsors/gsoc.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/star.gif b/frontend_v2/src/assets/images/star.gif deleted file mode 100644 index fd342b388e..0000000000 Binary files a/frontend_v2/src/assets/images/star.gif and /dev/null differ diff --git a/frontend_v2/src/assets/images/star.png b/frontend_v2/src/assets/images/star.png deleted file mode 100644 index 8c0fd34021..0000000000 Binary files a/frontend_v2/src/assets/images/star.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/star1.png b/frontend_v2/src/assets/images/star1.png deleted file mode 100644 index ce4b24625a..0000000000 Binary files a/frontend_v2/src/assets/images/star1.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/star2.png b/frontend_v2/src/assets/images/star2.png deleted file mode 100644 index 834b683cd2..0000000000 Binary files a/frontend_v2/src/assets/images/star2.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/sun.png b/frontend_v2/src/assets/images/sun.png deleted file mode 100644 index cc84bddd32..0000000000 Binary files a/frontend_v2/src/assets/images/sun.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/team-over.png b/frontend_v2/src/assets/images/team-over.png deleted file mode 100644 index cfb790dd5d..0000000000 Binary files a/frontend_v2/src/assets/images/team-over.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/teaser.png b/frontend_v2/src/assets/images/teaser.png deleted file mode 100644 index a53a6f3e56..0000000000 Binary files a/frontend_v2/src/assets/images/teaser.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/testimonials/Testimonial.png b/frontend_v2/src/assets/images/testimonials/Testimonial.png deleted file mode 100644 index b3188c8694..0000000000 Binary files a/frontend_v2/src/assets/images/testimonials/Testimonial.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/testimonials/arrow.png b/frontend_v2/src/assets/images/testimonials/arrow.png deleted file mode 100644 index 82a0de2b38..0000000000 Binary files a/frontend_v2/src/assets/images/testimonials/arrow.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/testimonials/quotes.png b/frontend_v2/src/assets/images/testimonials/quotes.png deleted file mode 100644 index 1869c1847e..0000000000 Binary files a/frontend_v2/src/assets/images/testimonials/quotes.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/twitter.png b/frontend_v2/src/assets/images/twitter.png deleted file mode 100644 index ba65e6350b..0000000000 Binary files a/frontend_v2/src/assets/images/twitter.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/twitter_black.png b/frontend_v2/src/assets/images/twitter_black.png deleted file mode 100644 index 02816933c7..0000000000 Binary files a/frontend_v2/src/assets/images/twitter_black.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/twitter_dark.png b/frontend_v2/src/assets/images/twitter_dark.png deleted file mode 100644 index 933466b33e..0000000000 Binary files a/frontend_v2/src/assets/images/twitter_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/username_dark.png b/frontend_v2/src/assets/images/username_dark.png deleted file mode 100644 index 710a946e36..0000000000 Binary files a/frontend_v2/src/assets/images/username_dark.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/vqa.png b/frontend_v2/src/assets/images/vqa.png deleted file mode 100644 index fffd938e6c..0000000000 Binary files a/frontend_v2/src/assets/images/vqa.png and /dev/null differ diff --git a/frontend_v2/src/assets/images/wide.jpg b/frontend_v2/src/assets/images/wide.jpg deleted file mode 100644 index 9b0ff4680d..0000000000 Binary files a/frontend_v2/src/assets/images/wide.jpg and /dev/null differ diff --git a/frontend_v2/src/environments/environment.prod.ts b/frontend_v2/src/environments/environment.prod.ts deleted file mode 100644 index e8736fd7f1..0000000000 --- a/frontend_v2/src/environments/environment.prod.ts +++ /dev/null @@ -1,12 +0,0 @@ -// The file contents for the current environment will overwrite these during build. -// The build system defaults to the dev environment which uses `environment.ts`, but if you do -// `ng build --env=prod` then `environment.prod.ts` will be used instead. -// The list of which env maps to which file can be found in `.angular-cli.json`. - -/** - * Environment URL for production - */ -export const environment = { - production: true, - api_endpoint: 'https://eval.ai/api/' -}; diff --git a/frontend_v2/src/environments/environment.staging.ts b/frontend_v2/src/environments/environment.staging.ts deleted file mode 100644 index 68413cea57..0000000000 --- a/frontend_v2/src/environments/environment.staging.ts +++ /dev/null @@ -1,12 +0,0 @@ -// The file contents for the current environment will overwrite these during build. -// The build system defaults to the dev environment which uses `environment.ts`, but if you do -// `ng build --env=prod` then `environment.prod.ts` will be used instead. -// The list of which env maps to which file can be found in `.angular-cli.json`. - -/** - * Environment URL for staging - */ -export const environment = { - production: true, - api_endpoint: 'https://staging.eval.ai/api/', -}; diff --git a/frontend_v2/src/environments/environment.ts b/frontend_v2/src/environments/environment.ts deleted file mode 100644 index 4b7008136f..0000000000 --- a/frontend_v2/src/environments/environment.ts +++ /dev/null @@ -1,12 +0,0 @@ -// The file contents for the current environment will overwrite these during build. -// The build system defaults to the dev environment which uses `environment.ts`, but if you do -// `ng build --env=prod` then `environment.prod.ts` will be used instead. -// The list of which env maps to which file can be found in `.angular-cli.json`. - -/** - * Environment URL for local development - */ -export const environment = { - production: false, - api_endpoint: 'http://localhost:8000/api/', -}; diff --git a/frontend_v2/src/favicon.ico b/frontend_v2/src/favicon.ico deleted file mode 100644 index 4a8cece4bb..0000000000 Binary files a/frontend_v2/src/favicon.ico and /dev/null differ diff --git a/frontend_v2/src/index.html b/frontend_v2/src/index.html deleted file mode 100644 index 372937d073..0000000000 --- a/frontend_v2/src/index.html +++ /dev/null @@ -1,33 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> - <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" /> - <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> - <meta charset="utf-8" /> - <title>EvalAI - - - - - - - - - - - - - - - - diff --git a/frontend_v2/src/main.ts b/frontend_v2/src/main.ts deleted file mode 100644 index df7b2e7b17..0000000000 --- a/frontend_v2/src/main.ts +++ /dev/null @@ -1,14 +0,0 @@ -import 'hammerjs'; -import { enableProdMode } from '@angular/core'; -import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; - -import { AppModule } from './app/app.module'; -import { environment } from './environments/environment'; - -if (environment.production) { - enableProdMode(); -} - -platformBrowserDynamic() - .bootstrapModule(AppModule) - .catch((err) => console.log(err)); diff --git a/frontend_v2/src/polyfills.ts b/frontend_v2/src/polyfills.ts deleted file mode 100644 index 9440f4bc85..0000000000 --- a/frontend_v2/src/polyfills.ts +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Required to support Web Animations `@angular/platform-browser/animations`. - * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation - **/ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - -/*************************************************************************************************** - * Zone JS is required by default for Angular itself. - */ -import 'zone.js/dist/zone'; // Included with Angular CLI. - -/*************************************************************************************************** - * APPLICATION IMPORTS - */ diff --git a/frontend_v2/src/styles/base.scss b/frontend_v2/src/styles/base.scss deleted file mode 100644 index 027c13716a..0000000000 --- a/frontend_v2/src/styles/base.scss +++ /dev/null @@ -1,2222 +0,0 @@ -/*Add global styles here*/ - -@import './variables.scss'; -@import './mixins.scss'; -@import './grid.scss'; -@import './font.scss'; -@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700'); -@import './theming.scss'; -@import '~quill/dist/quill.core.css'; -@import '~quill/dist/quill.bubble.css'; -@import '~quill/dist/quill.snow.css'; - -body { - font-family: 'Roboto', sans-serif; - background-color: #fafafa; - * { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - } -} - -.timeline-Widget { - background: rgba(214, 220, 226, 0.28) !important; -} - -.content { - line-height: 24px; - letter-spacing: 0.1px; - font-size: 16px; - color: $overlay-darker; - flex: 1; - padding-top: 10px; -} - -.display-flex { - display: flex; -} - -.go { - -webkit-animation-fill-mode: forwards; -} - -.rm-margin { - margin: 0px; -} - -.rm-pad { - padding: 0 !important; -} - -.rm-pad-top { - padding-top: 0 !important; -} - -.rm-pad-btm { - padding-btm: 0 !important; -} - -.rm-pad-rt { - padding-right: 0 !important; -} - -.rm-pad-lt { - padding-left: 0 !important; -} - -.result-wrn { - margin-top: 15px; - margin-bottom: 20px; -} - -/* Margins */ - -.ev-mt-50 { - margin-top: 50px; -} - -.ev-mt-17 { - margin-top: 17px; -} - -.ev-mb-13 { - margin-bottom: 13px; -} - -/* Text Utilities */ - -.capitalize { - text-transform: capitalize; -} - -.uppercase { - text-transform: uppercase; -} - -.lowercase { - text-transform: lowercase; -} - -/*scrollbar customization*/ -::-webkit-scrollbar { - width: 4px; - border-radius: 10px; - height: 3px; -} - -::-webkit-scrollbar-thumb:vertical { - background-color: #adb4d0; - border-radius: 10px; -} - -/** Pad and margin*/ -.row-lr-margin { - margin-left: 0px; - margin-right: 0px; -} - -.col-lr-pad { - padding-left: 12px; - padding-right: 12px; -} - -.mb-10 { - margin-bottom: 10px; -} - -.rm-margin { - margin: 0px; -} - -.rm-pad { - padding: 0px; -} - -.rm-margin { - margin: 0px !important; -} - -/*Font weights*/ - -.fw-light, -.w-300 { - font-weight: $fw-light; -} - -.fw-regular { - font-weight: $fw-regular; -} - -.fw-semibold { - font-weight: $fw-semibold; -} - -.fw-bold { - font-weight: $fw-bold; -} - -.fw-bolder { - font-weight: $fw-bolder; -} - -/*Font sizes*/ - -.fs-12 { - font-size: $fs-12; -} - -.fs-14 { - font-size: $fs-14; -} - -.fs-15 { - font-size: $fs-15; -} - -.fs-16 { - font-size: $fs-16; -} - -.fs-18 { - font-size: $fs-18; -} - -.fs-20 { - font-size: $fs-20; -} - -.fs-22 { - font-size: $fs-22; -} - -.fs-24 { - font-size: $fs-24; -} - -.fs-34 { - font-size: $fs-34; -} - -.fs-36 { - font-size: $fs-36; -} - -/* Angular material select styles */ -mat-label { - color: rgba(0, 0, 0, 0.38); - font-size: 15px; -} - -.mat-form-field-appearance-legacy .mat-form-field-underline { - background-color: rgba(0, 0, 0, 0.12) !important; -} - -.phase-select-box { - .mat-form-field-infix { - width: 478px !important; - } - - .input-group .input-field { - padding: 0px !important; - margin-top: 0px !important; - } -} - -.mat-select-trigger { - line-height: 24px; - letter-spacing: 0.1px; - font-size: 15px; - color: rgba(0, 0, 0, 0.87); -} - -@include screen-medium { - .phase-select-box { - .mat-form-field-infix { - width: 400px !important; - } - } -} - -@include screen-small-medium { - .phase-select-box { - .mat-form-field-infix { - width: 300px !important; - } - } -} - -@include screen-small { - .phase-select-box { - .mat-form-field-infix { - width: 220px !important; - } - } -} - -.all-submissions-file { - .mat-form-field-infix { - width: 144px !important; - } -} - -.custom-field-export { - .mat-form-field-infix { - width: 311px !important; - } -} - -@include screen-medium { - .download-submissions { - margin-left: 50px; - } - - .custom-field-export { - .mat-form-field-infix { - width: 270px !important; - } - } - - .all-submissions-file { - .mat-form-field-infix { - width: 110px !important; - } - } -} - -@include screen-small-medium { - .download-submissions { - margin-left: 40px; - } - - .custom-field-export { - .mat-form-field-infix { - width: 195px !important; - } - } - - .all-submissions-file { - .mat-form-field-infix { - width: 75px !important; - } - } -} - -/**Rich text editor styles*/ -.reusable-editor.fr-box.fr-basic .fr-element { - height: 320px; -} - -.edit-phase-editor.fr-box.fr-basic .fr-element { - height: 220px; -} - -.edit-global-modal.fr-box.fr-basic .fr-element { - width: 800px; - height: 320px; -} - -.second-toolbar a { - display: none; -} - -.editor-validation-message { - color: $highlight; - margin-bottom: 20px; -} - -/* Chip Styles */ - -.mat-form-field-infix { - padding: 0px !important; -} - -mat-chip-list { - display: inline-block; -} - -mat-chip { - color: #fff !important; - background: $yellow !important; - border-radius: 2px !important; - min-height: 25px !important; -} - -/* Refresh list page */ - -.update-page { - display: block; - z-index: 1; - background: $dark-gray; - overflow: auto; - padding: 10px; - text-align: center; - color: #fff; - position: absolute; - width: auto; - right: 0; - padding: 10px 30px; - box-shadow: 2px 2px 9px #6d6d6d; - border-radius: 3px 0px 0px 3px; - font-weight: $fw-light; - transition: all 0.2s ease-in-out; - &:hover { - box-shadow: -1px 0px 9px #bbbbbb; - } -} - -/**File field styles*/ - -.file-field { - position: relative; -} - -.file-field .btn { - float: left; - height: 3rem; - line-height: 3rem; -} - -.file-field input[type='file'] { - position: absolute; - top: 0; - right: 0; - left: 0; - bottom: 0; - width: 100%; - margin: 0; - padding: 0; - font-size: 20px; - cursor: pointer; - opacity: 0; - filter: alpha(opacity=0); -} - -.file-field .file-path-wrapper { - overflow: hidden; - padding-left: 10px; -} - -.file-path-wrapper input[type='text'] { - background-color: transparent; - border: none; - border-bottom: 1px solid #9e9e9e; - border-radius: 0; - outline: none; - height: 3rem; - width: 100%; - font-size: 1rem; - padding: 0; - box-shadow: none; - box-sizing: content-box; - transition: all 0.3s; -} - -/*card styles*/ - -.ev-card-panel { - position: relative; - display: block; - background-color: #fff; - width: 100%; - height: auto; - border-radius: 4px; - overflow: hidden; - box-shadow: 0px 0px 12px $shadow-black; - text-align: justify; -} - -.ev-md-container { - padding: 20px 30px 30px 30px; -} - -.bottom-card-container { - padding: 40px; -} - -.card-bt-margin { - margin-bottom: 20px; -} - -.bottom-hr-line { - border-bottom: 1px solid $gray; -} - -.ev-card-body { - padding: 10px 30px; -} - -.no-pad-lr { - padding-left: 0px; - padding-right: 0px; -} - -/* ul list styles */ - -ul { - list-style-type: none; -} - -li { - margin-bottom: 1.5%; -} - -li:last-child { - margin-bottom: 0px; -} - -.exist-team-card ul.collapsible { - border: 0; - box-shadow: none; -} - -.exist-team-card ul.collapsible li { - box-shadow: 0 0 5px #e0e0e0; -} - -.exist-team-card ul li { - margin: 20px 0px; - min-height: 40px; -} - -.exist-team-card ul li .collapsible-header { - border-bottom: 0; - line-height: initial; - min-height: initial; - padding: 10px 5px; -} - -.exist-team-card ul li .collapsible-header i { - display: inline-block; - float: none; - font-size: initial; - line-height: 40px; - margin-right: 0; - text-align: center; - width: 2rem; -} - -.exist-team-card ul li .collapsible-body { - background-color: #fafafa; - border-top: 1px solid #e0e0e0; - padding: 10px 40px; -} - -.exist-team-card ul li .collapsible-body p { - padding: 3px 0; -} - -.exist-team-card i.list-icon { - line-height: 25px; -} - -/*grad button style*/ - -.grad-btn { - border-radius: 20px; -} - -.grad-rec-btn { - border-radius: 2px !important; -} - -.grad-btn-dark { - background: $med-gray; - font-weight: $fw-regular; - color: #fff; - box-shadow: 0px 4px 8px $gray-dark; - &:hover { - box-shadow: 0px 0px 8px $gray-dark; - } -} - -.submit-upload-file { - .file-path-wrapper { - input { - color: black !important; - } - } - .input-group .file-field .btn { - background: $dark-gray !important; - color: #fff !important; - box-shadow: 0px 4px 8px #9d9d9d !important; - &:hover { - box-shadow: 0px 0px 8px #9d9d9d !important; - background: $med-gray !important; - } - } -} - -.grad-btn-light { - background: $highlight; - font-weight: $fw-regular; - color: #fff; - box-shadow: 0px 4px 8px $gray-dark; - &:hover { - box-shadow: 0px 0px 8px $gray-dark; - background: $highlight; - } -} - -.grad-btn-transparent { - background-color: rgba(0, 0, 0, 0) !important; - font-weight: $fw-regular; - color: $med-gray; - border: 1px solid $med-gray !important; - box-shadow: 0px 4px 8px transparent; - &:hover { - box-shadow: 0px 0px 8px $gray-dark !important; - background: $med-gray !important; - color: #fff; - } -} - -.btn-waves-effect { - border: none; - position: relative; - cursor: pointer; - display: inline-block; - overflow: hidden; - user-select: none; - -webkit-tap-highlight-color: transparent; - vertical-align: middle; - z-index: 1; - will-change: opacity, transform; - transition: 0.3s ease-out; -} - -.ev-btn { - padding: 13px 33px 13px 33px; -} - -.ev-btn-dark { - background: #252833; -} - -.ev-file-btn-dark { - padding: 0 32px; - border: none; - background: #252833; -} - -.ev-btn-dark:hover { - background: #3c3e49; -} - -.ev-btn-dark:focus { - background-color: $dark-gray !important; -} - -/* checkbox styles */ -[type='checkbox'] + label { - position: relative; - padding-left: 35px; - cursor: pointer; - display: inline-block; - height: 25px; - line-height: 25px; - font-size: 1rem; - -webkit-user-select: none; - -moz-user-select: none; - -khtml-user-select: none; - -ms-user-select: none; -} - -[type='checkbox']:not(:checked), -[type='checkbox']:checked { - position: absolute; - left: -9999px; - opacity: 0; -} - -input[type='checkbox'] { - box-sizing: border-box; - padding: 0; -} - -input[type='checkbox'] + label { - color: $light-gray; - font-size: 0.8em; - font-weight: $fw-regular; -} - -input[type='checkbox'].filled-in:checked + label:after { - width: 17px; - height: 17px; - border: 1px solid #ffaf4b; - background-color: #ffaf4b; -} - -[type='checkbox'].filled-in:checked + label:after { - top: 0; - width: 20px; - height: 20px; - border: 2px solid #26a69a; - background-color: #26a69a; - z-index: 0; -} - -[type='checkbox'].filled-in:checked + label:before { - top: 0; - left: 1px; - width: 8px; - height: 13px; - border-top: 2px solid transparent; - border-left: 2px solid transparent; - border-right: 2px solid #fff; - border-bottom: 2px solid #fff; - -webkit-transform: rotateZ(37deg); - transform: rotateZ(37deg); - -webkit-transform-origin: 100% 100%; - transform-origin: 100% 100%; -} - -[type='checkbox'].filled-in + label:before, -[type='checkbox'].filled-in + label:after { - content: ''; - left: 0; - position: absolute; - transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s; - z-index: 1; -} - -[type='checkbox'].filled-in + label:after { - border-radius: 2px; -} - -input[type='checkbox'].filled-in:checked + label:after { - width: 17px; - height: 17px; - border: 1px solid $yellow; - background-color: $yellow; -} - -input[type='checkbox'] + label { - padding-left: 24px; - line-height: 20px; -} - -input[type='checkbox'].filled-in:checked + label:before { - top: 0; - left: 2px; - width: 5px; - height: 11px; -} - -input[type='checkbox'].filled-in:not(:checked) + label:after { - width: 17px; - height: 17px; - border: 1px solid $light-gray; - background-color: transparent; -} - -[type='checkbox'].filled-in:not(:checked) + label:before { - border: 3px solid transparent; - -webkit-transform: rotateZ(37deg); - transform: rotateZ(37deg); - -webkit-transform-origin: 20% 40%; - transform-origin: 100% 100%; -} - -[type='checkbox'] + label:before, -[type='checkbox']:not(.filled-in) + label:after { - content: ''; - position: absolute; - top: 0; - left: 0; - width: 18px; - height: 18px; - z-index: 0; - border: 2px solid #5a5a5a; - border-radius: 1px; - margin-top: 2px; - transition: 0.2s; -} - -*, -*:before, -*:after { - box-sizing: inherit; -} - -input[type='checkbox'].filled-in:not(:checked) + label:after { - width: 17px; - height: 17px; - border: 1px solid #adb4d0; - background-color: transparent; -} - -/* radio button styles */ - -[type='radio']:not(:checked), -[type='radio']:checked { - position: absolute; - left: -9999px; - opacity: 0; -} - -[type='radio']:not(:checked) + label, -[type='radio']:checked + label { - position: relative; - padding-left: 35px; - cursor: pointer; - display: inline-block; - height: 25px; - line-height: 25px; - font-size: 1rem; - transition: 0.28s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -label { - font-size: 0.8rem; - color: #9e9e9e; -} - -[type='radio']:checked + label:after, -[type='radio'].with-gap:checked + label:before, -[type='radio']:not(:checked) + label:before, -[type='radio']:not(:checked) + label:after { - border: 2px solid #5a5a5a; -} -[type='radio']:not(:checked) + label:before, -[type='radio']:not(:checked) + label:after, -[type='radio'].with-gap:checked + label:before, -[type='radio'].with-gap:checked + label:after { - border-radius: 50%; -} -[type='radio']:checked + label:before { - border: 2px solid transparent; -} -[type='radio'] + label:before, -[type='radio'] + label:after { - content: ''; - position: absolute; - left: 0; - top: 0; - margin: 4px; - width: 16px; - height: 16px; - z-index: 0; - transition: 0.28s ease; -} - -[type='radio'].with-gap:checked + label:after { - -webkit-transform: scale(0.5); - transform: scale(0.5); -} - -[type='radio'].with-gap:checked + label:after { - background-color: #252833; -} - -[type='radio']:checked + label:after, -[type='radio'].with-gap:checked + label:before, -[type='radio'].with-gap:checked + label:after { - border: 2px solid #252833; -} - -[type='radio']:checked + label:after { - -webkit-transform: scale(1.02); - transform: scale(1.02); -} - -[type='radio'] + label:before, -[type='radio'] + label:after { - content: ''; - position: absolute; - left: 0; - top: 0; - margin: 4px; - width: 16px; - height: 16px; - z-index: 0; - transition: 0.28s ease; -} - -*, -*:before, -*:after { - box-sizing: inherit; -} - -.radio-button-text { - width: calc(100% - 35px); -} - -/*icon colors*/ - -.red-text { - color: #f44336; -} - -.blue-text { - color: #2196f3 !important; -} - -.green-text { - color: #4caf50; -} - -.text-highlight { - color: $yellow; -} - -.orange-background { - background-color: #ffaf4b !important; -} - -.submitted, -.finished { - color: #4caf50; -} - -.running, -.submitting { - color: orange; -} - -.failed, -.cancelled { - color: red; -} - -/*anchors*/ - -a { - color: #3c3e49; - transition: all 0.2s ease-in-out; - text-decoration: none; - cursor: pointer; - &:hover { - // color: $red-dark; - } - &:focus, - &:active { - text-decoration: none; - } -} - -a:active, -a:hover { - outline: 0; -} - -a.light-link { - color: $red-light; - transition: all 0.2s ease-in-out; - &:hover { - color: white; - } -} - -a.dark-link:hover { - color: #ffaf4b; -} - -a.text-light-black:hover { - color: #ffaf4b; -} - -a.active-challenge { - color: #4d4d4d; - display: block; - height: 40px; - box-sizing: border-box; - border-bottom: 2px solid #ffaf4b; -} - -.pointer { - cursor: pointer; - outline: none; -} - -.challenge-description a, -.evaluation-details a, -.terms-and-conditions a, -.phase-description a, -.submission-guidelines a { - color: #2196f3; - cursor: pointer; -} - -/*list styles*/ - -ul { - &.inline-list { - display: inline-block; - margin: 0; - padding: 0; - li { - display: inline-block; - margin: 0 15px 0 20px; - } - &.left-list { - li { - margin-left: 0; - } - } - &.right-list { - li { - margin-right: 0; - } - } - } - &.right-nav { - margin-top: 7px; - } -} - -/*alignment*/ - -.left { - float: left; -} - -.right { - float: right; -} - -.clear-fix { - clear: both; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/*color*/ - -.white { - color: white; -} - -.red-dark { - color: $red-dark; -} - -/*container*/ - -.container { - position: relative; - z-index: 1; - padding: 15px 40px; -} - -.container-top { - padding-top: 100px; -} - -@include screen-medium { - .container-top { - padding-top: 200px; - } -} - -@include screen-small { - .container-top { - padding-top: 100px; - } -} - -/*rocket-container*/ - -.rocket-container { - position: relative; -} - -/* media queries for rocket container */ -@media only screen and (max-width: $screen-sm-md) { - .rocket-container { - display: none; - } -} - -@keyframes rocket { - 0% { - transform: rotate(4deg); - } - 100% { - transform: rotate(-4deg); - } -} - -.cloud-1 { - width: 80px; - position: absolute; - right: 0; - top: -1px; - animation: cloud-one 7s linear infinite; -} -.cloud-1 img { - width: 100%; -} - -@keyframes cloud-one { - 0% { - top: -100px; - } - 100% { - top: 100vh; - } -} - -.cloud-2 { - width: 100px; - position: absolute; - right: 150px; - top: -140px; - animation: cloud-two 10s linear infinite; - animation-delay: 5s; -} -.cloud-2 img { - width: 100%; -} - -@keyframes cloud-two { - 0% { - top: -140px; - } - 100% { - top: 100vh; - } -} - -.cloud-3 { - width: 100px; - position: absolute; - right: -60px; - top: -120px; - animation: cloud-three 8s linear infinite; -} -.cloud-3 img { - width: 100%; -} - -@keyframes cloud-three { - 0% { - top: -120px; - } - 100% { - top: 100vh; - } -} - -.cloud-4 { - width: 100px; - position: absolute; - right: 120px; - top: -120px; - animation: cloud-four 14s linear infinite; -} -.cloud-4 img { - width: 100%; -} - -@keyframes cloud-four { - 0% { - top: -80px; - } - 100% { - top: 100vh; - } -} - -.bird-anim { - width: 200px; - position: absolute; - right: 0px; - top: -300px; - animation: bird 15s linear infinite; - animation-delay: 4s; -} -.bird-anim img { - width: 100%; -} - -@keyframes bird { - 0% { - top: -300px; - } - 100% { - top: 100vh; - } -} - -.rocket-anim { - width: 150px; - padding-right: 50px; - position: absolute; - left: 62%; - z-index: 0; - /* margin: auto; */ - margin-top: 21vh; - animation: rocket 3s alternate infinite; -} -.rocket-anim img { - width: 100%; -} - -.small-cloud { - z-index: 0; -} - -/* Code styles */ -code { - font-family: Roboto; - font-size: 14px; - font-weight: $fw-light; - background: #eff0f1; - border: #eff0f1 dashed 1px; - padding: 6px; - border-radius: 10px; - display: inline-block; - max-width: 90%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.code-btn { - height: 100% !important; - padding: 0 0.5rem !important; - line-height: 200% !important; - margin-left: 5px; - margin-top: -25px !important; -} - -.code-btn { - .fa-clipboard { - color: #fff; - } -} - -/*Buttons*/ - -.btn { - margin-right: 10px; - margin-top: 5px; - margin-bottom: 5px !important; - text-align: center; - cursor: pointer; - display: inline-block; - transition: all 0.3s ease; - font-size: $fs-14; - text-transform: none; - font-family: 'Roboto'; - i { - font-size: $fs-14; - } -} - -.btn:hover { - cursor: pointer; - background-color: $dark-gray !important; -} - -.btn:disabled { - background-color: #dfdfdf !important; - box-shadow: none; - color: #9f9f9f !important; - cursor: default; -} - -.btn-nofill { - padding: 10px 30px 10px 30px; - border: 1px solid white; - color: white; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - &:hover { - background: $gray-light !important; - border: 1px solid $gray-light; - color: black; - @include box-shadow(0px, 0px, 10px, 0px, $overlay-light); - } -} - -.btn-fire { - padding: 13px 33px 13px 33px; - border: none; - color: white; - @include linear-gradient-bg(-90deg, $fire-right, $fire-left); - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - &:hover { - @include linear-gradient-bg(-90deg, $fire-left, $fire-right); - @include box-shadow(0px, 0px, 10px, 0px, $overlay-light); - } -} - -.btn-fill { - padding: 10px 30px 10px 30px; - border: 1.5px solid white; - background: white; - color: $blue-dark; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - &:hover { - @include box-shadow(0px, 0px, 10px, 0px, $overlay-light); - border: 1.5px solid $gray-light; - background: $gray-light !important; - color: black; - } -} - -.btn-filter { - color: $gray-darker; - &.selected { - background-color: rgba(0, 0, 0, 0); - font-weight: $fw-regular; - color: $med-gray; - border: 1px solid $med-gray; - box-shadow: 0px 4px 8px transparent; - &:hover { - box-shadow: 0px 0px 8px #9d9d9d; - background: $med-gray !important; - color: #fff; - } - } -} - -/*Card*/ - -.card { - margin: 20px; - margin-bottom: 40px; - border-radius: 5px; - font-weight: $fw-light; - font-size: $fs-16; - overflow: auto; - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - hr { - border-top: 1px solid $overlay-light; - border-bottom: 0px; - } - &.card-light { - color: $gray-darker; - background: white; - &.selected { - @include box-shadow(0px, 0px, 10px, 1px, $overlay-light); - } - } - .card-title { - padding: 30px 30px 15px 30px; - font-size: $fs-24; - font-weight: $fw-regular; - color: $gray-darker; - overflow: auto; - } - .card-content { - line-height: 20px; - letter-spacing: 0.5px; - overflow: auto; - padding: 15px 22px 30px 22px; - h5 { - font-size: $fs-18; - } - - a { - color: $red-light; - } - } -} - -/* Modal */ - -.modal-container { - width: 100%; - height: 100%; - position: fixed; - top: 0; - left: 0; - background: $overlay-medium; - z-index: 100; - .modal-card { - @include box-shadow(0px, 0px, 5px, 0px, $overlay-light); - border-radius: 2px; - background: white; - position: fixed; - top: 55%; - left: 50%; - max-height: 585px !important; - z-index: 999; - transform: translate(-50%, -50%); - font-size: $fs-16; - color: $overlay-darker; - padding: 30px; - .modal-wrapper { - height: 100%; - .title { - color: $med-black; - padding: 10px; - font-size: $fs-18; - font-weight: $fw-light; - } - .content { - padding: 10px; - } - .form { - padding: 10px; - } - .buttons { - position: fixed; - bottom: 0; - left: 0; - width: 100%; - background: #fff; - padding: 10px; - text-align: right; - } - .modal-content { - overflow-y: auto; - max-height: 485px; - } - } - } -} - -.modal-inputs { - .input-group .input-field { - padding: 0px !important; - margin-top: 0px !important; - } -} - -@include screen-small { - .modal-container { - .modal-card { - width: 300px; - } - } -} - -/* Table */ - -table, -th, -td { - border: none; - border-collapse: collapse; - border-spacing: 0; -} - -table { - width: 100%; -} - -table.centered { - text-align: center; -} - -thead { - border-bottom: 1px solid #d0d0d0; -} - -tr { - border-bottom: 1px solid #d0d0d0; -} - -td, -th { - padding: 15px 5px; - display: table-cell; - vertical-align: middle; - border-radius: 2px; -} - -.table-scroll { - overflow-x: scroll; -} - -/* Pagination styles */ -.pagination { - button { - border: none; - } - margin-top: 20px; - .row { - margin-bottom: 20px; - } -} - -.pagination-title { - padding: 0px 10px; -} - -.btn-floating { - display: inline-block; - color: #fff; - position: relative; - overflow: hidden; - z-index: 1; - width: 40px; - height: 40px; - line-height: 40px; - padding: 0; - border-radius: 50%; - transition: 0.3s; - cursor: pointer; - vertical-align: middle; -} - -.btn-floating i { - width: inherit; - display: inline-block; - text-align: center; - color: #fff; - line-height: 40px; -} - -/*pagination*/ - -.btn-pagination { - background-color: $highlight; - i { - font-size: 16px; - } -} - -.btn-pagination:hover { - background-color: $highlight; - i { - font-size: 16px; - } -} - -.btn.disabled, -.btn-floating.disabled, -.btn-floating:disabled { - pointer-events: none; - background-color: #dfdfdf !important; - box-shadow: none; - color: #9f9f9f !important; - cursor: default; -} - -/*Navigation*/ - -.horizontal-nav { - white-space: nowrap; - overflow-x: scroll; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - margin: 10px; - padding-top: 10px; - a { - display: inline-block; - padding: 20px 0px 20px 0px; - margin-left: 30px; - font-size: $fs-16; - color: $gray-dark; - font-weight: $fw-light; - &.selected { - color: $red-light; - font-weight: $fw-regular; - border-bottom: 2px solid $red-light; - } - } -} - -/* Checkbox */ - -.cbx-label { - position: relative; - display: block; - height: 15px; - width: 30px; - background: $gray-dark; - border-radius: 100px; - cursor: pointer; - transition: all 0.3s ease; - &:after { - position: absolute; - left: -2px; - top: -3px; - display: block; - width: 20px; - height: 20px; - border-radius: 100px; - background: white; - border-top: 1px solid rgba(0, 0, 0, 0.05); - box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05); - content: ''; - transition: all 0.3s ease; - &:active { - transform: scale(1.15, 0.85); - } - } -} - -.cbx:checked ~ .cbx-label { - background: $red-light; -} - -.cbx:checked ~ .cbx-label:after { - left: 20px; - background: $red-lighter; -} - -.cbx:disabled ~ .cbx-label { - background: $gray-light; - pointer-events: none; -} - -.cbx:disabled ~ .cbx-label:after { - background: $gray-lighter; -} - -.text-light-black { - color: #9d9d9d; -} - -.text-med-black { - color: $med-black; -} - -.text-dark-black { - color: $dark-black; -} - -.text-white { - color: #fff; -} - -.text-light-gray { - color: $light-gray; -} - -.text-med-gray { - color: #3c3e49; -} - -.text-dark-gray { - color: #252833; -} - -.orange-text { - color: $orange; -} - -.challenge-card { - margin: 0 10px -30px 10px; - padding: 20px; -} - -.selected { - height: 30px; - border-bottom: 2px solid #ffaf4b; - display: block; - color: #4d4d4d; -} - -/*position default*/ - -.ev-fixed { - position: fixed; -} - -.display-small { - display: none; -} - -/* autofill transparent */ - -input:-webkit-autofill, -input:-webkit-autofill:hover, -input:-webkit-autofill:focus, -input:-webkit-autofill:active { - transition: background-color 5000s ease-in-out 0s; - -webkit-text-fill-color: #ffffff !important; -} - -input.dark-autofill:-webkit-autofill, -input.dark-autofill:-webkit-autofill:hover, -input.dark-autofill:-webkit-autofill:focus, -input.dark-autofill:-webkit-autofill:active { - transition: background-color 5000s ease-in-out 0s; - -webkit-text-fill-color: #4d4d4d !important; -} - -body, -html { - font-family: 'Roboto'; -} - -a { - cursor: pointer; - color: $med-gray; -} - -p.no-top-para { - margin-top: 2px; -} - -.rm-row-bot { - margin-bottom: 0px; -} - -span.inline { - p { - display: inline; - } -} - -/*clearfix*/ - -.clearfix { - clear: both; - content: ''; -} - -/*bg color*/ - -.white-bg { - background-color: #fff; -} - -.ev-dark-bg { - background-color: $dark-gray; -} - -.ev-super-light-bg { - background-color: $grad-super-light; -} - -/*main intro page*/ - -.ev-container { - width: 100%; - padding: 20px 40px; - position: relative; - color: #fff; -} - -.ev-sm-container { - padding: 10px 20px; -} - -.padding-lr-header { - padding: 0px 100px; -} - -a.active { - color: $link-hover-dark; - background-color: rgba(0, 0, 0, 0.1); -} - -nav { - ul { - li { - a { - transition: all 0.2s ease-in-out; - &:hover { - background-color: rgba(0, 0, 0, 0); - } - } - } - } -} - -.ev-btn-scroll { - background: #252833; - border-radius: 50%; - position: fixed; - font-size: 16px; - color: white; - height: 50px; - width: 50px; - text-align: center; - padding: 10px; - z-index: 20; - left: 90%; - cursor: pointer; - box-shadow: 0px 4px 8px #9d9d9d; -} - -.ev-btn-scroll:hover { - box-shadow: 0px 0px 8px #9d9d9d; - background: #3c3e49; -} - -.ev-btn-light { - background: #ffffff; -} - -.ev-btn-light:hover { - background: $light-gray; -} - -/*logs display style*/ -.ev-logs-card { - height: 600px; - padding: 15px; - color: white; - position: relative; - display: block; - background-color: #262626; - width: 100%; - border-radius: 4px; - overflow-y: scroll; - box-shadow: 0px 0px 12px $shadow-black; -} - -.ev-logs { - font-family: 'Courier'; - font-weight: bold; - padding: 5px; -} - -/*grad button style*/ - -.view-container { - min-height: 100vh; -} - -.grad-container { - max-width: 1400px; - margin: 0 auto; - padding: 60px 100px 40px 100px; - clear: both; -} - -.rm-grad-pad { - padding: 30px 100px 30px 100px; -} - -.grad-span { - display: inline; -} - -/*media queries*/ - -@media screen and (max-width: $med-screen) { - .grad-container { - padding: 40px; - } -} - -@media screen and (max-width: $small-screen) { - .grad-container { - text-align: center; - } -} - -/*card styles*/ - -.ev-card-content { - padding: 10px; -} - -.ev-panel-title { - border-bottom: 1px solid $border-color-light; -} - -.ev-card-image { - background: $dark-gray; - height: 150px; - overflow: hidden; -} - -.ev-card-image { - img.bg-img { - opacity: 0.8; - } -} - -.ev-card-title { - top: 10px; - left: 0px; - position: absolute; - font-size: 14px; - background-color: rgba(23, 24, 29, 0.7); - /* height: 55px; */ - display: inline; - padding: 10px 20px; - border-radius: 0px 2px 2px 0px; - color: #fff; - span > img { - width: auto !important; - height: 20px; - vertical-align: middle; - float: left; - margin-right: 5px; - } -} - -.ev-card-hover:hover { - box-shadow: 0px 0px 4px $shadow-black; - .btn-card-detail { - background: $highlight; - color: #fff; - } -} - -.btn-card-detail { - display: block; - width: 100%; - background: $border-color-light; - text-align: center; - padding: 10px 20px; - position: absolute; - bottom: 0; - transition: all 0.2s ease-in-out; -} - -.card-content { - p { - padding-bottom: 10px; - } -} - -.ev-z-depth-5 { - box-shadow: 0px 0px 10px $shadow-black; -} - -.ev-view { - padding-top: 20px; - padding-bottom: 20px; -} - -.fade { - transition: all linear 500ms; - opacity: 1; -} - -i.icon { - font-size: 15px; -} - -.side-nav li > a > i { - margin: 0px; -} - -a { - transition: all 0.2s ease-in-out; -} - -a.white-link { - color: $light-link; -} - -a.white-link:hover { - color: $link-hover-dark; -} - -a.highlight-link { - color: $highlight; -} - -a.light-link { - color: $med-link; - &:hover { - color: $highlight; - } -} - -a.med-link { - color: $med-link; -} - -a.med-link:hover { - color: $dark-link; -} - -a.med-black-link { - color: $med-black; -} - -a.med-black-link:hover { - color: $highlight; -} - -a.dark-link { - color: $dark-link; -} - -a.text-light-black:hover { - color: $highlight; -} - -/*to remove gutter from col*/ - -.rm-gut { - margin-left: -10px !important; - margin-right: -10px !important; -} - -.form-icon { - i { - position: absolute; - right: 0; - top: 15px; - color: $light-gray; - font-size: 0.9em; - transition: all 0.2s ease-in-out; - } -} - -/* label color */ - -input[type='radio'].selectTeam + label { - font-size: 15px; - color: $med-black; - vertical-align: middle; -} - -[type='radio']:checked + label:after, -[type='radio'].with-gap:checked + label:after { - background-color: #252833; -} - -[type='radio']:checked + label:after, -[type='radio'].with-gap:checked + label:before, -[type='radio'].with-gap:checked + label:after { - border: 2px solid #252833; -} - -/* label focus color */ - -.input-field input[type='email']:focus + label, -.input-field input[type='password']:focus + label, -.input-field input[type='text']:focus + label { - color: $light-gray; -} - -/* label underline focus color */ - -.input-field input[type='email']:focus, -.input-field input[type='password']:focus, -.input-field input[type='text']:focus { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 $link-hover-dark; -} - -/* valid color */ - -.input-field input[type='email'].valid, -.input-field input[type='password'].valid, -.input-field input[type='text'].valid { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 #000; -} - -/* invalid color */ - -.input-field input[type='email'].invalid, -.input-field input[type='password'].invalid, -.input-field input[type='text'].invalid { - border-bottom: 1px solid $link-hover-dark; - box-shadow: 0 0px 0 0 #000; -} - -/* icon prefix focus color */ - -input { - font-weight: $fw-light; - border-bottom: 1px solid $light-gray; -} - -.input-field input[type='email']:focus + .form-icon, -.input-field input[type='password']:focus + .form-icon, -.input-field input[type='text']:focus + .form-icon { - i { - color: $light-link; - } -} - -.input-field input[type='email']:focus + .form-icon-dark, -.input-field input[type='password']:focus + .form-icon-dark, -.input-field input[type='text']:focus + .form-icon-dark { - i { - color: $dark-link; - } -} - -@keyframes shift { - 0% { - left: -3 * $loader-dot-size; - opacity: 0; - background-color: $loader-dot-color; - } - 10% { - left: 0; - opacity: 1; - } - 90% { - left: $loader-size; - opacity: 1; - } - 100% { - left: ($loader-size + 3 * $loader-dot-size); - background-color: $light-gray; - opacity: 0; - } -} - -.info { - position: absolute; - bottom: 0; - color: crimson; - .info-text { - display: none; - } - input:checked + .info-text { - display: block; - } -} - -.short-hr-line { - display: inline-block; - width: 100px; - height: 1px; - background-color: $highlight; - margin: 7px 0px; -} - -/*default margins*/ - -.rm-mt { - margin-top: 0px; -} -/*flex prop*/ - -.flex-body { - min-height: 100%; - display: flex; - flex-direction: column; -} - -.mb-5 { - margin-bottom: 5px; -} - -.margin-8 { - margin-left: 8%; - margin-right: 8%; -} - -tr { - border-bottom: 1px solid #d0d0d0; -} - -.color-black { - color: black; -} - -.analytics-challenge-single-line { - margin-bottom: 2.5%; -} - -.thumb { - margin: 20px 0; - border: 1px solid #808080; -} - -.participant-download-btn { - margin-left: 1%; - padding: 2px 5px 2px 5px; - height: auto; - line-height: 14px; - text-align: center; - margin-bottom: 0.2%; - border-radius: 5px; -} - -/*media queries*/ - -@media only screen and (max-width: $med-screen) { - .padding-lr-header { - padding: 0px 20px; - } - .ev-container { - padding: 20px; - } - h4 { - font-size: 1.8em; - } -} - -@media only screen and (min-width: $screen-xlg) { - body, - html { - background: white; - } - - .page-wrap { - max-width: 100% !important; - overflow: hidden; - margin: auto !important; - position: relative !important; - background: white; - zoom: 1 !important; - } - - .page-wrap-challenge { - max-width: 1440px !important; - overflow: hidden; - margin: auto !important; - position: relative !important; - background: white; - zoom: 1 !important; - } - - .web-container { - width: unset; - } - - .dash-container { - width: unset; - } - - .dashboard-flex, - .dashboard-content { - min-height: calc(90vh - 64px) !important; - width: calc(1440px - 223px) !important; - } - - .grad-vh { - height: 90vh !important; - } - - .ev-footer { - clear: both; - z-index: 10; - position: relative; - } -} - -.border-radius-10 { - border-radius: 10px; -} - -.pd-10 { - padding: 10px; -} - -.pd-5 { - padding: 5px; -} - -.margin-bottom-cancel { - margin-bottom: 0 !important; -} - -.pd-lr-20 { - padding: 0 20px 0 20px; -} - -strong { - font-weight: 400; -} - -.color-orange { - color: #ffaf4b; -} diff --git a/frontend_v2/src/styles/font.scss b/frontend_v2/src/styles/font.scss deleted file mode 100644 index 78736d75be..0000000000 --- a/frontend_v2/src/styles/font.scss +++ /dev/null @@ -1,2492 +0,0 @@ -/*Font Faces*/ - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans Bold'), local('OpenSans-Bold'), url('assets/fonts/OpenSans-Bold.woff2') format('woff2'), - url('assets/fonts/OpenSans-Bold.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans BoldItalic'), local('OpenSans-BoldItalic'), - url('assets/fonts/OpenSans-BoldItalic.woff2') format('woff2'), - url('assets/fonts/OpenSans-BoldItalic.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), - url('assets/fonts/OpenSans-ExtraBold.woff2') format('woff2'), - url('assets/fonts/OpenSans-ExtraBold.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans ExtraBoldItalic'), local('OpenSans-ExtraBoldItalic'), - url('assets/fonts/OpenSans-ExtraBoldItalic.woff2') format('woff2'), - url('assets/fonts/OpenSans-ExtraBoldItalic.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans Italic'), local('OpenSans-Italic'), url('assets/fonts/OpenSans-Italic.woff2') format('woff2'), - url('assets/fonts/OpenSans-Italic.woff') format('woff'); - font-weight: normal; - font-display: swap; - font-style: italic; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans Light'), local('OpenSans-Light'), url('assets/fonts/OpenSans-Light.woff2') format('woff2'), - url('assets/fonts/OpenSans-Light.woff') format('woff'); - font-weight: normal; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans LightItalic'), local('OpenSans-LightItalic'), - url('assets/fonts/OpenSans-LightItalic.woff2') format('woff2'), - url('assets/fonts/OpenSans-LightItalic.woff') format('woff'); - font-weight: normal; - font-display: swap; - font-style: italic; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans Regular'), local('OpenSans-Regular'), url('assets/fonts/OpenSans-Regular.woff2') format('woff2'), - url('assets/fonts/OpenSans-Regular.woff') format('woff'); - font-weight: normal; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans Semibold'), local('OpenSans-Semibold'), - url('assets/fonts/OpenSans-Semibold.woff2') format('woff2'), - url('assets/fonts/OpenSans-Semibold.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: normal; -} - -@font-face { - font-family: 'Open Sans'; - src: local('Open Sans SemiboldItalic'), local('OpenSans-SemiboldItalic'), - url('assets/fonts/OpenSans-SemiboldItalic.woff2') format('woff2'), - url('assets/fonts/OpenSans-SemiboldItalic.woff') format('woff'); - font-weight: bold; - font-display: swap; - font-style: italic; -} - -/*Roboto Fonts*/ -@font-face { - font-family: 'Roboto'; - src: local(Roboto Thin), url('assets/fonts/roboto/Roboto-Thin.eot'); - src: url('assets/fonts/roboto/Roboto-Thin.eot?#iefix') format('embedded-opentype'), - url('assets/fonts/roboto/Roboto-Thin.woff2') format('woff2'), - url('assets/fonts/roboto/Roboto-Thin.woff') format('woff'), - url('assets/fonts/roboto/Roboto-Thin.ttf') format('truetype'); - font-weight: 200; -} - -@font-face { - font-family: 'Roboto'; - src: local(Roboto Light), url('assets/fonts/roboto/Roboto-Light.eot'); - src: url('assets/fonts/roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'), - url('assets/fonts/roboto/Roboto-Light.woff2') format('woff2'), - url('assets/fonts/roboto/Roboto-Light.woff') format('woff'), - url('assets/fonts/roboto/Roboto-Light.ttf') format('truetype'); - font-weight: 300; -} - -@font-face { - font-family: 'Roboto'; - src: local(Roboto Regular), url('assets/fonts/roboto/Roboto-Regular.eot'); - src: url('assets/fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), - url('assets/fonts/roboto/Roboto-Regular.woff2') format('woff2'), - url('assets/fonts/roboto/Roboto-Regular.woff') format('woff'), - url('assets/fonts/roboto/Roboto-Regular.ttf') format('truetype'); - font-weight: 400; -} - -@font-face { - font-family: 'Roboto'; - src: url('assets/fonts/roboto/Roboto-Medium.eot'); - src: url('assets/fonts/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), - url('assets/fonts/roboto/Roboto-Medium.woff2') format('woff2'), - url('assets/fonts/roboto/Roboto-Medium.woff') format('woff'), - url('assets/fonts/roboto/Roboto-Medium.ttf') format('truetype'); - font-weight: 500; -} - -@font-face { - font-family: 'Roboto'; - src: url('assets/fonts/roboto/Roboto-Bold.eot'); - src: url('assets/fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'), - url('assets/fonts/roboto/Roboto-Bold.woff2') format('woff2'), - url('assets/fonts/roboto/Roboto-Bold.woff') format('woff'), - url('assets/fonts/roboto/Roboto-Bold.ttf') format('truetype'); - font-weight: 700; -} - -/* Font Awesome */ - -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('assets/fonts/font-awesome/fontawesome-webfont.eot?v=4.7.0'); - src: url('assets/fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), - url('assets/fonts/font-awesome/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), - url('assets/fonts/font-awesome/fontawesome-webfont.woff?v=4.7.0') format('woff'), - url('assets/fonts/font-awesome/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), - url('assets/fonts/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: 0.2em 0.25em 0.15em; - border: solid 0.08em #eeeeee; - border-radius: 0.1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: 0.3em; -} -.fa.fa-pull-right { - margin-left: 0.3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: 0.3em; -} -.fa.pull-right { - margin-left: 0.3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: '\f000'; -} -.fa-music:before { - content: '\f001'; -} -.fa-search:before { - content: '\f002'; -} -.fa-envelope-o:before { - content: '\f003'; -} -.fa-heart:before { - content: '\f004'; -} -.fa-star:before { - content: '\f005'; -} -.fa-star-o:before { - content: '\f006'; -} -.fa-user:before { - content: '\f007'; -} -.fa-film:before { - content: '\f008'; -} -.fa-th-large:before { - content: '\f009'; -} -.fa-th:before { - content: '\f00a'; -} -.fa-th-list:before { - content: '\f00b'; -} -.fa-check:before { - content: '\f00c'; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: '\f00d'; -} -.fa-search-plus:before { - content: '\f00e'; -} -.fa-search-minus:before { - content: '\f010'; -} -.fa-power-off:before { - content: '\f011'; -} -.fa-signal:before { - content: '\f012'; -} -.fa-gear:before, -.fa-cog:before { - content: '\f013'; -} -.fa-trash-o:before { - content: '\f014'; -} -.fa-home:before { - content: '\f015'; -} -.fa-file-o:before { - content: '\f016'; -} -.fa-clock-o:before { - content: '\f017'; -} -.fa-road:before { - content: '\f018'; -} -.fa-download:before { - content: '\f019'; -} -.fa-arrow-circle-o-down:before { - content: '\f01a'; -} -.fa-arrow-circle-o-up:before { - content: '\f01b'; -} -.fa-inbox:before { - content: '\f01c'; -} -.fa-play-circle-o:before { - content: '\f01d'; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: '\f01e'; -} -.fa-refresh:before { - content: '\f021'; -} -.fa-list-alt:before { - content: '\f022'; -} -.fa-lock:before { - content: '\f023'; -} -.fa-flag:before { - content: '\f024'; -} -.fa-headphones:before { - content: '\f025'; -} -.fa-volume-off:before { - content: '\f026'; -} -.fa-volume-down:before { - content: '\f027'; -} -.fa-volume-up:before { - content: '\f028'; -} -.fa-qrcode:before { - content: '\f029'; -} -.fa-barcode:before { - content: '\f02a'; -} -.fa-tag:before { - content: '\f02b'; -} -.fa-tags:before { - content: '\f02c'; -} -.fa-book:before { - content: '\f02d'; -} -.fa-bookmark:before { - content: '\f02e'; -} -.fa-print:before { - content: '\f02f'; -} -.fa-camera:before { - content: '\f030'; -} -.fa-font:before { - content: '\f031'; -} -.fa-bold:before { - content: '\f032'; -} -.fa-italic:before { - content: '\f033'; -} -.fa-text-height:before { - content: '\f034'; -} -.fa-text-width:before { - content: '\f035'; -} -.fa-align-left:before { - content: '\f036'; -} -.fa-align-center:before { - content: '\f037'; -} -.fa-align-right:before { - content: '\f038'; -} -.fa-align-justify:before { - content: '\f039'; -} -.fa-list:before { - content: '\f03a'; -} -.fa-dedent:before, -.fa-outdent:before { - content: '\f03b'; -} -.fa-indent:before { - content: '\f03c'; -} -.fa-video-camera:before { - content: '\f03d'; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: '\f03e'; -} -.fa-pencil:before { - content: '\f040'; -} -.fa-map-marker:before { - content: '\f041'; -} -.fa-adjust:before { - content: '\f042'; -} -.fa-tint:before { - content: '\f043'; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: '\f044'; -} -.fa-share-square-o:before { - content: '\f045'; -} -.fa-check-square-o:before { - content: '\f046'; -} -.fa-arrows:before { - content: '\f047'; -} -.fa-step-backward:before { - content: '\f048'; -} -.fa-fast-backward:before { - content: '\f049'; -} -.fa-backward:before { - content: '\f04a'; -} -.fa-play:before { - content: '\f04b'; -} -.fa-pause:before { - content: '\f04c'; -} -.fa-stop:before { - content: '\f04d'; -} -.fa-forward:before { - content: '\f04e'; -} -.fa-fast-forward:before { - content: '\f050'; -} -.fa-step-forward:before { - content: '\f051'; -} -.fa-eject:before { - content: '\f052'; -} -.fa-chevron-left:before { - content: '\f053'; -} -.fa-chevron-right:before { - content: '\f054'; -} -.fa-plus-circle:before { - content: '\f055'; -} -.fa-minus-circle:before { - content: '\f056'; -} -.fa-times-circle:before { - content: '\f057'; -} -.fa-check-circle:before { - content: '\f058'; -} -.fa-question-circle:before { - content: '\f059'; -} -.fa-info-circle:before { - content: '\f05a'; -} -.fa-crosshairs:before { - content: '\f05b'; -} -.fa-times-circle-o:before { - content: '\f05c'; -} -.fa-check-circle-o:before { - content: '\f05d'; -} -.fa-ban:before { - content: '\f05e'; -} -.fa-arrow-left:before { - content: '\f060'; -} -.fa-arrow-right:before { - content: '\f061'; -} -.fa-arrow-up:before { - content: '\f062'; -} -.fa-arrow-down:before { - content: '\f063'; -} -.fa-mail-forward:before, -.fa-share:before { - content: '\f064'; -} -.fa-expand:before { - content: '\f065'; -} -.fa-compress:before { - content: '\f066'; -} -.fa-plus:before { - content: '\f067'; -} -.fa-minus:before { - content: '\f068'; -} -.fa-asterisk:before { - content: '\f069'; -} -.fa-exclamation-circle:before { - content: '\f06a'; -} -.fa-gift:before { - content: '\f06b'; -} -.fa-leaf:before { - content: '\f06c'; -} -.fa-fire:before { - content: '\f06d'; -} -.fa-eye:before { - content: '\f06e'; -} -.fa-eye-slash:before { - content: '\f070'; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: '\f071'; -} -.fa-plane:before { - content: '\f072'; -} -.fa-calendar:before { - content: '\f073'; -} -.fa-random:before { - content: '\f074'; -} -.fa-comment:before { - content: '\f075'; -} -.fa-magnet:before { - content: '\f076'; -} -.fa-chevron-up:before { - content: '\f077'; -} -.fa-chevron-down:before { - content: '\f078'; -} -.fa-retweet:before { - content: '\f079'; -} -.fa-shopping-cart:before { - content: '\f07a'; -} -.fa-folder:before { - content: '\f07b'; -} -.fa-folder-open:before { - content: '\f07c'; -} -.fa-arrows-v:before { - content: '\f07d'; -} -.fa-arrows-h:before { - content: '\f07e'; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: '\f080'; -} -.fa-twitter-square:before { - content: '\f081'; -} -.fa-facebook-square:before { - content: '\f082'; -} -.fa-camera-retro:before { - content: '\f083'; -} -.fa-key:before { - content: '\f084'; -} -.fa-gears:before, -.fa-cogs:before { - content: '\f085'; -} -.fa-comments:before { - content: '\f086'; -} -.fa-thumbs-o-up:before { - content: '\f087'; -} -.fa-thumbs-o-down:before { - content: '\f088'; -} -.fa-star-half:before { - content: '\f089'; -} -.fa-heart-o:before { - content: '\f08a'; -} -.fa-sign-out:before { - content: '\f08b'; -} -.fa-linkedin-square:before { - content: '\f08c'; -} -.fa-thumb-tack:before { - content: '\f08d'; -} -.fa-external-link:before { - content: '\f08e'; -} -.fa-sign-in:before { - content: '\f090'; -} -.fa-trophy:before { - content: '\f091'; -} -.fa-github-square:before { - content: '\f092'; -} -.fa-upload:before { - content: '\f093'; -} -.fa-lemon-o:before { - content: '\f094'; -} -.fa-phone:before { - content: '\f095'; -} -.fa-square-o:before { - content: '\f096'; -} -.fa-bookmark-o:before { - content: '\f097'; -} -.fa-phone-square:before { - content: '\f098'; -} -.fa-twitter:before { - content: '\f099'; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: '\f09a'; -} -.fa-github:before { - content: '\f09b'; -} -.fa-unlock:before { - content: '\f09c'; -} -.fa-credit-card:before { - content: '\f09d'; -} -.fa-feed:before, -.fa-rss:before { - content: '\f09e'; -} -.fa-hdd-o:before { - content: '\f0a0'; -} -.fa-bullhorn:before { - content: '\f0a1'; -} -.fa-bell:before { - content: '\f0f3'; -} -.fa-certificate:before { - content: '\f0a3'; -} -.fa-hand-o-right:before { - content: '\f0a4'; -} -.fa-hand-o-left:before { - content: '\f0a5'; -} -.fa-hand-o-up:before { - content: '\f0a6'; -} -.fa-hand-o-down:before { - content: '\f0a7'; -} -.fa-arrow-circle-left:before { - content: '\f0a8'; -} -.fa-arrow-circle-right:before { - content: '\f0a9'; -} -.fa-arrow-circle-up:before { - content: '\f0aa'; -} -.fa-arrow-circle-down:before { - content: '\f0ab'; -} -.fa-globe:before { - content: '\f0ac'; -} -.fa-wrench:before { - content: '\f0ad'; -} -.fa-tasks:before { - content: '\f0ae'; -} -.fa-filter:before { - content: '\f0b0'; -} -.fa-briefcase:before { - content: '\f0b1'; -} -.fa-arrows-alt:before { - content: '\f0b2'; -} -.fa-group:before, -.fa-users:before { - content: '\f0c0'; -} -.fa-chain:before, -.fa-link:before { - content: '\f0c1'; -} -.fa-cloud:before { - content: '\f0c2'; -} -.fa-flask:before { - content: '\f0c3'; -} -.fa-cut:before, -.fa-scissors:before { - content: '\f0c4'; -} -.fa-copy:before, -.fa-files-o:before { - content: '\f0c5'; -} -.fa-paperclip:before { - content: '\f0c6'; -} -.fa-save:before, -.fa-floppy-o:before { - content: '\f0c7'; -} -.fa-square:before { - content: '\f0c8'; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: '\f0c9'; -} -.fa-list-ul:before { - content: '\f0ca'; -} -.fa-list-ol:before { - content: '\f0cb'; -} -.fa-strikethrough:before { - content: '\f0cc'; -} -.fa-underline:before { - content: '\f0cd'; -} -.fa-table:before { - content: '\f0ce'; -} -.fa-magic:before { - content: '\f0d0'; -} -.fa-truck:before { - content: '\f0d1'; -} -.fa-pinterest:before { - content: '\f0d2'; -} -.fa-pinterest-square:before { - content: '\f0d3'; -} -.fa-google-plus-square:before { - content: '\f0d4'; -} -.fa-google-plus:before { - content: '\f0d5'; -} -.fa-money:before { - content: '\f0d6'; -} -.fa-caret-down:before { - content: '\f0d7'; -} -.fa-caret-up:before { - content: '\f0d8'; -} -.fa-caret-left:before { - content: '\f0d9'; -} -.fa-caret-right:before { - content: '\f0da'; -} -.fa-columns:before { - content: '\f0db'; -} -.fa-unsorted:before, -.fa-sort:before { - content: '\f0dc'; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: '\f0dd'; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: '\f0de'; -} -.fa-envelope:before { - content: '\f0e0'; -} -.fa-linkedin:before { - content: '\f0e1'; -} -.fa-rotate-left:before, -.fa-undo:before { - content: '\f0e2'; -} -.fa-legal:before, -.fa-gavel:before { - content: '\f0e3'; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: '\f0e4'; -} -.fa-comment-o:before { - content: '\f0e5'; -} -.fa-comments-o:before { - content: '\f0e6'; -} -.fa-flash:before, -.fa-bolt:before { - content: '\f0e7'; -} -.fa-sitemap:before { - content: '\f0e8'; -} -.fa-umbrella:before { - content: '\f0e9'; -} -.fa-paste:before, -.fa-clipboard:before { - content: '\f0ea'; -} -.fa-lightbulb-o:before { - content: '\f0eb'; -} -.fa-exchange:before { - content: '\f0ec'; -} -.fa-cloud-download:before { - content: '\f0ed'; -} -.fa-cloud-upload:before { - content: '\f0ee'; -} -.fa-user-md:before { - content: '\f0f0'; -} -.fa-stethoscope:before { - content: '\f0f1'; -} -.fa-suitcase:before { - content: '\f0f2'; -} -.fa-bell-o:before { - content: '\f0a2'; -} -.fa-coffee:before { - content: '\f0f4'; -} -.fa-cutlery:before { - content: '\f0f5'; -} -.fa-file-text-o:before { - content: '\f0f6'; -} -.fa-building-o:before { - content: '\f0f7'; -} -.fa-hospital-o:before { - content: '\f0f8'; -} -.fa-ambulance:before { - content: '\f0f9'; -} -.fa-medkit:before { - content: '\f0fa'; -} -.fa-fighter-jet:before { - content: '\f0fb'; -} -.fa-beer:before { - content: '\f0fc'; -} -.fa-h-square:before { - content: '\f0fd'; -} -.fa-plus-square:before { - content: '\f0fe'; -} -.fa-angle-double-left:before { - content: '\f100'; -} -.fa-angle-double-right:before { - content: '\f101'; -} -.fa-angle-double-up:before { - content: '\f102'; -} -.fa-angle-double-down:before { - content: '\f103'; -} -.fa-angle-left:before { - content: '\f104'; -} -.fa-angle-right:before { - content: '\f105'; -} -.fa-angle-up:before { - content: '\f106'; -} -.fa-angle-down:before { - content: '\f107'; -} -.fa-desktop:before { - content: '\f108'; -} -.fa-laptop:before { - content: '\f109'; -} -.fa-tablet:before { - content: '\f10a'; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: '\f10b'; -} -.fa-circle-o:before { - content: '\f10c'; -} -.fa-quote-left:before { - content: '\f10d'; -} -.fa-quote-right:before { - content: '\f10e'; -} -.fa-spinner:before { - content: '\f110'; -} -.fa-circle:before { - content: '\f111'; -} -.fa-mail-reply:before, -.fa-reply:before { - content: '\f112'; -} -.fa-github-alt:before { - content: '\f113'; -} -.fa-folder-o:before { - content: '\f114'; -} -.fa-folder-open-o:before { - content: '\f115'; -} -.fa-smile-o:before { - content: '\f118'; -} -.fa-frown-o:before { - content: '\f119'; -} -.fa-meh-o:before { - content: '\f11a'; -} -.fa-gamepad:before { - content: '\f11b'; -} -.fa-keyboard-o:before { - content: '\f11c'; -} -.fa-flag-o:before { - content: '\f11d'; -} -.fa-flag-checkered:before { - content: '\f11e'; -} -.fa-terminal:before { - content: '\f120'; -} -.fa-code:before { - content: '\f121'; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: '\f122'; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: '\f123'; -} -.fa-location-arrow:before { - content: '\f124'; -} -.fa-crop:before { - content: '\f125'; -} -.fa-code-fork:before { - content: '\f126'; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: '\f127'; -} -.fa-question:before { - content: '\f128'; -} -.fa-info:before { - content: '\f129'; -} -.fa-exclamation:before { - content: '\f12a'; -} -.fa-superscript:before { - content: '\f12b'; -} -.fa-subscript:before { - content: '\f12c'; -} -.fa-eraser:before { - content: '\f12d'; -} -.fa-puzzle-piece:before { - content: '\f12e'; -} -.fa-microphone:before { - content: '\f130'; -} -.fa-microphone-slash:before { - content: '\f131'; -} -.fa-shield:before { - content: '\f132'; -} -.fa-calendar-o:before { - content: '\f133'; -} -.fa-fire-extinguisher:before { - content: '\f134'; -} -.fa-rocket:before { - content: '\f135'; -} -.fa-maxcdn:before { - content: '\f136'; -} -.fa-chevron-circle-left:before { - content: '\f137'; -} -.fa-chevron-circle-right:before { - content: '\f138'; -} -.fa-chevron-circle-up:before { - content: '\f139'; -} -.fa-chevron-circle-down:before { - content: '\f13a'; -} -.fa-html5:before { - content: '\f13b'; -} -.fa-css3:before { - content: '\f13c'; -} -.fa-anchor:before { - content: '\f13d'; -} -.fa-unlock-alt:before { - content: '\f13e'; -} -.fa-bullseye:before { - content: '\f140'; -} -.fa-ellipsis-h:before { - content: '\f141'; -} -.fa-ellipsis-v:before { - content: '\f142'; -} -.fa-rss-square:before { - content: '\f143'; -} -.fa-play-circle:before { - content: '\f144'; -} -.fa-ticket:before { - content: '\f145'; -} -.fa-minus-square:before { - content: '\f146'; -} -.fa-minus-square-o:before { - content: '\f147'; -} -.fa-level-up:before { - content: '\f148'; -} -.fa-level-down:before { - content: '\f149'; -} -.fa-check-square:before { - content: '\f14a'; -} -.fa-pencil-square:before { - content: '\f14b'; -} -.fa-external-link-square:before { - content: '\f14c'; -} -.fa-share-square:before { - content: '\f14d'; -} -.fa-compass:before { - content: '\f14e'; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: '\f150'; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: '\f151'; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: '\f152'; -} -.fa-euro:before, -.fa-eur:before { - content: '\f153'; -} -.fa-gbp:before { - content: '\f154'; -} -.fa-dollar:before, -.fa-usd:before { - content: '\f155'; -} -.fa-rupee:before, -.fa-inr:before { - content: '\f156'; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: '\f157'; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: '\f158'; -} -.fa-won:before, -.fa-krw:before { - content: '\f159'; -} -.fa-bitcoin:before, -.fa-btc:before { - content: '\f15a'; -} -.fa-file:before { - content: '\f15b'; -} -.fa-file-text:before { - content: '\f15c'; -} -.fa-sort-alpha-asc:before { - content: '\f15d'; -} -.fa-sort-alpha-desc:before { - content: '\f15e'; -} -.fa-sort-amount-asc:before { - content: '\f160'; -} -.fa-sort-amount-desc:before { - content: '\f161'; -} -.fa-sort-numeric-asc:before { - content: '\f162'; -} -.fa-sort-numeric-desc:before { - content: '\f163'; -} -.fa-thumbs-up:before { - content: '\f164'; -} -.fa-thumbs-down:before { - content: '\f165'; -} -.fa-youtube-square:before { - content: '\f166'; -} -.fa-youtube:before { - content: '\f167'; -} -.fa-xing:before { - content: '\f168'; -} -.fa-xing-square:before { - content: '\f169'; -} -.fa-youtube-play:before { - content: '\f16a'; -} -.fa-dropbox:before { - content: '\f16b'; -} -.fa-stack-overflow:before { - content: '\f16c'; -} -.fa-instagram:before { - content: '\f16d'; -} -.fa-flickr:before { - content: '\f16e'; -} -.fa-adn:before { - content: '\f170'; -} -.fa-bitbucket:before { - content: '\f171'; -} -.fa-bitbucket-square:before { - content: '\f172'; -} -.fa-tumblr:before { - content: '\f173'; -} -.fa-tumblr-square:before { - content: '\f174'; -} -.fa-long-arrow-down:before { - content: '\f175'; -} -.fa-long-arrow-up:before { - content: '\f176'; -} -.fa-long-arrow-left:before { - content: '\f177'; -} -.fa-long-arrow-right:before { - content: '\f178'; -} -.fa-apple:before { - content: '\f179'; -} -.fa-windows:before { - content: '\f17a'; -} -.fa-android:before { - content: '\f17b'; -} -.fa-linux:before { - content: '\f17c'; -} -.fa-dribbble:before { - content: '\f17d'; -} -.fa-skype:before { - content: '\f17e'; -} -.fa-foursquare:before { - content: '\f180'; -} -.fa-trello:before { - content: '\f181'; -} -.fa-female:before { - content: '\f182'; -} -.fa-male:before { - content: '\f183'; -} -.fa-gittip:before, -.fa-gratipay:before { - content: '\f184'; -} -.fa-sun-o:before { - content: '\f185'; -} -.fa-moon-o:before { - content: '\f186'; -} -.fa-archive:before { - content: '\f187'; -} -.fa-bug:before { - content: '\f188'; -} -.fa-vk:before { - content: '\f189'; -} -.fa-weibo:before { - content: '\f18a'; -} -.fa-renren:before { - content: '\f18b'; -} -.fa-pagelines:before { - content: '\f18c'; -} -.fa-stack-exchange:before { - content: '\f18d'; -} -.fa-arrow-circle-o-right:before { - content: '\f18e'; -} -.fa-arrow-circle-o-left:before { - content: '\f190'; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: '\f191'; -} -.fa-dot-circle-o:before { - content: '\f192'; -} -.fa-wheelchair:before { - content: '\f193'; -} -.fa-vimeo-square:before { - content: '\f194'; -} -.fa-turkish-lira:before, -.fa-try:before { - content: '\f195'; -} -.fa-plus-square-o:before { - content: '\f196'; -} -.fa-space-shuttle:before { - content: '\f197'; -} -.fa-slack:before { - content: '\f198'; -} -.fa-envelope-square:before { - content: '\f199'; -} -.fa-wordpress:before { - content: '\f19a'; -} -.fa-openid:before { - content: '\f19b'; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: '\f19c'; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: '\f19d'; -} -.fa-yahoo:before { - content: '\f19e'; -} -.fa-google:before { - content: '\f1a0'; -} -.fa-reddit:before { - content: '\f1a1'; -} -.fa-reddit-square:before { - content: '\f1a2'; -} -.fa-stumbleupon-circle:before { - content: '\f1a3'; -} -.fa-stumbleupon:before { - content: '\f1a4'; -} -.fa-delicious:before { - content: '\f1a5'; -} -.fa-digg:before { - content: '\f1a6'; -} -.fa-pied-piper-pp:before { - content: '\f1a7'; -} -.fa-pied-piper-alt:before { - content: '\f1a8'; -} -.fa-drupal:before { - content: '\f1a9'; -} -.fa-joomla:before { - content: '\f1aa'; -} -.fa-language:before { - content: '\f1ab'; -} -.fa-fax:before { - content: '\f1ac'; -} -.fa-building:before { - content: '\f1ad'; -} -.fa-child:before { - content: '\f1ae'; -} -.fa-paw:before { - content: '\f1b0'; -} -.fa-spoon:before { - content: '\f1b1'; -} -.fa-cube:before { - content: '\f1b2'; -} -.fa-cubes:before { - content: '\f1b3'; -} -.fa-behance:before { - content: '\f1b4'; -} -.fa-behance-square:before { - content: '\f1b5'; -} -.fa-steam:before { - content: '\f1b6'; -} -.fa-steam-square:before { - content: '\f1b7'; -} -.fa-recycle:before { - content: '\f1b8'; -} -.fa-automobile:before, -.fa-car:before { - content: '\f1b9'; -} -.fa-cab:before, -.fa-taxi:before { - content: '\f1ba'; -} -.fa-tree:before { - content: '\f1bb'; -} -.fa-spotify:before { - content: '\f1bc'; -} -.fa-deviantart:before { - content: '\f1bd'; -} -.fa-soundcloud:before { - content: '\f1be'; -} -.fa-database:before { - content: '\f1c0'; -} -.fa-file-pdf-o:before { - content: '\f1c1'; -} -.fa-file-word-o:before { - content: '\f1c2'; -} -.fa-file-excel-o:before { - content: '\f1c3'; -} -.fa-file-powerpoint-o:before { - content: '\f1c4'; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: '\f1c5'; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: '\f1c6'; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: '\f1c7'; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: '\f1c8'; -} -.fa-file-code-o:before { - content: '\f1c9'; -} -.fa-vine:before { - content: '\f1ca'; -} -.fa-codepen:before { - content: '\f1cb'; -} -.fa-jsfiddle:before { - content: '\f1cc'; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: '\f1cd'; -} -.fa-circle-o-notch:before { - content: '\f1ce'; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: '\f1d0'; -} -.fa-ge:before, -.fa-empire:before { - content: '\f1d1'; -} -.fa-git-square:before { - content: '\f1d2'; -} -.fa-git:before { - content: '\f1d3'; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: '\f1d4'; -} -.fa-tencent-weibo:before { - content: '\f1d5'; -} -.fa-qq:before { - content: '\f1d6'; -} -.fa-wechat:before, -.fa-weixin:before { - content: '\f1d7'; -} -.fa-send:before, -.fa-paper-plane:before { - content: '\f1d8'; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: '\f1d9'; -} -.fa-history:before { - content: '\f1da'; -} -.fa-circle-thin:before { - content: '\f1db'; -} -.fa-header:before { - content: '\f1dc'; -} -.fa-paragraph:before { - content: '\f1dd'; -} -.fa-sliders:before { - content: '\f1de'; -} -.fa-share-alt:before { - content: '\f1e0'; -} -.fa-share-alt-square:before { - content: '\f1e1'; -} -.fa-bomb:before { - content: '\f1e2'; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: '\f1e3'; -} -.fa-tty:before { - content: '\f1e4'; -} -.fa-binoculars:before { - content: '\f1e5'; -} -.fa-plug:before { - content: '\f1e6'; -} -.fa-slideshare:before { - content: '\f1e7'; -} -.fa-twitch:before { - content: '\f1e8'; -} -.fa-yelp:before { - content: '\f1e9'; -} -.fa-newspaper-o:before { - content: '\f1ea'; -} -.fa-wifi:before { - content: '\f1eb'; -} -.fa-calculator:before { - content: '\f1ec'; -} -.fa-paypal:before { - content: '\f1ed'; -} -.fa-google-wallet:before { - content: '\f1ee'; -} -.fa-cc-visa:before { - content: '\f1f0'; -} -.fa-cc-mastercard:before { - content: '\f1f1'; -} -.fa-cc-discover:before { - content: '\f1f2'; -} -.fa-cc-amex:before { - content: '\f1f3'; -} -.fa-cc-paypal:before { - content: '\f1f4'; -} -.fa-cc-stripe:before { - content: '\f1f5'; -} -.fa-bell-slash:before { - content: '\f1f6'; -} -.fa-bell-slash-o:before { - content: '\f1f7'; -} -.fa-trash:before { - content: '\f1f8'; -} -.fa-copyright:before { - content: '\f1f9'; -} -.fa-at:before { - content: '\f1fa'; -} -.fa-eyedropper:before { - content: '\f1fb'; -} -.fa-paint-brush:before { - content: '\f1fc'; -} -.fa-birthday-cake:before { - content: '\f1fd'; -} -.fa-area-chart:before { - content: '\f1fe'; -} -.fa-pie-chart:before { - content: '\f200'; -} -.fa-line-chart:before { - content: '\f201'; -} -.fa-lastfm:before { - content: '\f202'; -} -.fa-lastfm-square:before { - content: '\f203'; -} -.fa-toggle-off:before { - content: '\f204'; -} -.fa-toggle-on:before { - content: '\f205'; -} -.fa-bicycle:before { - content: '\f206'; -} -.fa-bus:before { - content: '\f207'; -} -.fa-ioxhost:before { - content: '\f208'; -} -.fa-angellist:before { - content: '\f209'; -} -.fa-cc:before { - content: '\f20a'; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: '\f20b'; -} -.fa-meanpath:before { - content: '\f20c'; -} -.fa-buysellads:before { - content: '\f20d'; -} -.fa-connectdevelop:before { - content: '\f20e'; -} -.fa-dashcube:before { - content: '\f210'; -} -.fa-forumbee:before { - content: '\f211'; -} -.fa-leanpub:before { - content: '\f212'; -} -.fa-sellsy:before { - content: '\f213'; -} -.fa-shirtsinbulk:before { - content: '\f214'; -} -.fa-simplybuilt:before { - content: '\f215'; -} -.fa-skyatlas:before { - content: '\f216'; -} -.fa-cart-plus:before { - content: '\f217'; -} -.fa-cart-arrow-down:before { - content: '\f218'; -} -.fa-diamond:before { - content: '\f219'; -} -.fa-ship:before { - content: '\f21a'; -} -.fa-user-secret:before { - content: '\f21b'; -} -.fa-motorcycle:before { - content: '\f21c'; -} -.fa-street-view:before { - content: '\f21d'; -} -.fa-heartbeat:before { - content: '\f21e'; -} -.fa-venus:before { - content: '\f221'; -} -.fa-mars:before { - content: '\f222'; -} -.fa-mercury:before { - content: '\f223'; -} -.fa-intersex:before, -.fa-transgender:before { - content: '\f224'; -} -.fa-transgender-alt:before { - content: '\f225'; -} -.fa-venus-double:before { - content: '\f226'; -} -.fa-mars-double:before { - content: '\f227'; -} -.fa-venus-mars:before { - content: '\f228'; -} -.fa-mars-stroke:before { - content: '\f229'; -} -.fa-mars-stroke-v:before { - content: '\f22a'; -} -.fa-mars-stroke-h:before { - content: '\f22b'; -} -.fa-neuter:before { - content: '\f22c'; -} -.fa-genderless:before { - content: '\f22d'; -} -.fa-facebook-official:before { - content: '\f230'; -} -.fa-pinterest-p:before { - content: '\f231'; -} -.fa-whatsapp:before { - content: '\f232'; -} -.fa-server:before { - content: '\f233'; -} -.fa-user-plus:before { - content: '\f234'; -} -.fa-user-times:before { - content: '\f235'; -} -.fa-hotel:before, -.fa-bed:before { - content: '\f236'; -} -.fa-viacoin:before { - content: '\f237'; -} -.fa-train:before { - content: '\f238'; -} -.fa-subway:before { - content: '\f239'; -} -.fa-medium:before { - content: '\f23a'; -} -.fa-yc:before, -.fa-y-combinator:before { - content: '\f23b'; -} -.fa-optin-monster:before { - content: '\f23c'; -} -.fa-opencart:before { - content: '\f23d'; -} -.fa-expeditedssl:before { - content: '\f23e'; -} -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: '\f240'; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: '\f241'; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: '\f242'; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: '\f243'; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: '\f244'; -} -.fa-mouse-pointer:before { - content: '\f245'; -} -.fa-i-cursor:before { - content: '\f246'; -} -.fa-object-group:before { - content: '\f247'; -} -.fa-object-ungroup:before { - content: '\f248'; -} -.fa-sticky-note:before { - content: '\f249'; -} -.fa-sticky-note-o:before { - content: '\f24a'; -} -.fa-cc-jcb:before { - content: '\f24b'; -} -.fa-cc-diners-club:before { - content: '\f24c'; -} -.fa-clone:before { - content: '\f24d'; -} -.fa-balance-scale:before { - content: '\f24e'; -} -.fa-hourglass-o:before { - content: '\f250'; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: '\f251'; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: '\f252'; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: '\f253'; -} -.fa-hourglass:before { - content: '\f254'; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: '\f255'; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: '\f256'; -} -.fa-hand-scissors-o:before { - content: '\f257'; -} -.fa-hand-lizard-o:before { - content: '\f258'; -} -.fa-hand-spock-o:before { - content: '\f259'; -} -.fa-hand-pointer-o:before { - content: '\f25a'; -} -.fa-hand-peace-o:before { - content: '\f25b'; -} -.fa-trademark:before { - content: '\f25c'; -} -.fa-registered:before { - content: '\f25d'; -} -.fa-creative-commons:before { - content: '\f25e'; -} -.fa-gg:before { - content: '\f260'; -} -.fa-gg-circle:before { - content: '\f261'; -} -.fa-tripadvisor:before { - content: '\f262'; -} -.fa-odnoklassniki:before { - content: '\f263'; -} -.fa-odnoklassniki-square:before { - content: '\f264'; -} -.fa-get-pocket:before { - content: '\f265'; -} -.fa-wikipedia-w:before { - content: '\f266'; -} -.fa-safari:before { - content: '\f267'; -} -.fa-chrome:before { - content: '\f268'; -} -.fa-firefox:before { - content: '\f269'; -} -.fa-opera:before { - content: '\f26a'; -} -.fa-internet-explorer:before { - content: '\f26b'; -} -.fa-tv:before, -.fa-television:before { - content: '\f26c'; -} -.fa-contao:before { - content: '\f26d'; -} -.fa-500px:before { - content: '\f26e'; -} -.fa-amazon:before { - content: '\f270'; -} -.fa-calendar-plus-o:before { - content: '\f271'; -} -.fa-calendar-minus-o:before { - content: '\f272'; -} -.fa-calendar-times-o:before { - content: '\f273'; -} -.fa-calendar-check-o:before { - content: '\f274'; -} -.fa-industry:before { - content: '\f275'; -} -.fa-map-pin:before { - content: '\f276'; -} -.fa-map-signs:before { - content: '\f277'; -} -.fa-map-o:before { - content: '\f278'; -} -.fa-map:before { - content: '\f279'; -} -.fa-commenting:before { - content: '\f27a'; -} -.fa-commenting-o:before { - content: '\f27b'; -} -.fa-houzz:before { - content: '\f27c'; -} -.fa-vimeo:before { - content: '\f27d'; -} -.fa-black-tie:before { - content: '\f27e'; -} -.fa-fonticons:before { - content: '\f280'; -} -.fa-reddit-alien:before { - content: '\f281'; -} -.fa-edge:before { - content: '\f282'; -} -.fa-credit-card-alt:before { - content: '\f283'; -} -.fa-codiepie:before { - content: '\f284'; -} -.fa-modx:before { - content: '\f285'; -} -.fa-fort-awesome:before { - content: '\f286'; -} -.fa-usb:before { - content: '\f287'; -} -.fa-product-hunt:before { - content: '\f288'; -} -.fa-mixcloud:before { - content: '\f289'; -} -.fa-scribd:before { - content: '\f28a'; -} -.fa-pause-circle:before { - content: '\f28b'; -} -.fa-pause-circle-o:before { - content: '\f28c'; -} -.fa-stop-circle:before { - content: '\f28d'; -} -.fa-stop-circle-o:before { - content: '\f28e'; -} -.fa-shopping-bag:before { - content: '\f290'; -} -.fa-shopping-basket:before { - content: '\f291'; -} -.fa-hashtag:before { - content: '\f292'; -} -.fa-bluetooth:before { - content: '\f293'; -} -.fa-bluetooth-b:before { - content: '\f294'; -} -.fa-percent:before { - content: '\f295'; -} -.fa-gitlab:before { - content: '\f296'; -} -.fa-wpbeginner:before { - content: '\f297'; -} -.fa-wpforms:before { - content: '\f298'; -} -.fa-envira:before { - content: '\f299'; -} -.fa-universal-access:before { - content: '\f29a'; -} -.fa-wheelchair-alt:before { - content: '\f29b'; -} -.fa-question-circle-o:before { - content: '\f29c'; -} -.fa-blind:before { - content: '\f29d'; -} -.fa-audio-description:before { - content: '\f29e'; -} -.fa-volume-control-phone:before { - content: '\f2a0'; -} -.fa-braille:before { - content: '\f2a1'; -} -.fa-assistive-listening-systems:before { - content: '\f2a2'; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: '\f2a3'; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: '\f2a4'; -} -.fa-glide:before { - content: '\f2a5'; -} -.fa-glide-g:before { - content: '\f2a6'; -} -.fa-signing:before, -.fa-sign-language:before { - content: '\f2a7'; -} -.fa-low-vision:before { - content: '\f2a8'; -} -.fa-viadeo:before { - content: '\f2a9'; -} -.fa-viadeo-square:before { - content: '\f2aa'; -} -.fa-snapchat:before { - content: '\f2ab'; -} -.fa-snapchat-ghost:before { - content: '\f2ac'; -} -.fa-snapchat-square:before { - content: '\f2ad'; -} -.fa-pied-piper:before { - content: '\f2ae'; -} -.fa-first-order:before { - content: '\f2b0'; -} -.fa-yoast:before { - content: '\f2b1'; -} -.fa-themeisle:before { - content: '\f2b2'; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: '\f2b3'; -} -.fa-fa:before, -.fa-font-awesome:before { - content: '\f2b4'; -} -.fa-handshake-o:before { - content: '\f2b5'; -} -.fa-envelope-open:before { - content: '\f2b6'; -} -.fa-envelope-open-o:before { - content: '\f2b7'; -} -.fa-linode:before { - content: '\f2b8'; -} -.fa-address-book:before { - content: '\f2b9'; -} -.fa-address-book-o:before { - content: '\f2ba'; -} -.fa-vcard:before, -.fa-address-card:before { - content: '\f2bb'; -} -.fa-vcard-o:before, -.fa-address-card-o:before { - content: '\f2bc'; -} -.fa-user-circle:before { - content: '\f2bd'; -} -.fa-user-circle-o:before { - content: '\f2be'; -} -.fa-user-o:before { - content: '\f2c0'; -} -.fa-id-badge:before { - content: '\f2c1'; -} -.fa-drivers-license:before, -.fa-id-card:before { - content: '\f2c2'; -} -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: '\f2c3'; -} -.fa-quora:before { - content: '\f2c4'; -} -.fa-free-code-camp:before { - content: '\f2c5'; -} -.fa-telegram:before { - content: '\f2c6'; -} -.fa-thermometer-4:before, -.fa-thermometer:before, -.fa-thermometer-full:before { - content: '\f2c7'; -} -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: '\f2c8'; -} -.fa-thermometer-2:before, -.fa-thermometer-half:before { - content: '\f2c9'; -} -.fa-thermometer-1:before, -.fa-thermometer-quarter:before { - content: '\f2ca'; -} -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: '\f2cb'; -} -.fa-shower:before { - content: '\f2cc'; -} -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: '\f2cd'; -} -.fa-podcast:before { - content: '\f2ce'; -} -.fa-window-maximize:before { - content: '\f2d0'; -} -.fa-window-minimize:before { - content: '\f2d1'; -} -.fa-window-restore:before { - content: '\f2d2'; -} -.fa-times-rectangle:before, -.fa-window-close:before { - content: '\f2d3'; -} -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: '\f2d4'; -} -.fa-bandcamp:before { - content: '\f2d5'; -} -.fa-grav:before { - content: '\f2d6'; -} -.fa-etsy:before { - content: '\f2d7'; -} -.fa-imdb:before { - content: '\f2d8'; -} -.fa-ravelry:before { - content: '\f2d9'; -} -.fa-eercast:before { - content: '\f2da'; -} -.fa-microchip:before { - content: '\f2db'; -} -.fa-snowflake-o:before { - content: '\f2dc'; -} -.fa-superpowers:before { - content: '\f2dd'; -} -.fa-wpexplorer:before { - content: '\f2de'; -} -.fa-meetup:before { - content: '\f2e0'; -} -.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; -} diff --git a/frontend_v2/src/styles/grid.scss b/frontend_v2/src/styles/grid.scss deleted file mode 100644 index 9cfdbf6ac6..0000000000 --- a/frontend_v2/src/styles/grid.scss +++ /dev/null @@ -1,849 +0,0 @@ -/*Bootstrap Grid System*/ -.row { - margin-left: -15px; - margin-right: -15px; -} - -.col-xs-1, -.col-sm-1, -.col-md-1, -.col-lg-1, -.col-xs-2, -.col-sm-2, -.col-md-2, -.col-lg-2, -.col-xs-3, -.col-sm-3, -.col-md-3, -.col-lg-3, -.col-xs-4, -.col-sm-4, -.col-md-4, -.col-lg-4, -.col-xs-5, -.col-sm-5, -.col-md-5, -.col-lg-5, -.col-xs-6, -.col-sm-6, -.col-md-6, -.col-lg-6, -.col-xs-7, -.col-sm-7, -.col-md-7, -.col-lg-7, -.col-xs-8, -.col-sm-8, -.col-md-8, -.col-lg-8, -.col-xs-9, -.col-sm-9, -.col-md-9, -.col-lg-9, -.col-xs-10, -.col-sm-10, -.col-md-10, -.col-lg-10, -.col-xs-11, -.col-sm-11, -.col-md-11, -.col-lg-11, -.col-xs-12, -.col-sm-12, -.col-md-12, -.col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 10px; - padding-right: 10px; -} - -.col-xs-1, -.col-xs-2, -.col-xs-3, -.col-xs-4, -.col-xs-5, -.col-xs-6, -.col-xs-7, -.col-xs-8, -.col-xs-9, -.col-xs-10, -.col-xs-11, -.col-xs-12 { - 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-2, - .col-sm-3, - .col-sm-4, - .col-sm-5, - .col-sm-6, - .col-sm-7, - .col-sm-8, - .col-sm-9, - .col-sm-10, - .col-sm-11, - .col-sm-12 { - 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-2, - .col-md-3, - .col-md-4, - .col-md-5, - .col-md-6, - .col-md-7, - .col-md-8, - .col-md-9, - .col-md-10, - .col-md-11, - .col-md-12 { - 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-2, - .col-lg-3, - .col-lg-4, - .col-lg-5, - .col-lg-6, - .col-lg-7, - .col-lg-8, - .col-lg-9, - .col-lg-10, - .col-lg-11, - .col-lg-12 { - 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%; - } -} - -.clearfix:before, -.clearfix:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after { - content: ' '; - display: table; -} - -.clearfix:after, -.container:after, -.container-fluid:after, -.row:after { - clear: both; -} - -.center-block { - display: block; - margin-left: auto; - margin-right: 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; -} diff --git a/frontend_v2/src/styles/mixins.scss b/frontend_v2/src/styles/mixins.scss deleted file mode 100644 index d918548f51..0000000000 --- a/frontend_v2/src/styles/mixins.scss +++ /dev/null @@ -1,63 +0,0 @@ -/*Mixins for global styles*/ - -@import './variables.scss'; - -/*Box Shadow-------*/ - -@mixin box-shadow($x: 0px, $y: 0px, $blur: 4px, $rad: 0px, $color: $gray-medium) { - box-shadow: $x $y $blur $rad $color; -} - -/*Gradient -------*/ - -@mixin linear-gradient-bg($dir, $from, $to) { - background-image: linear-gradient($dir, $from, $to); -} - -/*Screen size mixins*/ - -@mixin screen-small() { - @media (max-width: $screen-sm) { - @content; - } -} - -@mixin screen-small-medium() { - @media screen and (max-width: $screen-sm) { - @content; - } -} - -@mixin screen-small-medium() { - @media screen and (max-width: $screen-sm-md) { - @content; - } -} - -@mixin screen-medium() { - @media screen and (min-width: $screen-sm-md) and (max-width: $screen-md) { - @content; - } -} - -@mixin screen-large() { - @media screen and (min-width: $screen-md) { - @content; - } -} - -/*Keyframe for animation -------*/ -@mixin keyframes($name) { - @-webkit-keyframes #{$name} { - @content; - } - @-moz-keyframes #{$name} { - @content; - } - @-ms-keyframes #{$name} { - @content; - } - @keyframes #{$name} { - @content; - } -} diff --git a/frontend_v2/src/styles/theming.scss b/frontend_v2/src/styles/theming.scss deleted file mode 100644 index 46ef583272..0000000000 --- a/frontend_v2/src/styles/theming.scss +++ /dev/null @@ -1,24 +0,0 @@ -@import '~@angular/material/theming'; -// Plus imports for other components in your app. - -// Include the common styles for Angular Material. We include this here so that you only -// have to load a single css file for Angular Material in your app. -// Be sure that you only ever include this mixin once! -@include mat-core(); - -// Define the palettes for your theme using the Material Design palettes available in palette.scss -// (imported above). For each palette, you can optionally specify a default, lighter, and darker -// hue. Available color palettes: https://material.io/design/color/ -$app-primary: mat-palette($mat-gray, 900); -$app-accent: mat-palette($mat-blue-gray, A200, A100, A400); - -// The warn palette is optional (defaults to red). -$app-warn: mat-palette($mat-yellow, A400); - -// Create the theme object (a Sass map containing all of the palettes). -$candy-app-theme: mat-light-theme($app-primary, $app-accent, $app-warn); - -// Include theme styles for core and each component used in your app. -// Alternatively, you can import and @include the theme mixins for each component -// that you are using. -@include angular-material-theme($candy-app-theme); diff --git a/frontend_v2/src/styles/variables.scss b/frontend_v2/src/styles/variables.scss deleted file mode 100644 index f87d0587db..0000000000 --- a/frontend_v2/src/styles/variables.scss +++ /dev/null @@ -1,171 +0,0 @@ -/* Color variables */ - -/* Blue Shades */ - -$light-gray: #adb4d0; -$med-gray: #3c3e49; -$dark-gray: #252833; -$blue-dark: #33526e; -$blue-darker: #273e54; -$blue-light: #adb4d0; -$blue-medium: #32485d; -$blue-lighter: #2196f3; -$blue-medium-dark: #056cf0; -$wild-blue: #adb4d0; -$dust-gray: #1a1b1f; -$blue: #3b9eb9; -$wait-blue: #5843a3; -$info-blue: #31708f; - -$teal: #008081; - -/* Black Shades */ -$med-black: #4d4d4d; - -/* Purple Shades */ -$purple-medium: #a178b7; - -/* Red Shades */ - -$red-dark: #252833; -$red-light: #eb8474; -$med-red: #db3232; - -/*black shades*/ - -$shadow-black: #dedede; -$light-black: #9d9d9d; -$med-black: #4d4d4d; -$dark-black: #4d4d4d; - -/*orange shades*/ - -$yellow: #ffaf4b; -$yellow-light: #ffecc8; -$orange: #ff9800; -$orange-light: #ffd99a; -$highlight: #ffaf4b; -$highlight-dark: #ff7b2e; -$med-orange: #df9c3e; -$hover-orange: #da8f27; - -/* Pink Shades */ -$pink-dark: #d7387f; - -/* Red Shades */ - -$red-medium: #d9534f; -$red-light: #eb8474; -$red-dark: #bc2727; -$red-lighter: #ffefec; - -/* Green Shades */ - -$green-medium: #28a745; -$med-green: #74db70; -$green-med: #08a003; - -/* Gray Shades */ - -$gray: #e3e3e3; -$gray-light: #ebebeb; -$gray-medium: #d4d4d4; -$gray-dark: #9d9d9d; -$gray-darker: #273e54; -$gray-lighter: #fafafa; -$dark-black: #4d4d4d; - -/* fire shades */ - -$fire-left: #e0a642; -$fire-right: #de795c; - -/* Overlay Shades */ - -$overlay-darker: rgba(0, 0, 0, 0.87); -$overlay-dark: rgba(0, 0, 0, 0.7); -$overlay-light: rgba(0, 0, 0, 0.2); -$overlay-lighter: rgba(0, 0, 0, 0.05); -$overlay-medium: rgba(0, 0, 0, 0.5); -$white-overlay-light: rgba(255, 255, 255, 0.2); -$white-overlay-medium: rgba(255, 255, 255, 0.5); -$white-overlay-dark: rgba(255, 255, 255, 0.7); -$blue-overlay-dark: #252833; - -/* Font sizes */ - -$fs-12: 12px; -$fs-13: 13px; -$fs-14: 14px; -$fs-15: 15px; -$fs-16: 16px; -$fs-18: 18px; -$fs-20: 20px; -$fs-22: 22px; -$fs-24: 24px; -$fs-30: 30px; -$fs-34: 34px; -$fs-36: 36px; - -/* Font weights */ - -$fw-light: 300; -$fw-regular: 400; -$fw-semibold: 500; -$fw-bold: 600; -$fw-bolder: 700; - -/* Screen Sizes */ - -$screen-sm: 768px; -$screen-sm-md: 992px; -$screen-md: 1130px; -$screen-lg: 1280px; -$screen-xlg: 1441px; - -/*font variable*/ - -$rob-light: 200; -$rob-med: 300; -$rob-reg: 400; -$rob-bold: 600; - -/*transparent*/ - -$transparent: rgba(0, 0, 0, 0); - -/*link colors*/ - -$light-link: #fff; -$med-link: #9ca3be; -$dark-link: #252833; - -/*link hover colors*/ - -$link-hover-dark: #ffaf4b; -$link-hover-light: #fff; - -/*loader variable*/ - -$loader-size: 70px; -$loader-dot-size: ($loader-size / 5); -$loader-height: $loader-dot-size; -$loader-dot-color: #ffaf4b; - -/*border color*/ - -$border-color-light: #e3e3e3; - -/*Screen Size Variables*/ - -$med-screen: 992px; -$small-screen: 600px; - -/*grad new variables*/ - -$grad-super-light: #fafafa; -$grad-light-black: #dcdcdc; -$grad-sec-gray: #45334e; - -/*shadow colors*/ -$super-light-shadow: #ececec; diff --git a/frontend_v2/src/test.ts b/frontend_v2/src/test.ts deleted file mode 100644 index da9049dc63..0000000000 --- a/frontend_v2/src/test.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file is required by karma.conf.js and loads recursively all the .spec and framework files - -import 'zone.js/dist/zone-testing'; -import { getTestBed } from '@angular/core/testing'; -import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; - -declare const require: any; - -// First, initialize the Angular testing environment. -getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting()); -// Then we find all the tests. -const context = require.context('./', true, /\.spec\.ts$/); -// And load the modules. -context.keys().map(context); diff --git a/frontend_v2/src/tsconfig.app.json b/frontend_v2/src/tsconfig.app.json deleted file mode 100644 index 538b978cf6..0000000000 --- a/frontend_v2/src/tsconfig.app.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "outDir": "../out-tsc/app", - "baseUrl": "./", - "module": "es2015", - "types": [] - }, - "exclude": ["test.ts", "**/*.spec.ts"] -} diff --git a/frontend_v2/src/tsconfig.spec.json b/frontend_v2/src/tsconfig.spec.json deleted file mode 100644 index ffab26a1df..0000000000 --- a/frontend_v2/src/tsconfig.spec.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "outDir": "../out-tsc/spec", - "baseUrl": "./", - "module": "commonjs", - "types": ["jasmine", "node"] - }, - "files": ["test.ts", "polyfills.ts"], - "include": ["**/*.spec.ts", "**/*.d.ts"] -} diff --git a/frontend_v2/src/typings.d.ts b/frontend_v2/src/typings.d.ts deleted file mode 100644 index ef5c7bd620..0000000000 --- a/frontend_v2/src/typings.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -/* SystemJS module definition */ -declare var module: NodeModule; -interface NodeModule { - id: string; -} diff --git a/frontend_v2/tsconfig.json b/frontend_v2/tsconfig.json deleted file mode 100644 index f893bd4cb6..0000000000 --- a/frontend_v2/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "outDir": "./dist/out-tsc", - "sourceMap": true, - "declaration": false, - "moduleResolution": "node", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "target": "es5", - "typeRoots": ["node_modules/@types"], - "lib": ["es2017", "dom"], - "module": "es2015", - "baseUrl": "./" - } -} diff --git a/frontend_v2/tslint.json b/frontend_v2/tslint.json deleted file mode 100644 index 2c7cc88920..0000000000 --- a/frontend_v2/tslint.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "rulesDirectory": ["node_modules/codelyzer"], - "rules": { - "arrow-return-shorthand": true, - "callable-types": true, - "class-name": true, - "deprecation": { - "severity": "warn" - }, - "forin": true, - "import-blacklist": [true, "rxjs/Rx"], - "interface-over-type-literal": true, - "label-position": true, - "member-access": false, - "member-ordering": [ - true, - { - "order": ["static-field", "instance-field", "static-method", "instance-method"] - } - ], - "no-arg": true, - "no-bitwise": true, - "no-console": [true, "debug", "info", "time", "timeEnd", "trace"], - "no-construct": true, - "no-debugger": true, - "no-duplicate-super": true, - "no-empty": false, - "no-empty-interface": true, - "no-eval": true, - "no-inferrable-types": [true, "ignore-params"], - "no-misused-new": true, - "no-non-null-assertion": true, - "no-shadowed-variable": true, - "no-string-literal": false, - "no-string-throw": true, - "no-switch-case-fall-through": true, - "no-unnecessary-initializer": true, - "no-unused-expression": true, - "no-use-before-declare": true, - "no-var-keyword": true, - "object-literal-sort-keys": false, - "prefer-const": true, - "radix": true, - "triple-equals": [true, "allow-null-check"], - "unified-signatures": true, - "variable-name": false, - "whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"], - "directive-selector": [true, "attribute", "app", "camelCase"], - "component-selector": [true, "element", "app", "kebab-case"], - "no-output-on-prefix": true, - "use-input-property-decorator": true, - "use-output-property-decorator": true, - "use-host-property-decorator": true, - "no-input-rename": true, - "no-output-rename": true, - "use-life-cycle-interface": true, - "use-pipe-transform-interface": true, - "component-class-suffix": true, - "directive-class-suffix": true - } -} diff --git a/frontend_v2/yarn.lock b/frontend_v2/yarn.lock deleted file mode 100644 index dbda555f13..0000000000 --- a/frontend_v2/yarn.lock +++ /dev/null @@ -1,9180 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@angular-devkit/architect@0.13.10": - version "0.13.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.13.10.tgz#947d3f588e15cc2df3736ff841977a74832a9db7" - integrity sha512-FC+YmeXwFdNMmqnX1nIOkXBQMxWQSbgYz5crWcb7FtOWTNH1IgM/22tZ6lpf3kiAfTtBbnb7oTkA4Y69nUaoQg== - dependencies: - "@angular-devkit/core" "7.3.10" - rxjs "6.3.3" - -"@angular-devkit/build-angular@~0.13.0": - version "0.13.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.13.10.tgz#bdcace32679e5b873709e4f17bfdf5e71168c735" - integrity sha512-wBWZJh89pPHE06WRoUJ+tdGk+yyMGM+3j0I2gduoxmGvgXXjf48tM4QbXZZSJbHkOeYlCiuP/wiVyTkshzCwGA== - dependencies: - "@angular-devkit/architect" "0.13.10" - "@angular-devkit/build-optimizer" "0.13.10" - "@angular-devkit/build-webpack" "0.13.10" - "@angular-devkit/core" "7.3.10" - "@ngtools/webpack" "7.3.10" - ajv "6.9.1" - autoprefixer "9.4.6" - circular-dependency-plugin "5.0.2" - clean-css "4.2.1" - copy-webpack-plugin "5.1.1" - file-loader "3.0.1" - glob "7.1.3" - istanbul-instrumenter-loader "3.0.1" - karma-source-map-support "1.3.0" - less "3.9.0" - less-loader "4.1.0" - license-webpack-plugin "2.1.0" - loader-utils "1.2.3" - mini-css-extract-plugin "0.5.0" - minimatch "3.0.4" - open "6.0.0" - parse5 "4.0.0" - postcss "7.0.14" - postcss-import "12.0.1" - postcss-loader "3.0.0" - raw-loader "1.0.0" - rxjs "6.3.3" - sass-loader "7.1.0" - semver "5.6.0" - source-map-loader "0.2.4" - source-map-support "0.5.10" - speed-measure-webpack-plugin "1.3.1" - stats-webpack-plugin "0.7.0" - style-loader "0.23.1" - stylus "0.54.5" - stylus-loader "3.0.2" - terser-webpack-plugin "1.4.3" - tree-kill "1.2.2" - webpack "4.29.0" - webpack-dev-middleware "3.5.1" - webpack-dev-server "3.1.14" - webpack-merge "4.2.1" - webpack-sources "1.3.0" - webpack-subresource-integrity "1.1.0-rc.6" - optionalDependencies: - node-sass "4.13.1" - -"@angular-devkit/build-optimizer@0.13.10": - version "0.13.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.13.10.tgz#c4c23ec8283a2cd9587246337dad3ce7a2114cf2" - integrity sha512-BbavzPeuq6Sy9uC7FwOQ4DhxXvd8xsFkW8t8bXemQwHFP3BqrulxvelVfStJMN6dvXlC3BKXzFQjSX7wAocSdA== - dependencies: - loader-utils "1.2.3" - source-map "0.5.6" - typescript "3.2.4" - webpack-sources "1.3.0" - -"@angular-devkit/build-webpack@0.13.10": - version "0.13.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.13.10.tgz#566db98ca04a42bf46bbd0d22528a51bd9b4cd4c" - integrity sha512-TiNW1qLRePWORdme1tglAqK1xnAsyqxDQ5qmo3zPyyw1v253CG+yS2kAEAqiHPKwz8E3h9ETNPoaz6jcaAEWeg== - dependencies: - "@angular-devkit/architect" "0.13.10" - "@angular-devkit/core" "7.3.10" - rxjs "6.3.3" - -"@angular-devkit/core@7.3.10": - version "7.3.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-7.3.10.tgz#35f34b54de35c7b3ffec37dd9bc88e369ebc29ea" - integrity sha512-h8Yj2+UfBsPI7jZ8X88tImO/7RPgNWUcKF8Uq/J5eUSN6z0FMO0lluD4sM7X8aikb7RK8MwkwrqB/xfxvvkOow== - dependencies: - ajv "6.9.1" - chokidar "2.0.4" - fast-json-stable-stringify "2.0.0" - rxjs "6.3.3" - source-map "0.7.3" - -"@angular-devkit/schematics@7.3.10": - version "7.3.10" - resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-7.3.10.tgz#2511595093c7d742b5d07acd40dccc6309e15817" - integrity sha512-LMTGQ8kJb80LjTttu0ZqWXddzYtDwjKtMKY9X0A60Iz8/wbGl0j+wYG7KAVoRF0JeieYXs8Dl9KWdjyJyvJ/RA== - dependencies: - "@angular-devkit/core" "7.3.10" - rxjs "6.3.3" - -"@angular/animations@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-7.2.16.tgz#6e3f43df292bc53c3a526dabfd8025b3cd03b070" - integrity sha512-jH7haM3Hgtn1EW9b0Vfq6UqSz+rx3l7k+gJi9tuHEOPZdBTjtv3sNQxmM0IKxzOuTfM8KhRFkUlzyi43kfdp0w== - dependencies: - tslib "^1.9.0" - -"@angular/cdk@^7.3.7": - version "7.3.7" - resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-7.3.7.tgz#ce1ad53ba04beb9c8e950acc5691ea0143753764" - integrity sha512-xbXxhHHKGkVuW6K7pzPmvpJXIwpl0ykBnvA2g+/7Sgy5Pd35wCC+UtHD9RYczDM/mkygNxMQtagyCErwFnDtQA== - dependencies: - tslib "^1.7.1" - optionalDependencies: - parse5 "^5.0.0" - -"@angular/cli@^7.3.8": - version "7.3.10" - resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-7.3.10.tgz#19125713fd51bb6dcfa7f681f6a3facd6d930589" - integrity sha512-ikSwYa3Pc8GkfyoQ+bzblxyuPnKzNYD6SRVbO4CXUbTJB+NmOCNEV3LTwwMANVBp4Z6fBMdUZccJdFbT4FbG2Q== - dependencies: - "@angular-devkit/architect" "0.13.10" - "@angular-devkit/core" "7.3.10" - "@angular-devkit/schematics" "7.3.10" - "@schematics/angular" "7.3.10" - "@schematics/update" "0.13.10" - "@yarnpkg/lockfile" "1.1.0" - ini "1.3.5" - inquirer "6.2.1" - npm-package-arg "6.1.0" - open "6.0.0" - pacote "9.4.0" - semver "5.6.0" - symbol-observable "1.2.0" - -"@angular/common@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/common/-/common-7.2.16.tgz#72127b5ed7d75a400c58b9bd6c2cd691f47c8096" - integrity sha512-lPo2Vt5zmKeKTdMxHMUuViouMiK4QsmO6dGTIhJ7QAx9mov0QYb4sUVKN9Ix32Aeeznaa97qJnhevyDncJqvSA== - dependencies: - tslib "^1.9.0" - -"@angular/compiler-cli@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-7.2.16.tgz#7936acb5bcc2e53739c09b475de6eb3b27fea9c9" - integrity sha512-3PK0Rlepvsy+MSw5oZEl26j+7E1hBI42T5+7hpZxf/c3vcPRORZ71oR3Ez/q51D2rkvovv8m8Ihv0Xjs0xDibQ== - dependencies: - canonical-path "1.0.0" - chokidar "^2.1.1" - convert-source-map "^1.5.1" - dependency-graph "^0.7.2" - magic-string "^0.25.0" - minimist "^1.2.0" - reflect-metadata "^0.1.2" - shelljs "^0.8.1" - source-map "^0.6.1" - tslib "^1.9.0" - yargs "13.1.0" - -"@angular/compiler@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-7.2.16.tgz#081f58e9f50399ff0eef346fff37c9c6201cda8d" - integrity sha512-8iX+E9Cnet2167RdP8wM5PGPoEnw/jZNvHrtTRHs4g53n/Rg45iLmE9qFzxCqXGBmUO9LXKYdcXnettFKFLifg== - dependencies: - tslib "^1.9.0" - -"@angular/core@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/core/-/core-7.2.16.tgz#317f707bc75ca5a90ba470c34e49e6adb7026e85" - integrity sha512-z1RuBinuYeC4KLv8Z95YOgIQLd4nkoApdxkIZaWALwSkgeBuHJn4bCBn2cL0gJ/KO2x18TiTU5HuC+uyBt0AVQ== - dependencies: - tslib "^1.9.0" - -"@angular/forms@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-7.2.16.tgz#18769a2203edf87a1cc279dc2145da62b82f144e" - integrity sha512-50JTXco6w1HOi5o6RQ6PVSR0tD4Y2aRcCFBfLXvzDi78aZOSEdOYaSm78RDUNzGCbjwdMCIbX8eOdQgUUtsEFA== - dependencies: - tslib "^1.9.0" - -"@angular/http@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/http/-/http-7.2.16.tgz#f05337dd56faa86ce05b0dc378218a00fb337040" - integrity sha512-yvjbNyzFSmmz4UTjCdy5M8mk0cZqf9TvSf8yN5UVIwtw4joyuUdlgJCuin0qSbQOKIf/JjHoofpO2JkPCGSNww== - dependencies: - tslib "^1.9.0" - -"@angular/language-service@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-7.2.16.tgz#920805f110e82f16bf3e1606fd423f82a3a7a85b" - integrity sha512-a/Bqf19+YhqACxQOkpYB0HK/zjHqDrZVUyBtdiX17njuvlWgD4wvdtdxae//ZeIVHNDJS+G5Gelbe+Yzon+VGA== - -"@angular/material@^7.2.0": - version "7.3.7" - resolved "https://registry.yarnpkg.com/@angular/material/-/material-7.3.7.tgz#dcd95e6618ba6254c5880efee1aad349cf5b9140" - integrity sha512-Eq+7frkeNGkLOfEtmkmJgR+AgoWajOipXZWWfCSamNfpCcPof82DwvGOpAmgGni9FuN2XFQdqP5MoaffQzIvUA== - dependencies: - tslib "^1.7.1" - -"@angular/platform-browser-dynamic@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-7.2.16.tgz#57f7f11cece3a3109a821d20b3456d94419718d4" - integrity sha512-xsQ0qB54h7oY5UATK9VW25Y4dvG7uQe9+X4cf/GWB+R3eCzP8J9Ekxs4VU9y2ujlQkD64PV8gpKu0FHFh7wjIQ== - dependencies: - tslib "^1.9.0" - -"@angular/platform-browser@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-7.2.16.tgz#c14d47108e47ac6b2ebbad06fdd69f952b29df32" - integrity sha512-6LltxoPlbtUgSec5a+BGPHZ0UYdqFizxSsplC1PoJdqH17DDxQjxcluAfXnLlvOYFSSPvYa73PSOpmUU2vp4gA== - dependencies: - tslib "^1.9.0" - -"@angular/router@^7.2.15": - version "7.2.16" - resolved "https://registry.yarnpkg.com/@angular/router/-/router-7.2.16.tgz#7518a387ff959c13ba2648ce52e0bcd48f3292ca" - integrity sha512-SXDfkoGVUHhy83K+sR+39mmqTs4nSUh4DZbhFe4gii+mgAtBvlbeH8KBCqPNf7xq24aadyI2LCSGnGwgVKmXrA== - dependencies: - tslib "^1.9.0" - -"@babel/code-frame@^7.0.0": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" - integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== - dependencies: - "@babel/highlight" "^7.10.1" - -"@babel/helper-validator-identifier@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" - integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== - -"@babel/highlight@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" - integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== - dependencies: - "@babel/helper-validator-identifier" "^7.10.1" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/runtime@^7.3.1": - version "7.10.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839" - integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg== - dependencies: - regenerator-runtime "^0.13.4" - -"@compodoc/compodoc@^1.1.2": - version "1.1.11" - resolved "https://registry.yarnpkg.com/@compodoc/compodoc/-/compodoc-1.1.11.tgz#44df8522479e5039911d8b2f10c24198831c5ede" - integrity sha512-3PGTf64Eug1SIcdQole2KkVftBMFjKzecBytLHy4+MQYcblAQM0O3a4GoxuWwN7cTawVq4eqSJTtf6My1I/oHA== - dependencies: - "@compodoc/ngd-transformer" "^2.0.0" - chalk "^2.4.2" - cheerio "^1.0.0-rc.3" - chokidar "^3.1.1" - colors "^1.4.0" - commander "^3.0.2" - cosmiconfig "^5.2.1" - decache "^4.5.1" - fancy-log "^1.3.3" - findit2 "^2.2.3" - fs-extra "^8.0.1" - glob "^7.1.4" - handlebars "^4.3.3" - html-entities "^1.2.1" - i18next "^17.0.16" - inside "^1.0.0" - json5 "^2.1.0" - live-server "^1.2.1" - lodash "^4.17.15" - loglevel "^1.6.4" - loglevel-plugin-prefix "^0.8.4" - lunr "^2.3.6" - marked "^0.7.0" - minimist "^1.2.0" - opencollective-postinstall "^2.0.2" - os-name "^3.1.0" - pdfmake "^0.1.60" - semver "^6.3.0" - traverse "^0.6.6" - ts-simple-ast "12.4.0" - uuid "^3.3.3" - -"@compodoc/ngd-core@~2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@compodoc/ngd-core/-/ngd-core-2.0.0.tgz#e31a6cbbdfa8de648b027aa4169468bc496544c9" - integrity sha512-6HpYvXRZBdIYFojWxW5EVNkhYPmblytCve62CNoYBSWfy++vTGH7Ypg2Bhjg2CsqeV8JOVxrPO7JM9M3MgWKEA== - dependencies: - ansi-colors "^1.0.1" - fancy-log "^1.3.2" - typescript "^2.4.2" - -"@compodoc/ngd-transformer@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@compodoc/ngd-transformer/-/ngd-transformer-2.0.0.tgz#89e858dd332198cde262f0cf3648bd0969d0da62" - integrity sha512-9J0KkmuuuvDHxH0oREgrgbqdEFqcltQXIBofeYdIyMKzI3A+pN1Ji4zfi7x1ql0Ax7qQKemp8XWP+cCpP0qY+w== - dependencies: - "@compodoc/ngd-core" "~2.0.0" - dot "^1.1.1" - fs-extra "^4.0.1" - viz.js "^1.8.0" - -"@dsherret/to-absolute-glob@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@dsherret/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1f6475dc8bd974cea07a2daf3864b317b1dd332c" - integrity sha1-H2R13IvZdM6gei2vOGSzF7HdMyw= - dependencies: - is-absolute "^1.0.0" - is-negated-glob "^1.0.0" - -"@mrmlnc/readdir-enhanced@^2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" - integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== - dependencies: - call-me-maybe "^1.0.1" - glob-to-regexp "^0.3.0" - -"@ngtools/webpack@7.3.10": - version "7.3.10" - resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-7.3.10.tgz#8de9ada73faf1d254fca3d03519a31cde1858e77" - integrity sha512-2NVylZt3ybnBCRky+R4JTMXUGeJjoqRQ2OzCd5STjyyWE5tjPKbxMjF4claO3kl2ep09ML0QPi7ngZrZVTcEqA== - dependencies: - "@angular-devkit/core" "7.3.10" - enhanced-resolve "4.1.0" - rxjs "6.3.3" - tree-kill "1.2.2" - webpack-sources "1.3.0" - -"@nodelib/fs.stat@^1.1.2": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" - integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== - -"@schematics/angular@7.3.10": - version "7.3.10" - resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-7.3.10.tgz#0f94e9d206c6a240f832f1cd5d0e6b65deb0dc28" - integrity sha512-R/oBE5Nbs/meMVqLLFjeVf3G+ROJAPtRbiJ+22EZ6V63RQfLbW37zX+z3Wv7yD9URtYE7X9Ojtz9WEfmSzBPUg== - dependencies: - "@angular-devkit/core" "7.3.10" - "@angular-devkit/schematics" "7.3.10" - typescript "3.2.4" - -"@schematics/update@0.13.10": - version "0.13.10" - resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.13.10.tgz#9b2af40454dba42136a4dcec438fe77e224cfdd2" - integrity sha512-X02qa+rpeD6+eacR0fy+Yr+OKrj3FTpod9TkfshMa1WwIFoWlshF/bpPmLoMGXOD+zCYoHrPimpkvEFPjOvCDQ== - dependencies: - "@angular-devkit/core" "7.3.10" - "@angular-devkit/schematics" "7.3.10" - "@yarnpkg/lockfile" "1.1.0" - ini "1.3.5" - pacote "9.4.0" - rxjs "6.3.3" - semver "5.6.0" - semver-intersect "1.4.0" - -"@types/color-name@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" - integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - -"@types/jasmine@*": - version "3.5.10" - resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.10.tgz#a1a41012012b5da9d4b205ba9eba58f6cce2ab7b" - integrity sha512-3F8qpwBAiVc5+HPJeXJpbrl+XjawGmciN5LgiO7Gv1pl1RHtjoMNqZpqEksaPJW05ViKe8snYInRs6xB25Xdew== - -"@types/jasmine@~2.8.3": - version "2.8.16" - resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.8.16.tgz#a6cb24b1149d65293bd616923500014838e14e7d" - integrity sha512-056oRlBBp7MDzr+HoU5su099s/s7wjZ3KcHxLfv+Byqb9MwdLUvsfLgw1VS97hsh3ddxSPyQu+olHMnoVTUY6g== - -"@types/jasminewd2@~2.0.2": - version "2.0.8" - resolved "https://registry.yarnpkg.com/@types/jasminewd2/-/jasminewd2-2.0.8.tgz#67afe5098d5ef2386073a7b7384b69a840dfe93b" - integrity sha512-d9p31r7Nxk0ZH0U39PTH0hiDlJ+qNVGjlt1ucOoTUptxb2v+Y5VMnsxfwN+i3hK4yQnqBi3FMmoMFcd1JHDxdg== - dependencies: - "@types/jasmine" "*" - -"@types/minimatch@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" - integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== - -"@types/moment-timezone@^0.5.12": - version "0.5.13" - resolved "https://registry.yarnpkg.com/@types/moment-timezone/-/moment-timezone-0.5.13.tgz#0317ccc91eb4c7f4901704166166395c39276528" - integrity sha512-SWk1qM8DRssS5YR9L4eEX7WUhK/wc96aIr4nMa6p0kTk9YhGGOJjECVhIdPEj13fvJw72Xun69gScXSZ/UmcPg== - dependencies: - moment ">=2.14.0" - -"@types/node@*": - version "14.0.6" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.6.tgz#f9e178b2da31a4b0ec60b64649e244c31ce18daf" - integrity sha512-FbNmu4F67d3oZMWBV6Y4MaPER+0EpE9eIYf2yaHhCWovc1dlXCZkqGX4NLHfVVr6umt20TNBdRzrNJIzIKfdbw== - -"@types/node@^6.0.46": - version "6.14.10" - resolved "https://registry.yarnpkg.com/@types/node/-/node-6.14.10.tgz#d9ce598127eb0cc02821476862d11389cb01f6a4" - integrity sha512-pF4HjZGSog75kGq7B1InK/wt/N08BuPATo+7HRfv7gZUzccebwv/fmWVGs/j6LvSiLWpCuGGhql51M/wcQsNzA== - -"@types/node@~6.0.60": - version "6.0.118" - resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.118.tgz#8014a9b1dee0b72b4d7cd142563f1af21241c3a2" - integrity sha512-N33cKXGSqhOYaPiT4xUGsYlPPDwFtQM/6QxJxuMXA/7BcySW+lkn2yigWP7vfs4daiL/7NJNU6DMCqg5N4B+xQ== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/q@^0.0.32": - version "0.0.32" - resolved "https://registry.yarnpkg.com/@types/q/-/q-0.0.32.tgz#bd284e57c84f1325da702babfc82a5328190c0c5" - integrity sha1-vShOV8hPEyXacCur/IKlMoGQwMU= - -"@types/selenium-webdriver@^2.53.35", "@types/selenium-webdriver@~2.53.39": - version "2.53.45" - resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-2.53.45.tgz#a82e59dd89a4e6e826a005d1d8e52981e6f8a479" - integrity sha512-/DJGXtMuklLQef49qDsmjQofzaGU6D5To2xJZRLBNZO4GLAi30IjxLy6hHRQdycXP+IZKKXqJhYyNJ53SglJ8w== - -"@types/source-list-map@*": - version "0.1.2" - resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" - integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== - -"@types/strip-bom@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" - integrity sha1-FKjsOVbC6B7bdSB5CuzyHCkK69I= - -"@types/strip-json-comments@0.0.30": - version "0.0.30" - resolved "https://registry.yarnpkg.com/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz#9aa30c04db212a9a0649d6ae6fd50accc40748a1" - integrity sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ== - -"@types/webpack-sources@^0.1.5": - version "0.1.7" - resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.7.tgz#0a330a9456113410c74a5d64180af0cbca007141" - integrity sha512-XyaHrJILjK1VHVC4aVlKsdNN5KBTwufMb43cQs+flGxtPAf/1Qwl8+Q0tp5BwEGaI8D6XT1L+9bSWXckgkjTLw== - dependencies: - "@types/node" "*" - "@types/source-list-map" "*" - source-map "^0.6.1" - -"@webassemblyjs/ast@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz#b988582cafbb2b095e8b556526f30c90d057cace" - integrity sha512-ZEzy4vjvTzScC+SH8RBssQUawpaInUdMTYwYYLh54/s8TuT0gBLuyUnppKsVyZEi876VmmStKsUs28UxPgdvrA== - dependencies: - "@webassemblyjs/helper-module-context" "1.7.11" - "@webassemblyjs/helper-wasm-bytecode" "1.7.11" - "@webassemblyjs/wast-parser" "1.7.11" - -"@webassemblyjs/floating-point-hex-parser@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz#a69f0af6502eb9a3c045555b1a6129d3d3f2e313" - integrity sha512-zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg== - -"@webassemblyjs/helper-api-error@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz#c7b6bb8105f84039511a2b39ce494f193818a32a" - integrity sha512-7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg== - -"@webassemblyjs/helper-buffer@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz#3122d48dcc6c9456ed982debe16c8f37101df39b" - integrity sha512-MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w== - -"@webassemblyjs/helper-code-frame@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz#cf8f106e746662a0da29bdef635fcd3d1248364b" - integrity sha512-T8ESC9KMXFTXA5urJcyor5cn6qWeZ4/zLPyWeEXZ03hj/x9weSokGNkVCdnhSabKGYWxElSdgJ+sFa9G/RdHNw== - dependencies: - "@webassemblyjs/wast-printer" "1.7.11" - -"@webassemblyjs/helper-fsm@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz#df38882a624080d03f7503f93e3f17ac5ac01181" - integrity sha512-nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A== - -"@webassemblyjs/helper-module-context@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz#d874d722e51e62ac202476935d649c802fa0e209" - integrity sha512-JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg== - -"@webassemblyjs/helper-wasm-bytecode@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz#dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06" - integrity sha512-cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ== - -"@webassemblyjs/helper-wasm-section@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz#9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a" - integrity sha512-8ZRY5iZbZdtNFE5UFunB8mmBEAbSI3guwbrsCl4fWdfRiAcvqQpeqd5KHhSWLL5wuxo53zcaGZDBU64qgn4I4Q== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-buffer" "1.7.11" - "@webassemblyjs/helper-wasm-bytecode" "1.7.11" - "@webassemblyjs/wasm-gen" "1.7.11" - -"@webassemblyjs/ieee754@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz#c95839eb63757a31880aaec7b6512d4191ac640b" - integrity sha512-Mmqx/cS68K1tSrvRLtaV/Lp3NZWzXtOHUW2IvDvl2sihAwJh4ACE0eL6A8FvMyDG9abes3saB6dMimLOs+HMoQ== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz#d7267a1ee9c4594fd3f7e37298818ec65687db63" - integrity sha512-vuGmgZjjp3zjcerQg+JA+tGOncOnJLWVkt8Aze5eWQLwTQGNgVLcyOTqgSCxWTR4J42ijHbBxnuRaL1Rv7XMdw== - dependencies: - "@xtuc/long" "4.2.1" - -"@webassemblyjs/utf8@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz#06d7218ea9fdc94a6793aa92208160db3d26ee82" - integrity sha512-C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA== - -"@webassemblyjs/wasm-edit@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz#8c74ca474d4f951d01dbae9bd70814ee22a82005" - integrity sha512-FUd97guNGsCZQgeTPKdgxJhBXkUbMTY6hFPf2Y4OedXd48H97J+sOY2Ltaq6WGVpIH8o/TGOVNiVz/SbpEMJGg== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-buffer" "1.7.11" - "@webassemblyjs/helper-wasm-bytecode" "1.7.11" - "@webassemblyjs/helper-wasm-section" "1.7.11" - "@webassemblyjs/wasm-gen" "1.7.11" - "@webassemblyjs/wasm-opt" "1.7.11" - "@webassemblyjs/wasm-parser" "1.7.11" - "@webassemblyjs/wast-printer" "1.7.11" - -"@webassemblyjs/wasm-gen@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz#9bbba942f22375686a6fb759afcd7ac9c45da1a8" - integrity sha512-U/KDYp7fgAZX5KPfq4NOupK/BmhDc5Kjy2GIqstMhvvdJRcER/kUsMThpWeRP8BMn4LXaKhSTggIJPOeYHwISA== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-wasm-bytecode" "1.7.11" - "@webassemblyjs/ieee754" "1.7.11" - "@webassemblyjs/leb128" "1.7.11" - "@webassemblyjs/utf8" "1.7.11" - -"@webassemblyjs/wasm-opt@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz#b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7" - integrity sha512-XynkOwQyiRidh0GLua7SkeHvAPXQV/RxsUeERILmAInZegApOUAIJfRuPYe2F7RcjOC9tW3Cb9juPvAC/sCqvg== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-buffer" "1.7.11" - "@webassemblyjs/wasm-gen" "1.7.11" - "@webassemblyjs/wasm-parser" "1.7.11" - -"@webassemblyjs/wasm-parser@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz#6e3d20fa6a3519f6b084ef9391ad58211efb0a1a" - integrity sha512-6lmXRTrrZjYD8Ng8xRyvyXQJYUQKYSXhJqXOBLw24rdiXsHAOlvw5PhesjdcaMadU/pyPQOJ5dHreMjBxwnQKg== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-api-error" "1.7.11" - "@webassemblyjs/helper-wasm-bytecode" "1.7.11" - "@webassemblyjs/ieee754" "1.7.11" - "@webassemblyjs/leb128" "1.7.11" - "@webassemblyjs/utf8" "1.7.11" - -"@webassemblyjs/wast-parser@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz#25bd117562ca8c002720ff8116ef9072d9ca869c" - integrity sha512-lEyVCg2np15tS+dm7+JJTNhNWq9yTZvi3qEhAIIOaofcYlUp0UR5/tVqOwa/gXYr3gjwSZqw+/lS9dscyLelbQ== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/floating-point-hex-parser" "1.7.11" - "@webassemblyjs/helper-api-error" "1.7.11" - "@webassemblyjs/helper-code-frame" "1.7.11" - "@webassemblyjs/helper-fsm" "1.7.11" - "@xtuc/long" "4.2.1" - -"@webassemblyjs/wast-printer@1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz#c4245b6de242cb50a2cc950174fdbf65c78d7813" - integrity sha512-m5vkAsuJ32QpkdkDOUPGSltrg8Cuk3KBx4YrmAGQwCZPRdUHXxG4phIOuuycLemHFr74sWL9Wthqss4fzdzSwg== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/wast-parser" "1.7.11" - "@xtuc/long" "4.2.1" - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8" - integrity sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g== - -"@yarnpkg/lockfile@1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" - integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== - -JSONStream@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== - dependencies: - mime-types "~2.1.24" - negotiator "0.6.2" - -acorn-dynamic-import@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" - integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - -acorn-node@^1.3.0: - version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e" - integrity sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ== - -acorn@^6.0.5: - version "6.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== - -acorn@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" - integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== - -adm-zip@0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.4.tgz#a61ed5ae6905c3aea58b3a657d25033091052736" - integrity sha1-ph7VrmkFw66lizplfSUDMJEFJzY= - -adm-zip@^0.4.7, adm-zip@^0.4.9: - version "0.4.14" - resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.14.tgz#2cf312bcc9f8875df835b0f6040bd89be0a727a9" - integrity sha512-/9aQCnQHF+0IiCl0qhXoK7qs//SwYE7zX8lsr/DNk1BRAHYxeLZPL4pguwK29gUEqasYQjqPtEpDRSWEkdHn9g== - -after@0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" - integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= - -agent-base@2: - version "2.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" - integrity sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc= - dependencies: - extend "~3.0.0" - semver "~5.0.1" - -agent-base@4, agent-base@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" - integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== - dependencies: - es6-promisify "^5.0.0" - -agent-base@~4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" - integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg== - dependencies: - es6-promisify "^5.0.0" - -agentkeepalive@^3.4.1: - version "3.5.2" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67" - integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ== - dependencies: - humanize-ms "^1.2.1" - -ajv-errors@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" - integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== - -ajv-keywords@^3.1.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" - integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== - -ajv@6.9.1: - version "6.9.1" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.9.1.tgz#a4d3683d74abc5670e75f0b16520f70a20ea8dc1" - integrity sha512-XDN92U311aINL77ieWHmqCcNlwjoP5cHXDxIxbf2MaPYuCXOHS7gHH8jktxeK5omgd52XbSTX6a4Piwd1pQmzA== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^5.0.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - -ajv@^6.1.0, ajv@^6.5.5: - version "6.12.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" - integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= - -ansi-colors@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" - integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== - dependencies: - ansi-wrap "^0.1.0" - -ansi-colors@^3.0.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" - integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== - -ansi-escapes@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - -ansi-gray@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" - integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= - dependencies: - ansi-wrap "0.1.0" - -ansi-html@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" - integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" - integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== - dependencies: - "@types/color-name" "^1.1.1" - color-convert "^2.0.1" - -ansi-wrap@0.1.0, ansi-wrap@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -apache-crypt@^1.1.2: - version "1.2.4" - resolved "https://registry.yarnpkg.com/apache-crypt/-/apache-crypt-1.2.4.tgz#fc0aacb7877d64d26420cadf923bcd53e79fb34e" - integrity sha512-Icze5ny5W5uv3xgMgl8U+iGmRCC0iIDrb2PVPuRBtL3Zy1Y5TMewXP1Vtc4r5X9eNNBEk7KYPu0Qby9m/PmcHg== - dependencies: - unix-crypt-td-js "^1.1.4" - -apache-md5@^1.0.6: - version "1.1.5" - resolved "https://registry.yarnpkg.com/apache-md5/-/apache-md5-1.1.5.tgz#5d6365ece2ccc32b612f886b2b292e1c96ff3ffb" - integrity sha512-sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw== - -app-root-path@^2.1.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a" - integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA== - -append-transform@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" - integrity sha1-126/jKlNJ24keja61EpLdKthGZE= - dependencies: - default-require-extensions "^1.0.0" - -aproba@^1.0.3, aproba@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-differ@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" - integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE= - -array-differ@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" - integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== - -array-find-index@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= - -array-flatten@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -array-from@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" - integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= - -array-union@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= - dependencies: - array-uniq "^1.0.1" - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array-uniq@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -arraybuffer.slice@~0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" - integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== - -arrify@^1.0.0, arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= - -arrify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= - -asn1.js@^4.0.0: - version "4.10.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - -assert@^1.1.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== - dependencies: - object-assign "^4.1.1" - util "0.10.3" - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -ast-transform@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/ast-transform/-/ast-transform-0.0.0.tgz#74944058887d8283e189d954600947bc98fe0062" - integrity sha1-dJRAWIh9goPhidlUYAlHvJj+AGI= - dependencies: - escodegen "~1.2.0" - esprima "~1.0.4" - through "~2.3.4" - -ast-types@^0.7.0: - version "0.7.8" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.7.8.tgz#902d2e0d60d071bdcd46dc115e1809ed11c138a9" - integrity sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk= - -async-each@^1.0.0, async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== - -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= - -async-limiter@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" - integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== - -async@^2.1.4, async@^2.5.0, async@^2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== - dependencies: - lodash "^4.17.14" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -autoprefixer@9.4.6: - version "9.4.6" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.6.tgz#0ace275e33b37de16b09a5547dbfe73a98c1d446" - integrity sha512-Yp51mevbOEdxDUy5WjiKtpQaecqYq9OqZSL04rSoCiry7Tc5I9FEyo3bfxiTJc1DfHeKwSFCUYbBAiOQ2VGfiw== - dependencies: - browserslist "^4.4.1" - caniuse-lite "^1.0.30000929" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - postcss "^7.0.13" - postcss-value-parser "^3.3.1" - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - -aws4@^1.8.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" - integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== - -babel-code-frame@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - -babel-generator@^6.18.0: - version "6.26.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" - integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.7" - trim-right "^1.0.1" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= - dependencies: - babel-runtime "^6.22.0" - -babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.16.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.18.0, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.18.0, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== - -backo2@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" - integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base64-arraybuffer@0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" - integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= - -base64-js@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" - integrity sha1-EQHpVE9KdrG8OybUUsqW16NeeXg= - -base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" - integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== - -base64id@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" - integrity sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY= - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -basic-auth@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" - integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== - dependencies: - safe-buffer "5.1.2" - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - dependencies: - tweetnacl "^0.14.3" - -bcryptjs@^2.3.0: - version "2.4.3" - resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz#9ab5627b93e60621ff7cdac5da9733027df1d0cb" - integrity sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms= - -better-assert@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" - integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= - dependencies: - callsite "1.0.0" - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - -binary-extensions@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" - integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== - -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -blob@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" - integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== - -block-stream@*: - version "0.0.9" - resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" - integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= - dependencies: - inherits "~2.0.0" - -blocking-proxy@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/blocking-proxy/-/blocking-proxy-0.0.5.tgz#462905e0dcfbea970f41aa37223dda9c07b1912b" - integrity sha1-RikF4Nz76pcPQao3Ij3anAexkSs= - dependencies: - minimist "^1.2.0" - -bluebird@^3.3.0, bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" - integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== - -body-parser@1.19.0, body-parser@^1.16.1: - version "1.19.0" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== - dependencies: - bytes "3.1.0" - content-type "~1.0.4" - debug "2.6.9" - depd "~1.1.2" - http-errors "1.7.2" - iconv-lite "0.4.24" - on-finished "~2.3.0" - qs "6.7.0" - raw-body "2.4.0" - type-is "~1.6.17" - -bonjour@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" - integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU= - dependencies: - array-flatten "^2.1.0" - deep-equal "^1.0.1" - dns-equal "^1.0.0" - dns-txt "^2.0.2" - multicast-dns "^6.0.1" - multicast-dns-service-types "^1.1.0" - -boolbase@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^2.3.0, braces@^2.3.1, braces@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brfs@^2.0.0, brfs@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/brfs/-/brfs-2.0.2.tgz#44237878fa82aa479ce4f5fe2c1796ec69f07845" - integrity sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ== - dependencies: - quote-stream "^1.0.1" - resolve "^1.1.5" - static-module "^3.0.2" - through2 "^2.0.0" - -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= - -brotli@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/brotli/-/brotli-1.3.2.tgz#525a9cad4fcba96475d7d388f6aecb13eed52f46" - integrity sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y= - dependencies: - base64-js "^1.1.2" - -browser-resolve@^1.8.1: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== - dependencies: - resolve "1.1.7" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-optional@^1.0.0, browserify-optional@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-optional/-/browserify-optional-1.0.1.tgz#1e13722cfde0d85f121676c2a72ced533a018869" - integrity sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk= - dependencies: - ast-transform "0.0.0" - ast-types "^0.7.0" - browser-resolve "^1.8.1" - -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" - integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== - dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.2" - inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserslist@^4.4.1: - version "4.16.6" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== - dependencies: - caniuse-lite "^1.0.30001219" - colorette "^1.2.2" - electron-to-chromium "^1.3.723" - escalade "^3.1.1" - node-releases "^1.1.71" - -buffer-alloc-unsafe@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== - -buffer-alloc@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== - dependencies: - buffer-alloc-unsafe "^1.1.0" - buffer-fill "^1.0.0" - -buffer-equal@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" - integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= - -buffer-fill@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer-indexof@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" - integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= - -buffer@^4.3.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -builtin-modules@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= - -builtins@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" - integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= - -bytes@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== - -cacache@^11.3.2, cacache@^11.3.3: - version "11.3.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc" - integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA== - dependencies: - bluebird "^3.5.5" - chownr "^1.1.1" - figgy-pudding "^3.5.1" - glob "^7.1.4" - graceful-fs "^4.1.15" - lru-cache "^5.1.1" - mississippi "^3.0.0" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - promise-inflight "^1.0.1" - rimraf "^2.6.3" - ssri "^6.0.1" - unique-filename "^1.1.1" - y18n "^4.0.0" - -cacache@^12.0.2, cacache@^12.0.3: - version "12.0.4" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" - integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== - dependencies: - bluebird "^3.5.5" - chownr "^1.1.1" - figgy-pudding "^3.5.1" - glob "^7.1.4" - graceful-fs "^4.1.15" - infer-owner "^1.0.3" - lru-cache "^5.1.1" - mississippi "^3.0.0" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - promise-inflight "^1.0.1" - rimraf "^2.6.3" - ssri "^6.0.1" - unique-filename "^1.1.1" - y18n "^4.0.0" - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -call-me-maybe@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" - integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= - -caller-callsite@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" - integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= - dependencies: - callsites "^2.0.0" - -caller-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" - integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= - dependencies: - caller-callsite "^2.0.0" - -callsite@1.0.0, callsite@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" - integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= - -callsites@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= - dependencies: - camelcase "^2.0.0" - map-obj "^1.0.0" - -camelcase@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= - -camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= - -camelcase@^5.0.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30001219: - version "1.0.30001230" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz#8135c57459854b2240b57a4a6786044bdc5a9f71" - integrity sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ== - -canonical-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/canonical-path/-/canonical-path-1.0.0.tgz#fcb470c23958def85081856be7a86e904f180d1d" - integrity sha512-feylzsbDxi1gPZ1IjystzIQZagYYLvfKrSuygUCgf7z6x790VEzze5QEkdSV1U58RA7Hi0+v6fv4K54atOzATg== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - -chalk@^1.1.1, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -cheerio@^1.0.0-rc.3: - version "1.0.0-rc.3" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" - integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== - dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.1" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash "^4.15.0" - parse5 "^3.0.1" - -chokidar@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" - integrity sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.0" - braces "^2.3.0" - glob-parent "^3.1.0" - inherits "^2.0.1" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - lodash.debounce "^4.0.8" - normalize-path "^2.1.1" - path-is-absolute "^1.0.0" - readdirp "^2.0.0" - upath "^1.0.5" - optionalDependencies: - fsevents "^1.2.2" - -chokidar@^2.0.0, chokidar@^2.0.4, chokidar@^2.1.1, chokidar@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" - integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" - -chokidar@^3.0.0, chokidar@^3.1.1, chokidar@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" - integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== - dependencies: - anymatch "~3.1.1" - braces "~3.0.2" - glob-parent "~5.1.0" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.4.0" - optionalDependencies: - fsevents "~2.1.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chrome-trace-event@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== - dependencies: - tslib "^1.9.0" - -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -circular-dependency-plugin@5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/circular-dependency-plugin/-/circular-dependency-plugin-5.0.2.tgz#da168c0b37e7b43563fb9f912c1c007c213389ef" - integrity sha512-oC7/DVAyfcY3UWKm0sN/oVoDedQDQiw/vIiAnuTWTpE5s0zWf7l3WY417Xw/Fbi/QbAjctAkxgMiS9P0s3zkmA== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -clean-css@4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" - integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== - dependencies: - source-map "~0.6.0" - -cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= - dependencies: - restore-cursor "^2.0.0" - -cli-width@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== - -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - -cliui@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" - integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== - dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - wrap-ansi "^2.0.0" - -clone-deep@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" - integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ== - dependencies: - for-own "^1.0.0" - is-plain-object "^2.0.4" - kind-of "^6.0.0" - shallow-clone "^1.0.0" - -clone@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= - -clone@^2.1.1, clone@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" - integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - -code-block-writer@^7.2.0: - version "7.3.1" - resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-7.3.1.tgz#b3b921b885fe7fb869866c0648491eae6c08cfa9" - integrity sha512-3Jfe6ZmmGzvdQWFo3MUzobn3WdX++jc3Tj0rsviJWYPnP7NGMFEE4qheNeOXeJgB1TTgxYT8XuNvhS/u596yGg== - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - -codelyzer@^4.0.1: - version "4.5.0" - resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-4.5.0.tgz#a65ddeeeca2894653253a89bfa229118ff9f59b1" - integrity sha512-oO6vCkjqsVrEsmh58oNlnJkRXuA30hF8cdNAQV9DytEalDwyOFRvHMnlKFzmOStNerOmPGZU9GAHnBo4tGvtiQ== - dependencies: - app-root-path "^2.1.0" - css-selector-tokenizer "^0.7.0" - cssauron "^1.4.0" - semver-dsl "^1.0.1" - source-map "^0.5.7" - sprintf-js "^1.1.1" - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -colorette@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== - -colors@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" - integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM= - -colors@^1.1.0, colors@^1.4.0, colors@latest: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^2.12.1, commander@^2.20.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/commander/-/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e" - integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -compare-versions@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" - integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== - -component-bind@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" - integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= - -component-emitter@1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" - integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -component-inherit@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" - integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.5.2: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -concat-stream@^1.5.0, concat-stream@~1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -connect-history-api-fallback@^1.3.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" - integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== - -connect@^3.6.0, connect@^3.6.6: - version "3.7.0" - resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" - integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== - dependencies: - debug "2.6.9" - finalhandler "1.1.2" - parseurl "~1.3.3" - utils-merge "1.0.1" - -console-browserify@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== - -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= - -content-disposition@0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== - dependencies: - safe-buffer "5.1.2" - -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -convert-source-map@^1.5.0, convert-source-map@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - dependencies: - safe-buffer "~5.1.1" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= - -cookie@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" - integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= - -cookie@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" - integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== - -copy-concurrently@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" - integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== - dependencies: - aproba "^1.1.1" - fs-write-stream-atomic "^1.0.8" - iferr "^0.1.5" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.0" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -copy-webpack-plugin@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88" - integrity sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg== - dependencies: - cacache "^12.0.3" - find-cache-dir "^2.1.0" - glob-parent "^3.1.0" - globby "^7.1.1" - is-glob "^4.0.1" - loader-utils "^1.2.3" - minimatch "^3.0.4" - normalize-path "^3.0.0" - p-limit "^2.2.1" - schema-utils "^1.0.0" - serialize-javascript "^2.1.2" - webpack-log "^2.0.0" - -core-js@^2.4.0, core-js@^2.4.1: - version "2.6.11" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" - integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== - -core-util-is@1.0.2, core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cors@latest: - version "2.8.5" - resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" - integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== - dependencies: - object-assign "^4" - vary "^1" - -cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" - integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== - dependencies: - import-fresh "^2.0.0" - is-directory "^0.3.1" - js-yaml "^3.13.1" - parse-json "^4.0.0" - -cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.7.2" - -create-ecdh@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -cross-spawn@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" - integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI= - dependencies: - lru-cache "^4.0.1" - which "^1.2.9" - -cross-spawn@^6.0.0, cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -crypto-js@^3.1.9-1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-3.3.0.tgz#846dd1cce2f68aacfa156c8578f926a609b7976b" - integrity sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q== - -css-parse@1.7.x: - version "1.7.0" - resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b" - integrity sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs= - -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= - dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" - -css-selector-tokenizer@^0.7.0: - version "0.7.2" - resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.2.tgz#11e5e27c9a48d90284f22d45061c303d7a25ad87" - integrity sha512-yj856NGuAymN6r8bn8/Jl46pR+OC3eEvAhfGYDUe7YPtTPAYrSSw4oAniZ9Y8T5B92hjhwTBLUen0/vKPxf6pw== - dependencies: - cssesc "^3.0.0" - fastparse "^1.1.2" - regexpu-core "^4.6.0" - -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== - -cssauron@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/cssauron/-/cssauron-1.4.0.tgz#a6602dff7e04a8306dc0db9a551e92e8b5662ad8" - integrity sha1-pmAt/34EqDBtwNuaVR6S6LVmKtg= - dependencies: - through X.X.X - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -currently-unhandled@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= - dependencies: - array-find-index "^1.0.1" - -custom-event@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" - integrity sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU= - -cyclist@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" - integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= - -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -dash-ast@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" - integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= - dependencies: - assert-plus "^1.0.0" - -date-format@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz#31d5b5ea211cf5fd764cd38baf9d033df7e125cf" - integrity sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA== - -debug@*, debug@^4.1.0, debug@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== - dependencies: - ms "^2.1.1" - -debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@3.1.0, debug@~3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== - dependencies: - ms "2.0.0" - -debug@^3.0.0, debug@^3.1.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6: - version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - -decache@^4.5.1: - version "4.6.0" - resolved "https://registry.yarnpkg.com/decache/-/decache-4.6.0.tgz#87026bc6e696759e82d57a3841c4e251a30356e8" - integrity sha512-PppOuLiz+DFeaUvFXEYZjLxAkKiMYH/do/b/MxpDe/8AgKBi5GhZxridoVIbBq72GDbL36e4p0Ce2jTGUwwU+w== - dependencies: - callsite "^1.0.0" - -decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decamelize@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz#656d7bbc8094c4c788ea53c5840908c9c7d063c7" - integrity sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg== - dependencies: - xregexp "4.0.0" - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -deep-equal@^1.0.0, deep-equal@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" - integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== - dependencies: - is-arguments "^1.0.4" - is-date-object "^1.0.1" - is-regex "^1.0.4" - object-is "^1.0.1" - object-keys "^1.1.1" - regexp.prototype.flags "^1.2.0" - -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -default-gateway@^2.6.0: - version "2.7.2" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.7.2.tgz#b7ef339e5e024b045467af403d50348db4642d0f" - integrity sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ== - dependencies: - execa "^0.10.0" - ip-regex "^2.1.0" - -default-require-extensions@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" - integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg= - dependencies: - strip-bom "^2.0.0" - -define-properties@^1.1.2, define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -del@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" - integrity sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag= - dependencies: - globby "^5.0.0" - is-path-cwd "^1.0.0" - is-path-in-cwd "^1.0.0" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - rimraf "^2.2.8" - -del@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" - integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= - dependencies: - globby "^6.1.0" - is-path-cwd "^1.0.0" - is-path-in-cwd "^1.0.0" - p-map "^1.1.1" - pify "^3.0.0" - rimraf "^2.2.8" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= - -depd@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -dependency-graph@^0.7.2: - version "0.7.2" - resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.7.2.tgz#91db9de6eb72699209d88aea4c1fd5221cac1c49" - integrity sha512-KqtH4/EZdtdfWX0p6MGP9jljvxSY6msy/pRUD4jgNwVpv3v1QmNLlsB3LDSSUg79BRVSn7jI1QPRtArGABovAQ== - -des.js@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= - -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= - dependencies: - repeating "^2.0.0" - -detect-node@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" - integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== - -dfa@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/dfa/-/dfa-1.2.0.tgz#96ac3204e2d29c49ea5b57af8d92c2ae12790657" - integrity sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q== - -di@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" - integrity sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw= - -diff@^3.1.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -dir-glob@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" - integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== - dependencies: - arrify "^1.0.1" - path-type "^3.0.0" - -dir-glob@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" - integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== - dependencies: - path-type "^3.0.0" - -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0= - -dns-packet@^1.3.1: - version "1.3.4" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f" - integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA== - dependencies: - ip "^1.1.0" - safe-buffer "^5.0.1" - -dns-txt@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" - integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= - dependencies: - buffer-indexof "^1.0.0" - -dom-serialize@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" - integrity sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs= - dependencies: - custom-event "~1.0.0" - ent "~2.2.0" - extend "^3.0.0" - void-elements "^2.0.0" - -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" - -dom-serializer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== - dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" - -domain-browser@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" - integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== - -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== - dependencies: - domelementtype "1" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - -dot@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/dot/-/dot-1.1.3.tgz#351360e00a748bce9a1f8f27c00c394a7e4e1e9f" - integrity sha512-/nt74Rm+PcfnirXGEdhZleTwGC2LMnuKTeeTIlI82xb5loBBoXNYzr2ezCroPSMtilK8EZIfcNZwOcHN+ib1Lg== - -duplexer2@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= - dependencies: - readable-stream "^2.0.2" - -duplexer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= - -duplexify@^3.4.2, duplexify@^3.6.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -electron-to-chromium@^1.3.723: - version "1.3.739" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.739.tgz#f07756aa92cabd5a6eec6f491525a64fe62f98b9" - integrity sha512-+LPJVRsN7hGZ9EIUUiWCpO7l4E3qBYHNadazlucBfsXBbccDFNKUBAgzE68FnkWGJPwD/AfKhSzL+G+Iqb8A4A== - -elliptic@^6.0.0, elliptic@^6.5.2: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= - -encoding@^0.1.11: - version "0.1.12" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" - integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= - dependencies: - iconv-lite "~0.4.13" - -end-of-stream@^1.0.0, end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -engine.io-client@~3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" - integrity sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw== - dependencies: - component-emitter "1.2.1" - component-inherit "0.0.3" - debug "~3.1.0" - engine.io-parser "~2.1.1" - has-cors "1.1.0" - indexof "0.0.1" - parseqs "0.0.5" - parseuri "0.0.5" - ws "~3.3.1" - xmlhttprequest-ssl "~1.5.4" - yeast "0.1.2" - -engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6" - integrity sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA== - dependencies: - after "0.8.2" - arraybuffer.slice "~0.0.7" - base64-arraybuffer "0.1.5" - blob "0.0.5" - has-binary2 "~1.0.2" - -engine.io@~3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.1.tgz#b60281c35484a70ee0351ea0ebff83ec8c9522a2" - integrity sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w== - dependencies: - accepts "~1.3.4" - base64id "1.0.0" - cookie "0.3.1" - debug "~3.1.0" - engine.io-parser "~2.1.0" - ws "~3.3.1" - -enhanced-resolve@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" - integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - tapable "^1.0.0" - -enhanced-resolve@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" - integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.5.0" - tapable "^1.0.0" - -ent@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" - integrity sha1-6WQhkyWiHQX0RGai9obtbOX13R0= - -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - -entities@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.2.tgz#ac74db0bba8d33808bbf36809c3a5c3683531436" - integrity sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw== - -err-code@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" - integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= - -errno@^0.1.1, errno@^0.1.3, errno@~0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== - dependencies: - prr "~1.0.1" - -error-ex@^1.2.0, error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== - dependencies: - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" - object-inspect "^1.7.0" - object-keys "^1.1.1" - object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" - -es6-iterator@~2.0.1, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-map@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - integrity sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" - -es6-promise@^4.0.3: - version "4.2.8" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" - integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== - -es6-promisify@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" - integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= - dependencies: - es6-promise "^4.0.3" - -es6-set@^0.1.5, es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - integrity sha1-0rPsXU2ADO2BjbU40ol02wpzzLE= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= - dependencies: - d "1" - es5-ext "~0.10.14" - -es6-symbol@^3.1.1, es6-symbol@~3.1.1, es6-symbol@~3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -escodegen@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" - integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -escodegen@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.2.0.tgz#09de7967791cc958b7f89a2ddb6d23451af327e1" - integrity sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E= - dependencies: - esprima "~1.0.4" - estraverse "~1.5.0" - esutils "~1.0.0" - optionalDependencies: - source-map "~0.1.30" - -eslint-scope@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esprima@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" - integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0= - -esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== - dependencies: - estraverse "^4.1.0" - -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@~1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.5.1.tgz#867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71" - integrity sha1-hno+jlip+EYYr7bC3bzZFrfLr3E= - -estree-is-function@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/estree-is-function/-/estree-is-function-1.0.0.tgz#c0adc29806d7f18a74db7df0f3b2666702e37ad2" - integrity sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -esutils@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.0.0.tgz#8151d358e20c8acc7fb745e7472c0025fe496570" - integrity sha1-gVHTWOIMisx/t0XnRywAJf5JZXA= - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= - dependencies: - d "1" - es5-ext "~0.10.14" - -event-stream@3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" - integrity sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE= - dependencies: - duplexer "~0.1.1" - from "~0" - map-stream "~0.1.0" - pause-stream "0.0.11" - split "0.3" - stream-combiner "~0.0.4" - through "~2.3.1" - -eventemitter3@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba" - integrity sha1-teEHm1n7XhuidxwKmTvgYKWMmbo= - -eventemitter3@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" - integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== - -events@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" - integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== - -eventsource@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0" - integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ== - dependencies: - original "^1.0.0" - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -execa@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" - integrity sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw== - dependencies: - cross-spawn "^6.0.0" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99" - integrity sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^3.0.0" - onetime "^5.1.0" - p-finally "^2.0.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -express@^4.16.2: - version "4.17.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" - integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== - dependencies: - accepts "~1.3.7" - array-flatten "1.1.1" - body-parser "1.19.0" - content-disposition "0.5.3" - content-type "~1.0.4" - cookie "0.4.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "~1.1.2" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "~1.1.2" - fresh "0.5.2" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "~2.3.0" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.5" - qs "6.7.0" - range-parser "~1.2.1" - safe-buffer "5.1.2" - send "0.17.1" - serve-static "1.14.1" - setprototypeof "1.1.1" - statuses "~1.5.0" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -ext@^1.1.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" - integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== - dependencies: - type "^2.0.0" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@3, extend@^3.0.0, extend@^3.0.2, extend@~3.0.0, extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - -fancy-log@^1.3.2, fancy-log@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" - integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== - dependencies: - ansi-gray "^0.1.1" - color-support "^1.1.3" - parse-node-version "^1.0.0" - time-stamp "^1.0.0" - -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= - -fast-deep-equal@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" - integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== - -fast-diff@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" - integrity sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig== - -fast-glob@^2.0.2: - version "2.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" - integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== - dependencies: - "@mrmlnc/readdir-enhanced" "^2.2.1" - "@nodelib/fs.stat" "^1.1.2" - glob-parent "^3.1.0" - is-glob "^4.0.0" - merge2 "^1.2.3" - micromatch "^3.1.10" - -fast-json-stable-stringify@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fastparse@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - -faye-websocket@0.11.x, faye-websocket@~0.11.1: - version "0.11.3" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" - integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== - dependencies: - websocket-driver ">=0.5.1" - -faye-websocket@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" - integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ= - dependencies: - websocket-driver ">=0.5.1" - -figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: - version "3.5.2" - resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" - integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= - dependencies: - escape-string-regexp "^1.0.5" - -file-loader@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" - integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw== - dependencies: - loader-utils "^1.0.2" - schema-utils "^1.0.0" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -fileset@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" - integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA= - dependencies: - glob "^7.0.3" - minimatch "^3.0.3" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.1.2, finalhandler@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.3" - statuses "~1.5.0" - unpipe "~1.0.0" - -find-cache-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-versions@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" - integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== - dependencies: - semver-regex "^2.0.0" - -findit2@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/findit2/-/findit2-2.2.3.tgz#58a466697df8a6205cdfdbf395536b8bd777a5f6" - integrity sha1-WKRmaX34piBc39vzlVNri9d3pfY= - -flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== - -flush-write-stream@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" - integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== - dependencies: - inherits "^2.0.3" - readable-stream "^2.3.6" - -follow-redirects@^1.0.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.11.0.tgz#afa14f08ba12a52963140fe43212658897bc0ecb" - integrity sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA== - dependencies: - debug "^3.0.0" - -fontkit@^1.8.0: - version "1.8.1" - resolved "https://registry.yarnpkg.com/fontkit/-/fontkit-1.8.1.tgz#ae77485376f1096b45548bf6ced9a07af62a7846" - integrity sha512-BsNCjDoYRxmNWFdAuK1y9bQt+igIxGtTC9u/jSFjR9MKhmI00rP1fwSvERt+5ddE82544l0XH5mzXozQVUy2Tw== - dependencies: - babel-runtime "^6.26.0" - brfs "^2.0.0" - brotli "^1.2.0" - browserify-optional "^1.0.1" - clone "^1.0.4" - deep-equal "^1.0.0" - dfa "^1.2.0" - restructure "^0.5.3" - tiny-inflate "^1.0.2" - unicode-properties "^1.2.2" - unicode-trie "^0.3.0" - -for-in@^0.1.3: - version "0.1.8" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" - integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= - -for-in@^1.0.1, for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -forwarded@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= - -from2@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -from@~0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" - integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= - -fs-access@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" - integrity sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o= - dependencies: - null-check "^1.0.0" - -fs-extra@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" - integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" - integrity sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^8.0.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-minipass@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" - integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== - dependencies: - minipass "^2.6.0" - -fs-write-stream-atomic@^1.0.8: - version "1.0.10" - resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" - integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= - dependencies: - graceful-fs "^4.1.2" - iferr "^0.1.5" - imurmurhash "^0.1.4" - readable-stream "1 || 2" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^1.2.2, fsevents@^1.2.7: - version "1.2.13" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" - integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== - dependencies: - bindings "^1.5.0" - nan "^2.12.1" - -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== - -fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" - integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== - dependencies: - graceful-fs "^4.1.2" - inherits "~2.0.0" - mkdirp ">=0.5 0" - rimraf "2" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -gaze@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - dependencies: - globule "^1.0.0" - -genfun@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537" - integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA== - -get-assigned-identifiers@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" - integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== - -get-caller-file@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== - -get-caller-file@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= - -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - -get-stream@^4.0.0, get-stream@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" - integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== - dependencies: - pump "^3.0.0" - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - dependencies: - assert-plus "^1.0.0" - -glob-parent@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= - dependencies: - is-glob "^3.1.0" - path-dirname "^1.0.0" - -glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob-to-regexp@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" - integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= - -glob@7.0.x: - version "7.0.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" - integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@7.1.3: - version "7.1.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" - integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.0.3, glob@^7.0.6, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" - integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== - -globby@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" - integrity sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0= - dependencies: - array-union "^1.0.1" - arrify "^1.0.0" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -globby@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" - integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= - dependencies: - array-union "^1.0.1" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -globby@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" - integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= - dependencies: - array-union "^1.0.1" - dir-glob "^2.0.0" - glob "^7.1.2" - ignore "^3.3.5" - pify "^3.0.0" - slash "^1.0.0" - -globby@^8.0.1: - version "8.0.2" - resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" - integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== - dependencies: - array-union "^1.0.1" - dir-glob "2.0.0" - fast-glob "^2.0.2" - glob "^7.1.2" - ignore "^3.3.5" - pify "^3.0.0" - slash "^1.0.0" - -globule@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9" - integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g== - dependencies: - glob "~7.1.1" - lodash "~4.17.12" - minimatch "~3.0.2" - -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: - version "4.2.4" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== - -hammerjs@^2.0.4, hammerjs@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1" - integrity sha1-BO93hiz/K7edMPdpIJWTAiK/YPE= - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -handlebars@^4.0.3, handlebars@^4.3.3: - version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - -har-validator@~5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== - dependencies: - ajv "^6.5.5" - har-schema "^2.0.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-binary2@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" - integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== - dependencies: - isarray "2.0.1" - -has-cors@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" - integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= - -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-symbols@^1.0.0, has-symbols@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== - -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.1, has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hosted-git-info@^2.1.4, hosted-git-info@^2.6.0, hosted-git-info@^2.7.1: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI= - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -html-entities@^1.2.0, html-entities@^1.2.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" - integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== - -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== - dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" - -http-auth@3.1.x: - version "3.1.3" - resolved "https://registry.yarnpkg.com/http-auth/-/http-auth-3.1.3.tgz#945cfadd66521eaf8f7c84913d377d7b15f24e31" - integrity sha1-lFz63WZSHq+PfISRPTd9exXyTjE= - dependencies: - apache-crypt "^1.1.2" - apache-md5 "^1.0.6" - bcryptjs "^2.3.0" - uuid "^3.0.0" - -http-cache-semantics@^3.8.1: - version "3.8.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" - integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== - -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= - -http-errors@1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" - integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.1" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.0" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-errors@~1.7.2: - version "1.7.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" - integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== - dependencies: - depd "~1.1.2" - inherits "2.0.4" - setprototypeof "1.1.1" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.0" - -http-parser-js@>=0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77" - integrity sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ== - -http-proxy-agent@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" - integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg== - dependencies: - agent-base "4" - debug "3.1.0" - -http-proxy-middleware@~0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz#0987e6bb5a5606e5a69168d8f967a87f15dd8aab" - integrity sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q== - dependencies: - http-proxy "^1.16.2" - is-glob "^4.0.0" - lodash "^4.17.5" - micromatch "^3.1.9" - -http-proxy@^1.13.0, http-proxy@^1.16.2: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= - -https-proxy-agent@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" - integrity sha1-NffabEjOTdv6JkiRrFk+5f+GceY= - dependencies: - agent-base "2" - debug "2" - extend "3" - -https-proxy-agent@^2.2.1: - version "2.2.4" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" - integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== - dependencies: - agent-base "^4.3.0" - debug "^3.1.0" - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= - dependencies: - ms "^2.0.0" - -husky@^4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36" - integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ== - dependencies: - chalk "^4.0.0" - ci-info "^2.0.0" - compare-versions "^3.6.0" - cosmiconfig "^6.0.0" - find-versions "^3.2.0" - opencollective-postinstall "^2.0.2" - pkg-dir "^4.2.0" - please-upgrade-node "^3.2.0" - slash "^3.0.0" - which-pm-runs "^1.0.0" - -i18next@^17.0.16: - version "17.3.1" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-17.3.1.tgz#5fe75e054aae39a6f38f1a79f7ab49184c6dc7a1" - integrity sha512-4nY+yaENaoZKmpbiDXPzucVHCN3hN9Z9Zk7LyQXVOKVIpnYOJ3L/yxHJlBPtJDq3PGgjFwA0QBFm/26Z0iDT5A== - dependencies: - "@babel/runtime" "^7.3.1" - -iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.5.1.tgz#b2425d3c7b18f7219f2ca663d103bddb91718d64" - integrity sha512-ONHr16SQvKZNSqjQT9gy5z24Jw+uqfO02/ngBSBoqChZ+W8qXX7GPRa1RoUnzGADw8K63R1BXUMzarCVQBpY8Q== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ieee754@^1.1.4: - version "1.1.13" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== - -iferr@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" - integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= - -ignore-walk@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" - integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== - dependencies: - minimatch "^3.0.4" - -ignore@^3.3.5: - version "3.3.10" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== - -ignore@^5.1.4: - version "5.1.8" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" - integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== - -image-size@~0.5.0: - version "0.5.5" - resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" - integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= - -import-cwd@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" - integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= - dependencies: - import-from "^2.1.0" - -import-fresh@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" - integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= - dependencies: - caller-path "^2.0.0" - resolve-from "^3.0.0" - -import-fresh@^3.1.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" - integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-from@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" - integrity sha1-M1238qev/VOqpHHUuAId7ja387E= - dependencies: - resolve-from "^3.0.0" - -import-local@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" - integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== - dependencies: - pkg-dir "^3.0.0" - resolve-cwd "^2.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -in-publish@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c" - integrity sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ== - -indent-string@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= - dependencies: - repeating "^2.0.0" - -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= - -infer-owner@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= - -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= - -ini@1.3.5, ini@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - -inquirer@6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52" - integrity sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg== - dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.0" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.0" - figures "^2.0.0" - lodash "^4.17.10" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.1.0" - string-width "^2.1.0" - strip-ansi "^5.0.0" - through "^2.3.6" - -inside@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/inside/-/inside-1.0.0.tgz#db45e993573cdb3db70b9832e8285bad46424770" - integrity sha1-20Xpk1c82z23C5gy6ChbrUZCR3A= - -internal-ip@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-3.0.1.tgz#df5c99876e1d2eb2ea2d74f520e3f669a00ece27" - integrity sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q== - dependencies: - default-gateway "^2.6.0" - ipaddr.js "^1.5.2" - -interpret@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== - -invariant@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - -invert-kv@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" - integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== - -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= - -ip@1.1.5, ip@^1.1.0, ip@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" - integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= - -ipaddr.js@1.9.1, ipaddr.js@^1.5.2: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-absolute@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== - dependencies: - is-relative "^1.0.0" - is-windows "^1.0.1" - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-arguments@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" - integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= - dependencies: - binary-extensions "^1.0.0" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-date-object@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-directory@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" - integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.0, is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-finite@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-glob@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= - dependencies: - is-extglob "^2.1.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-negated-glob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" - integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-path-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" - integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= - -is-path-in-cwd@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" - integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== - dependencies: - is-path-inside "^1.0.0" - -is-path-inside@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" - integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= - dependencies: - path-is-inside "^1.0.1" - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-regex@^1.0.4, is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== - dependencies: - has "^1.0.3" - -is-relative@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== - dependencies: - is-unc-path "^1.0.0" - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-symbol@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== - dependencies: - has-symbols "^1.0.1" - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -is-unc-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== - dependencies: - unc-path-regex "^0.1.2" - -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - -is-windows@^1.0.1, is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= - -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isarray@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" - integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= - -isbinaryfile@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.3.tgz#5d6def3edebf6e8ca8cae9c30183a804b5f8be80" - integrity sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw== - dependencies: - buffer-alloc "^1.2.0" - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -istanbul-api@^1.3.1: - version "1.3.7" - resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa" - integrity sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA== - dependencies: - async "^2.1.4" - fileset "^2.0.2" - istanbul-lib-coverage "^1.2.1" - istanbul-lib-hook "^1.2.2" - istanbul-lib-instrument "^1.10.2" - istanbul-lib-report "^1.1.5" - istanbul-lib-source-maps "^1.2.6" - istanbul-reports "^1.5.1" - js-yaml "^3.7.0" - mkdirp "^0.5.1" - once "^1.4.0" - -istanbul-instrumenter-loader@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-3.0.1.tgz#9957bd59252b373fae5c52b7b5188e6fde2a0949" - integrity sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w== - dependencies: - convert-source-map "^1.5.0" - istanbul-lib-instrument "^1.7.3" - loader-utils "^1.1.0" - schema-utils "^0.3.0" - -istanbul-lib-coverage@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" - integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ== - -istanbul-lib-hook@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" - integrity sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw== - dependencies: - append-transform "^0.4.0" - -istanbul-lib-instrument@^1.10.2, istanbul-lib-instrument@^1.7.3: - version "1.10.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" - integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A== - dependencies: - babel-generator "^6.18.0" - babel-template "^6.16.0" - babel-traverse "^6.18.0" - babel-types "^6.18.0" - babylon "^6.18.0" - istanbul-lib-coverage "^1.2.1" - semver "^5.3.0" - -istanbul-lib-report@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" - integrity sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw== - dependencies: - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - path-parse "^1.0.5" - supports-color "^3.1.2" - -istanbul-lib-source-maps@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" - integrity sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg== - dependencies: - debug "^3.1.0" - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - rimraf "^2.6.1" - source-map "^0.5.3" - -istanbul-reports@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" - integrity sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw== - dependencies: - handlebars "^4.0.3" - -jasmine-core@~2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e" - integrity sha1-vMl5rh+f0FcB5F5S5l06XWPxok4= - -jasmine-core@~2.99.0: - version "2.99.1" - resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.99.1.tgz#e6400df1e6b56e130b61c4bcd093daa7f6e8ca15" - integrity sha1-5kAN8ea1bhMLYcS80JPap/boyhU= - -jasmine-spec-reporter@~4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-4.2.1.tgz#1d632aec0341670ad324f92ba84b4b32b35e9e22" - integrity sha512-FZBoZu7VE5nR7Nilzy+Np8KuVIOxF4oXDPDknehCYBDE080EnlPu0afdZNmpGDBRCUBv3mj5qgqCRmk6W/K8vg== - dependencies: - colors "1.1.2" - -jasmine@^2.5.3: - version "2.99.0" - resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.99.0.tgz#8ca72d102e639b867c6489856e0e18a9c7aa42b7" - integrity sha1-jKctEC5jm4Z8ZImFbg4YqceqQrc= - dependencies: - exit "^0.1.2" - glob "^7.0.6" - jasmine-core "~2.99.0" - -jasminewd2@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/jasminewd2/-/jasminewd2-2.2.0.tgz#e37cf0b17f199cce23bea71b2039395246b4ec4e" - integrity sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4= - -jquery@^2.1.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02" - integrity sha1-LInWiJterFIqfuoywUUhVZxsvwI= - -js-base64@^2.1.8: - version "2.5.2" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209" - integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= - -js-yaml@^3.13.1, js-yaml@^3.7.0: - version "3.14.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" - integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - -json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json3@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" - integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" - integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== - dependencies: - minimist "^1.2.5" - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= - optionalDependencies: - graceful-fs "^4.1.6" - -jsonparse@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= - -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" - -karma-chrome-launcher@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-2.2.0.tgz#cf1b9d07136cc18fe239327d24654c3dbc368acf" - integrity sha512-uf/ZVpAabDBPvdPdveyk1EPgbnloPvFFGgmRhYLTDH7gEB4nZdSBk8yTU47w1g/drLSx5uMOkjKk7IWKfWg/+w== - dependencies: - fs-access "^1.0.0" - which "^1.2.1" - -karma-cli@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/karma-cli/-/karma-cli-1.0.1.tgz#ae6c3c58a313a1d00b45164c455b9b86ce17f960" - integrity sha1-rmw8WKMTodALRRZMRVubhs4X+WA= - dependencies: - resolve "^1.1.6" - -karma-coverage-istanbul-reporter@^1.2.1: - version "1.4.3" - resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.3.tgz#3b5dff4664fa5b8d5196b9889e3f61c1fa2b80d9" - integrity sha1-O13/RmT6W41RlrmInj9hwforgNk= - dependencies: - istanbul-api "^1.3.1" - minimatch "^3.0.4" - -karma-jasmine-html-reporter@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-0.2.2.tgz#48a8e5ef18807617ee2b5e33c1194c35b439524c" - integrity sha1-SKjl7xiAdhfuK14zwRlMNbQ5Ukw= - dependencies: - karma-jasmine "^1.0.2" - -karma-jasmine@^1.0.2, karma-jasmine@~1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-1.1.2.tgz#394f2b25ffb4a644b9ada6f22d443e2fd08886c3" - integrity sha1-OU8rJf+0pkS5rabyLUQ+L9CIhsM= - -karma-source-map-support@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/karma-source-map-support/-/karma-source-map-support-1.3.0.tgz#36dd4d8ca154b62ace95696236fae37caf0a7dde" - integrity sha512-HcPqdAusNez/ywa+biN4EphGz62MmQyPggUsDfsHqa7tSe4jdsxgvTKuDfIazjL+IOxpVWyT7Pr4dhAV+sxX5Q== - dependencies: - source-map-support "^0.5.5" - -karma@^4.0.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/karma/-/karma-4.4.1.tgz#6d9aaab037a31136dc074002620ee11e8c2e32ab" - integrity sha512-L5SIaXEYqzrh6b1wqYC42tNsFMx2PWuxky84pK9coK09MvmL7mxii3G3bZBh/0rvD27lqDd0le9jyhzvwif73A== - dependencies: - bluebird "^3.3.0" - body-parser "^1.16.1" - braces "^3.0.2" - chokidar "^3.0.0" - colors "^1.1.0" - connect "^3.6.0" - di "^0.0.1" - dom-serialize "^2.2.0" - flatted "^2.0.0" - glob "^7.1.1" - graceful-fs "^4.1.2" - http-proxy "^1.13.0" - isbinaryfile "^3.0.0" - lodash "^4.17.14" - log4js "^4.0.0" - mime "^2.3.1" - minimatch "^3.0.2" - optimist "^0.6.1" - qjobs "^1.1.4" - range-parser "^1.2.0" - rimraf "^2.6.0" - safe-buffer "^5.0.1" - socket.io "2.1.1" - source-map "^0.6.1" - tmp "0.0.33" - useragent "2.3.0" - -killable@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" - integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - -lcid@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" - integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== - dependencies: - invert-kv "^2.0.0" - -less-loader@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-4.1.0.tgz#2c1352c5b09a4f84101490274fd51674de41363e" - integrity sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg== - dependencies: - clone "^2.1.1" - loader-utils "^1.1.0" - pify "^3.0.0" - -less@3.9.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/less/-/less-3.9.0.tgz#b7511c43f37cf57dc87dffd9883ec121289b1474" - integrity sha512-31CmtPEZraNUtuUREYjSqRkeETFdyEHSEPAGq4erDlUXtda7pzNmctdljdIagSb589d/qXGWiiP31R5JVf+v0w== - dependencies: - clone "^2.1.2" - optionalDependencies: - errno "^0.1.1" - graceful-fs "^4.1.2" - image-size "~0.5.0" - mime "^1.4.1" - mkdirp "^0.5.0" - promise "^7.1.1" - request "^2.83.0" - source-map "~0.6.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -license-webpack-plugin@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-2.1.0.tgz#83acaa6e89c3c5316effdd80cb4ec9c5cd8efc2f" - integrity sha512-vDiBeMWxjE9n6TabQ9J4FH8urFdsRK0Nvxn1cit9biCiR9aq1zBR0X2BlAkEiIG6qPamLeU0GzvIgLkrFc398A== - dependencies: - "@types/webpack-sources" "^0.1.5" - webpack-sources "^1.2.0" - -linebreak@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/linebreak/-/linebreak-1.0.2.tgz#4b5781733e9a9eb2849dba2f963e47c887f8aa06" - integrity sha512-bJwSRsJeAmaZYnkcwl5sCQNfSDAhBuXxb6L27tb+qkBRtUQSSTUa5bcgCPD6hFEkRNlpWHfK7nFMmcANU7ZP1w== - dependencies: - base64-js "0.0.8" - brfs "^2.0.2" - unicode-trie "^1.0.0" - -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - -live-server@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/live-server/-/live-server-1.2.1.tgz#670630dd409d22fe9c513ab1c1894686c757153e" - integrity sha512-Yn2XCVjErTkqnM3FfTmM7/kWy3zP7+cEtC7x6u+wUzlQ+1UW3zEYbbyJrc0jNDwiMDZI0m4a0i3dxlGHVyXczw== - dependencies: - chokidar "^2.0.4" - colors latest - connect "^3.6.6" - cors latest - event-stream "3.3.4" - faye-websocket "0.11.x" - http-auth "3.1.x" - morgan "^1.9.1" - object-assign latest - opn latest - proxy-middleware latest - send latest - serve-index "^1.9.1" - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -loader-runner@^2.3.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" - integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== - -loader-utils@1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" - integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== - dependencies: - big.js "^5.2.2" - emojis-list "^2.0.0" - json5 "^1.0.1" - -loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= - -lodash.tail@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" - integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ= - -lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.12: - version "4.17.19" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" - integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== - -log4js@^4.0.0: - version "4.5.1" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-4.5.1.tgz#e543625e97d9e6f3e6e7c9fc196dd6ab2cae30b5" - integrity sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw== - dependencies: - date-format "^2.0.0" - debug "^4.1.1" - flatted "^2.0.0" - rfdc "^1.1.4" - streamroller "^1.0.6" - -loglevel-plugin-prefix@^0.8.4: - version "0.8.4" - resolved "https://registry.yarnpkg.com/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.8.4.tgz#2fe0e05f1a820317d98d8c123e634c1bd84ff644" - integrity sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g== - -loglevel@^1.4.1, loglevel@^1.6.4: - version "1.6.8" - resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" - integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== - -loose-envify@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -loud-rejection@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - dependencies: - currently-unhandled "^0.4.1" - signal-exit "^3.0.0" - -lru-cache@4.1.x, lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lunr@^2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.8.tgz#a8b89c31f30b5a044b97d2d28e2da191b6ba2072" - integrity sha512-oxMeX/Y35PNFuZoHp+jUj5OSEmLCaIH4KTFJh7a93cHBoFmpw2IoPs22VIz7vyO2YUnx2Tn9dzIwO2P/4quIRg== - -macos-release@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" - integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA== - -magic-string@0.25.1: - version "0.25.1" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.1.tgz#b1c248b399cd7485da0fe7385c2fc7011843266e" - integrity sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg== - dependencies: - sourcemap-codec "^1.4.1" - -magic-string@^0.25.0: - version "0.25.7" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" - integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== - dependencies: - sourcemap-codec "^1.4.4" - -make-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^4.0.1, make-fetch-happen@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-4.0.2.tgz#2d156b11696fb32bffbafe1ac1bc085dd6c78a79" - integrity sha512-YMJrAjHSb/BordlsDEcVcPyTbiJKkzqMf48N8dAJZT9Zjctrkb6Yg4TY9Sq2AwSIQJFn5qBBKVTYt3vP5FMIHA== - dependencies: - agentkeepalive "^3.4.1" - cacache "^11.3.3" - http-cache-semantics "^3.8.1" - http-proxy-agent "^2.1.0" - https-proxy-agent "^2.2.1" - lru-cache "^5.1.1" - mississippi "^3.0.0" - node-fetch-npm "^2.0.2" - promise-retry "^1.1.1" - socks-proxy-agent "^4.0.0" - ssri "^6.0.0" - -map-age-cleaner@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-obj@^1.0.0, map-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - -map-stream@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" - integrity sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -marked@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/marked/-/marked-0.7.0.tgz#b64201f051d271b1edc10a04d1ae9b74bb8e5c0e" - integrity sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg== - -materialize-css@^0.97.8: - version "0.97.8" - resolved "https://registry.yarnpkg.com/materialize-css/-/materialize-css-0.97.8.tgz#e39ce2056785b0c4e9cd4847c2cdf153e19c47cf" - integrity sha1-45ziBWeFsMTpzUhHws3xU+GcR88= - dependencies: - hammerjs "^2.0.4" - jquery "^2.1.4" - node-archiver "^0.3.0" - -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= - -mem@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" - integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== - dependencies: - map-age-cleaner "^0.1.1" - mimic-fn "^2.0.0" - p-is-promise "^2.0.0" - -memory-fs@^0.4.0, memory-fs@~0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -memory-fs@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" - integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -memorystream@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" - integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= - -meow@^3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= - dependencies: - camelcase-keys "^2.0.0" - decamelize "^1.1.2" - loud-rejection "^1.0.0" - map-obj "^1.0.1" - minimist "^1.1.3" - normalize-package-data "^2.3.4" - object-assign "^4.0.1" - read-pkg-up "^1.0.1" - redent "^1.0.0" - trim-newlines "^1.0.0" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= - -merge-source-map@1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.4.tgz#a5de46538dae84d4114cc5ea02b4772a6346701f" - integrity sha1-pd5GU42uhNQRTMXqArR3KmNGcB8= - dependencies: - source-map "^0.5.6" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.2.3: - version "1.3.0" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" - integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= - -micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8, micromatch@^3.1.9: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== - -mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== - dependencies: - mime-db "1.44.0" - -mime@1.6.0, mime@^1.4.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mime@^2.3.1: - version "2.4.6" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" - integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== - -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - -mimic-fn@^2.0.0, mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mini-css-extract-plugin@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz#ac0059b02b9692515a637115b0cc9fed3a35c7b0" - integrity sha512-IuaLjruM0vMKhUUT51fQdQzBYTX49dLj8w68ALEAe2A4iYNpIC4eMac67mt3NzycvjOlf07/kYxJDc0RTl1Wqw== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - webpack-sources "^1.1.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= - -minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= - -minipass@^2.3.5, minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" - integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - -minizlib@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" - integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== - dependencies: - minipass "^2.9.0" - -mississippi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" - integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== - dependencies: - concat-stream "^1.5.0" - duplexify "^3.4.2" - end-of-stream "^1.1.0" - flush-write-stream "^1.0.0" - from2 "^2.1.0" - parallel-transform "^1.1.0" - pump "^3.0.0" - pumpify "^1.3.3" - stream-each "^1.1.0" - through2 "^2.0.0" - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mixin-object@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" - integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= - dependencies: - for-in "^0.1.3" - is-extendable "^0.1.1" - -mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: - version "0.5.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -moment@>=2.14.0, moment@^2.24.0: - version "2.26.0" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" - integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== - -morgan@^1.9.1: - version "1.10.0" - resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7" - integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ== - dependencies: - basic-auth "~2.0.1" - debug "2.6.9" - depd "~2.0.0" - on-finished "~2.3.0" - on-headers "~1.0.2" - -move-concurrently@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" - integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= - dependencies: - aproba "^1.1.1" - copy-concurrently "^1.0.0" - fs-write-stream-atomic "^1.0.8" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.3" - -mri@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" - integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== - -ms@^2.0.0, ms@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -multicast-dns-service-types@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" - integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE= - -multicast-dns@^6.0.1: - version "6.2.3" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" - integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== - dependencies: - dns-packet "^1.3.1" - thunky "^1.0.2" - -multimatch@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" - integrity sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis= - dependencies: - array-differ "^1.0.0" - array-union "^1.0.1" - arrify "^1.0.0" - minimatch "^3.0.0" - -multimatch@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" - integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== - dependencies: - "@types/minimatch" "^3.0.3" - array-differ "^3.0.0" - array-union "^2.1.0" - arrify "^2.0.1" - minimatch "^3.0.4" - -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= - -nan@^2.12.1, nan@^2.13.2: - version "2.14.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" - integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -negotiator@0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== - -neo-async@^2.5.0, neo-async@^2.6.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -next-tick@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - -ng-pick-datetime@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/ng-pick-datetime/-/ng-pick-datetime-7.0.0.tgz#c78d1cfaee183691a4a44cd4f39c98f9c1d1595f" - integrity sha512-SbS+zKX6gOlYpgH8zDSx2EL32ak0Z0y1Ksu1ECP/FiwVBM2mHgbzdfyDYhMmKFB0GKn5yCwXTandR1FCQXe62w== - -ngx-logger@^4.1.9: - version "4.1.9" - resolved "https://registry.yarnpkg.com/ngx-logger/-/ngx-logger-4.1.9.tgz#35b782c805343b9c8496e97a155b910086bec4bc" - integrity sha512-hEJDtWWi+1OSCM7Syz4J8GyFhkf+f0HBbvnMniAMRp9x9gRdtj+Q0cesXdxVV4JJmIhxJQM88NNVRR0cOtPeHQ== - dependencies: - tslib "^1.9.0" - vlq "^1.0.0" - -ngx-quill@^6.3.1: - version "6.3.1" - resolved "https://registry.yarnpkg.com/ngx-quill/-/ngx-quill-6.3.1.tgz#668f0a9ff870100115a3006b05177a11a0a0ff09" - integrity sha512-QO/8naRPUqwIWSsbR8PFe4CFa4aAyeVLhUvn6ETuoO4VtmHSz9d6hHl2X3rOL0qFdH+cqjVkx03min1tcvETMw== - dependencies: - tslib "^1.9.0" - -ngx-textarea-autosize@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/ngx-textarea-autosize/-/ngx-textarea-autosize-2.0.3.tgz#00e5cd61f01410fdc22c5539ae721982fd568089" - integrity sha512-DZX3bCFojgfMS7+fQVTtAuculMd0BsLA8OTFEBQ8Ml5Qp3et+3b25XlAGOk0Z1IhZgD6EcgE0ENeoq35nsTdow== - dependencies: - tslib "^1.9.0" - -ngx-twitter-timeline@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/ngx-twitter-timeline/-/ngx-twitter-timeline-0.1.5.tgz#661094c3702b3bc90f516e3a23c06226c70622e9" - integrity sha512-YL74SV+/t6GmJn8nypknnrRqpBbMWtWQHqhw9+VzLQdxQAiFZm8DdA0FqIVYgk5XE+Kap00k3taF0+XnwRa2FQ== - dependencies: - tslib "^1.9.0" - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-archiver@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/node-archiver/-/node-archiver-0.3.0.tgz#b9f1afe5006d0bdf29260181833a070978bc6947" - integrity sha1-ufGv5QBtC98pJgGBgzoHCXi8aUc= - dependencies: - fstream "^1.0.10" - tar "^2.2.1" - -node-fetch-npm@^2.0.2: - version "2.0.4" - resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4" - integrity sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg== - dependencies: - encoding "^0.1.11" - json-parse-better-errors "^1.0.0" - safe-buffer "^5.1.1" - -node-forge@0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" - integrity sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ== - -node-gyp@^3.8.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" - integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== - dependencies: - fstream "^1.0.0" - glob "^7.0.3" - graceful-fs "^4.1.2" - mkdirp "^0.5.0" - nopt "2 || 3" - npmlog "0 || 1 || 2 || 3 || 4" - osenv "0" - request "^2.87.0" - rimraf "2" - semver "~5.3.0" - tar "^2.0.0" - which "1" - -node-libs-browser@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" - integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^3.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.1" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.11.0" - vm-browserify "^1.0.1" - -node-releases@^1.1.71: - version "1.1.72" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" - integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== - -node-sass@4.13.1: - version "4.13.1" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.1.tgz#9db5689696bb2eec2c32b98bfea4c7a2e992d0a3" - integrity sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw== - dependencies: - async-foreach "^0.1.3" - chalk "^1.1.1" - cross-spawn "^3.0.0" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - in-publish "^2.0.0" - lodash "^4.17.15" - meow "^3.7.0" - mkdirp "^0.5.1" - nan "^2.13.2" - node-gyp "^3.8.0" - npmlog "^4.0.0" - request "^2.88.0" - sass-graph "^2.2.4" - stdout-stream "^1.4.0" - "true-case-path" "^1.0.2" - -"nopt@2 || 3": - version "3.0.6" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" - integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= - dependencies: - abbrev "1" - -normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.4.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - -normalize.css@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" - integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== - -npm-bundled@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" - integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== - dependencies: - npm-normalize-package-bin "^1.0.1" - -npm-normalize-package-bin@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" - integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== - -npm-package-arg@6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" - integrity sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA== - dependencies: - hosted-git-info "^2.6.0" - osenv "^0.1.5" - semver "^5.5.0" - validate-npm-package-name "^3.0.0" - -npm-package-arg@^6.0.0, npm-package-arg@^6.1.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7" - integrity sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg== - dependencies: - hosted-git-info "^2.7.1" - osenv "^0.1.5" - semver "^5.6.0" - validate-npm-package-name "^3.0.0" - -npm-packlist@^1.1.12: - version "1.4.8" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" - integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - npm-normalize-package-bin "^1.0.1" - -npm-pick-manifest@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-2.2.3.tgz#32111d2a9562638bb2c8f2bf27f7f3092c8fae40" - integrity sha512-+IluBC5K201+gRU85vFlUwX3PFShZAbAgDNp2ewJdWMVSppdo/Zih0ul2Ecky/X7b51J7LrrUAP+XOmOCvYZqA== - dependencies: - figgy-pudding "^3.5.1" - npm-package-arg "^6.0.0" - semver "^5.4.1" - -npm-registry-fetch@^3.8.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-3.9.1.tgz#00ff6e4e35d3f75a172b332440b53e93f4cb67de" - integrity sha512-VQCEZlydXw4AwLROAXWUR7QDfe2Y8Id/vpAgp6TI1/H78a4SiQ1kQrKZALm5/zxM5n4HIi+aYb+idUAV/RuY0Q== - dependencies: - JSONStream "^1.3.4" - bluebird "^3.5.1" - figgy-pudding "^3.4.1" - lru-cache "^5.1.1" - make-fetch-happen "^4.0.2" - npm-package-arg "^6.1.0" - -npm-run-all@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" - integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - dependencies: - ansi-styles "^3.2.1" - chalk "^2.4.1" - cross-spawn "^6.0.5" - memorystream "^0.3.1" - minimatch "^3.0.4" - pidtree "^0.3.0" - read-pkg "^3.0.0" - shell-quote "^1.6.1" - string.prototype.padend "^3.0.0" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -npm-run-path@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5" - integrity sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== - dependencies: - path-key "^3.0.0" - -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - dependencies: - boolbase "~1.0.0" - -null-check@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" - integrity sha1-l33/1xdgErnsMNKjnbXPcqBDnt0= - -num2fraction@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1, object-assign@latest: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-component@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" - integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-inspect@^1.6.0, object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== - -object-is@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6" - integrity sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.assign@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= - dependencies: - mimic-fn "^1.0.0" - -onetime@^5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.1.tgz#5c8016847b0d67fcedb7eef254751cfcdc7e9418" - integrity sha512-ZpZpjcJeugQfWsfyQlshVoowIIQ1qBGSVll4rfDq6JJVO//fesjoX808hXWfBjY+ROZgpKDI5TRSRBSoJiZ8eg== - dependencies: - mimic-fn "^2.1.0" - -open@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/open/-/open-6.0.0.tgz#cae5e2c1a3a1bfaee0d0acc8c4b7609374750346" - integrity sha512-/yb5mVZBz7mHLySMiSj2DcLtMBbFPJk5JBKEkHVZFxZAPzeg3L026O0T+lbdz1B2nyDnkClRSwRQJdeVUIF7zw== - dependencies: - is-wsl "^1.1.0" - -opencollective-postinstall@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" - integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== - -opn@^5.1.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" - integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== - dependencies: - is-wsl "^1.1.0" - -opn@latest: - version "6.0.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-6.0.0.tgz#3c5b0db676d5f97da1233d1ed42d182bc5a27d2d" - integrity sha512-I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ== - dependencies: - is-wsl "^1.1.0" - -optimist@^0.6.1, optimist@~0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -options@>=0.0.5: - version "0.0.6" - resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" - integrity sha1-7CLTEoBrtT5zF3Pnza788cZDEo8= - -original@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" - integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== - dependencies: - url-parse "^1.4.3" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= - dependencies: - lcid "^1.0.0" - -os-locale@^3.0.0, os-locale@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" - integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== - dependencies: - execa "^1.0.0" - lcid "^2.0.0" - mem "^4.0.0" - -os-name@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" - integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== - dependencies: - macos-release "^2.2.0" - windows-release "^3.1.0" - -os-tmpdir@^1.0.0, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -osenv@0, osenv@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -p-defer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-finally@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" - integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== - -p-is-promise@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" - integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== - -p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-map@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" - integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -pacote@9.4.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.4.0.tgz#af979abdeb175cd347c3e33be3241af1ed254807" - integrity sha512-WQ1KL/phGMkedYEQx9ODsjj7xvwLSpdFJJdEXrLyw5SILMxcTNt5DTxT2Z93fXuLFYJBlZJdnwdalrQdB/rX5w== - dependencies: - bluebird "^3.5.3" - cacache "^11.3.2" - figgy-pudding "^3.5.1" - get-stream "^4.1.0" - glob "^7.1.3" - lru-cache "^5.1.1" - make-fetch-happen "^4.0.1" - minimatch "^3.0.4" - minipass "^2.3.5" - mississippi "^3.0.0" - mkdirp "^0.5.1" - normalize-package-data "^2.4.0" - npm-package-arg "^6.1.0" - npm-packlist "^1.1.12" - npm-pick-manifest "^2.2.3" - npm-registry-fetch "^3.8.0" - osenv "^0.1.5" - promise-inflight "^1.0.1" - promise-retry "^1.1.1" - protoduck "^5.0.1" - rimraf "^2.6.2" - safe-buffer "^5.1.2" - semver "^5.6.0" - ssri "^6.0.1" - tar "^4.4.8" - unique-filename "^1.1.1" - which "^1.3.1" - -pako@^0.2.5: - version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" - integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU= - -pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - -parallel-transform@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" - integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== - dependencies: - cyclist "^1.0.1" - inherits "^2.0.3" - readable-stream "^2.1.5" - -parchment@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/parchment/-/parchment-1.1.4.tgz#aeded7ab938fe921d4c34bc339ce1168bc2ffde5" - integrity sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.5" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" - integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - dependencies: - error-ex "^1.2.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878" - integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - lines-and-columns "^1.1.6" - -parse-node-version@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - -parse5@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== - -parse5@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" - integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== - dependencies: - "@types/node" "*" - -parse5@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" - integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== - -parseqs@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" - integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= - dependencies: - better-assert "~1.0.0" - -parseuri@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" - integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= - dependencies: - better-assert "~1.0.0" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== - -path-dirname@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-is-inside@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.5, path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pause-stream@0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU= - dependencies: - through "~2.3" - -pbkdf2@^3.0.3: - version "3.0.17" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" - integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -pdfkit@>=0.8.1, pdfkit@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.11.0.tgz#9cdb2fc42bd2913587fe3ddf48cc5bbb3c36f7de" - integrity sha512-1s9gaumXkYxcVF1iRtSmLiISF2r4nHtsTgpwXiK8Swe+xwk/1pm8FJjYqN7L3x13NsWnGyUFntWcO8vfqq+wwA== - dependencies: - crypto-js "^3.1.9-1" - fontkit "^1.8.0" - linebreak "^1.0.2" - png-js "^1.0.0" - -pdfmake@^0.1.60: - version "0.1.65" - resolved "https://registry.yarnpkg.com/pdfmake/-/pdfmake-0.1.65.tgz#09c4cf796809ec5fce789343560a36780ff47e37" - integrity sha512-MgzRyiKSP3IEUH7vm4oj3lpikmk5oCD9kYxiJM6Z2Xf6CP9EcikeSDey2rGd4WVvn79Y0TGqz2+to8FtWP8MrA== - dependencies: - iconv-lite "^0.5.1" - linebreak "^1.0.2" - pdfkit "^0.11.0" - svg-to-pdfkit "^0.1.8" - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= - -picomatch@^2.0.4, picomatch@^2.2.1: - version "2.2.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== - -pidtree@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" - integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== - -pify@^2.0.0, pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= - -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -please-upgrade-node@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" - integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== - dependencies: - semver-compare "^1.0.0" - -png-js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/png-js/-/png-js-1.0.0.tgz#e5484f1e8156996e383aceebb3789fd75df1874d" - integrity sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g== - -portfinder@^1.0.9: - version "1.0.26" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.26.tgz#475658d56ca30bed72ac7f1378ed350bd1b64e70" - integrity sha512-Xi7mKxJHHMI3rIUrnm/jjUgwhbYMkp/XKEcZX3aG4BrumLpq3nmoQMX+ClYnDZnZ/New7IatC1no5RX0zo1vXQ== - dependencies: - async "^2.6.2" - debug "^3.1.1" - mkdirp "^0.5.1" - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -postcss-import@12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-12.0.1.tgz#cf8c7ab0b5ccab5649024536e565f841928b7153" - integrity sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw== - dependencies: - postcss "^7.0.1" - postcss-value-parser "^3.2.3" - read-cache "^1.0.0" - resolve "^1.1.7" - -postcss-load-config@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" - integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== - dependencies: - cosmiconfig "^5.0.0" - import-cwd "^2.0.0" - -postcss-loader@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" - integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== - dependencies: - loader-utils "^1.1.0" - postcss "^7.0.0" - postcss-load-config "^2.0.0" - schema-utils "^1.0.0" - -postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== - -postcss@7.0.14: - version "7.0.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" - integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - -postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13: - version "7.0.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.31.tgz#332af45cb73e26c0ee2614d7c7fb02dfcc2bd6dd" - integrity sha512-a937VDHE1ftkjk+8/7nj/mrjtmkn69xxzJgRETXdAUU+IgOYPQNJF17haGWbeDxSyk++HA14UA98FurvPyBJOA== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -prettier@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" - integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== - -pretty-quick@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-2.0.1.tgz#417ee605ade98ecc686e72f63b5d28a2c35b43e9" - integrity sha512-y7bJt77XadjUr+P1uKqZxFWLddvj3SKY6EU4BuQtMxmmEFSMpbN132pUWdSG1g1mtUfO0noBvn7wBf0BVeomHg== - dependencies: - chalk "^2.4.2" - execa "^2.1.0" - find-up "^4.1.0" - ignore "^5.1.4" - mri "^1.1.4" - multimatch "^4.0.0" - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= - -promise-retry@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d" - integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0= - dependencies: - err-code "^1.0.0" - retry "^0.10.0" - -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -protoduck@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f" - integrity sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg== - dependencies: - genfun "^5.0.0" - -protractor@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/protractor/-/protractor-5.1.2.tgz#9b221741709a4c62d5cd53c6aadd54a71137e95f" - integrity sha1-myIXQXCaTGLVzVPGqt1UpxE36V8= - dependencies: - "@types/node" "^6.0.46" - "@types/q" "^0.0.32" - "@types/selenium-webdriver" "~2.53.39" - blocking-proxy "0.0.5" - chalk "^1.1.3" - glob "^7.0.3" - jasmine "^2.5.3" - jasminewd2 "^2.1.0" - optimist "~0.6.0" - q "1.4.1" - saucelabs "~1.3.0" - selenium-webdriver "3.0.1" - source-map-support "~0.4.0" - webdriver-js-extender "^1.0.0" - webdriver-manager "^12.0.6" - -proxy-addr@~2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" - integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== - dependencies: - forwarded "~0.1.2" - ipaddr.js "1.9.1" - -proxy-middleware@latest: - version "0.15.0" - resolved "https://registry.yarnpkg.com/proxy-middleware/-/proxy-middleware-0.15.0.tgz#a3fdf1befb730f951965872ac2f6074c61477a56" - integrity sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY= - -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -psl@^1.1.28: - version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== - -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - -pump@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pumpify@^1.3.3: - version "1.5.1" - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== - dependencies: - duplexify "^3.6.0" - inherits "^2.0.3" - pump "^2.0.0" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - -punycode@^1.2.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -q@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" - integrity sha1-VXBbzZPF82c1MMLCy8DCs63cKG4= - -q@^1.4.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= - -qjobs@^1.1.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.2.0.tgz#c45e9c61800bd087ef88d7e256423bdd49e5d071" - integrity sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg== - -qs@6.7.0: - version "6.7.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" - integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== - -qs@~6.5.2: - version "6.5.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= - -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== - -quill-delta@^3.6.2: - version "3.6.3" - resolved "https://registry.yarnpkg.com/quill-delta/-/quill-delta-3.6.3.tgz#b19fd2b89412301c60e1ff213d8d860eac0f1032" - integrity sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg== - dependencies: - deep-equal "^1.0.1" - extend "^3.0.2" - fast-diff "1.1.2" - -quill@^1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/quill/-/quill-1.3.7.tgz#da5b2f3a2c470e932340cdbf3668c9f21f9286e8" - integrity sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g== - dependencies: - clone "^2.1.1" - deep-equal "^1.0.1" - eventemitter3 "^2.0.3" - extend "^3.0.2" - parchment "^1.1.4" - quill-delta "^3.6.2" - -quill-delta@^3.6.2: - version "3.6.3" - resolved "https://registry.yarnpkg.com/quill-delta/-/quill-delta-3.6.3.tgz#b19fd2b89412301c60e1ff213d8d860eac0f1032" - integrity sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg== - dependencies: - deep-equal "^1.0.1" - extend "^3.0.2" - fast-diff "1.1.2" - -quill@^1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/quill/-/quill-1.3.7.tgz#da5b2f3a2c470e932340cdbf3668c9f21f9286e8" - integrity sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g== - dependencies: - clone "^2.1.1" - deep-equal "^1.0.1" - eventemitter3 "^2.0.3" - extend "^3.0.2" - parchment "^1.1.4" - quill-delta "^3.6.2" - -quote-stream@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-1.0.2.tgz#84963f8c9c26b942e153feeb53aae74652b7e0b2" - integrity sha1-hJY/jJwmuULhU/7rU6rnRlK34LI= - dependencies: - buffer-equal "0.0.1" - minimist "^1.1.3" - through2 "^2.0.0" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -range-parser@^1.0.3, range-parser@^1.2.0, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" - integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== - dependencies: - bytes "3.1.0" - http-errors "1.7.2" - iconv-lite "0.4.24" - unpipe "1.0.0" - -raw-loader@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-1.0.0.tgz#3f9889e73dadbda9a424bce79809b4133ad46405" - integrity sha512-Uqy5AqELpytJTRxYT4fhltcKPj0TyaEpzJDcGz7DFJi+pQOOi3GjR/DOdxTkTsF+NzhnldIoG6TORaBlInUuqA== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - -read-cache@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" - integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= - dependencies: - pify "^2.3.0" - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.3, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@^2.0.0, readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -readdirp@~3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" - integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== - dependencies: - picomatch "^2.2.1" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - dependencies: - resolve "^1.1.6" - -redent@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= - dependencies: - indent-string "^2.1.0" - strip-indent "^1.0.1" - -reflect-metadata@^0.1.2: - version "0.1.13" - resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" - integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== - -regenerate-unicode-properties@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" - integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== - dependencies: - regenerate "^1.4.0" - -regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regenerator-runtime@^0.13.4: - version "0.13.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" - integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -regexp.prototype.flags@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" - integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - -regexpu-core@^4.6.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" - -regjsgen@^0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" - integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - -regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== - dependencies: - jsesc "~0.5.0" - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - dependencies: - is-finite "^1.0.0" - -request@^2.83.0, request@^2.87.0, request@^2.88.0: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - -resolve-cwd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= - dependencies: - resolve-from "^3.0.0" - -resolve-from@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= - -resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2: - version "1.17.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" - integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== - dependencies: - path-parse "^1.0.6" - -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - -restructure@^0.5.3: - version "0.5.4" - resolved "https://registry.yarnpkg.com/restructure/-/restructure-0.5.4.tgz#f54e7dd563590fb34fd6bf55876109aeccb28de8" - integrity sha1-9U591WNZD7NP1r9Vh2EJrsyyjeg= - dependencies: - browserify-optional "^1.0.0" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -retry@^0.10.0: - version "0.10.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" - integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= - -rfdc@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.4.tgz#ba72cc1367a0ccd9cf81a870b3b58bd3ad07f8c2" - integrity sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug== - -rimraf@2, rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.0, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -run-async@^2.2.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-queue@^1.0.0, run-queue@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" - integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= - dependencies: - aproba "^1.1.1" - -rxjs@6.3.3: - version "6.3.3" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" - integrity sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw== - dependencies: - tslib "^1.9.0" - -rxjs@^6.1.0, rxjs@^6.5.2: - version "6.5.5" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" - integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== - dependencies: - tslib "^1.9.0" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sass-graph@^2.2.4: - version "2.2.6" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.6.tgz#09fda0e4287480e3e4967b72a2d133ba09b8d827" - integrity sha512-MKuEYXFSGuRSi8FZ3A7imN1CeVn9Gpw0/SFJKdL1ejXJneI9a5rwlEZrKejhEFAA3O6yr3eIyl/WuvASvlT36g== - dependencies: - glob "^7.0.0" - lodash "^4.0.0" - scss-tokenizer "^0.2.3" - yargs "^7.0.0" - -sass-loader@7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d" - integrity sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w== - dependencies: - clone-deep "^2.0.1" - loader-utils "^1.0.1" - lodash.tail "^4.1.1" - neo-async "^2.5.0" - pify "^3.0.0" - semver "^5.5.0" - -saucelabs@~1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.3.0.tgz#d240e8009df7fa87306ec4578a69ba3b5c424fee" - integrity sha1-0kDoAJ33+ocwbsRXimm6O1xCT+4= - dependencies: - https-proxy-agent "^1.0.0" - -sax@0.5.x: - version "0.5.8" - resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" - integrity sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE= - -sax@0.6.x: - version "0.6.1" - resolved "https://registry.yarnpkg.com/sax/-/sax-0.6.1.tgz#563b19c7c1de892e09bfc4f2fc30e3c27f0952b9" - integrity sha1-VjsZx8HeiS4Jv8Ty/DDjwn8JUrk= - -sax@>=0.6.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -schema-utils@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" - integrity sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8= - dependencies: - ajv "^5.0.0" - -schema-utils@^0.4.4: - version "0.4.7" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" - integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== - dependencies: - ajv "^6.1.0" - ajv-keywords "^3.1.0" - -schema-utils@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" - integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== - dependencies: - ajv "^6.1.0" - ajv-errors "^1.0.0" - ajv-keywords "^3.1.0" - -scope-analyzer@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/scope-analyzer/-/scope-analyzer-2.1.1.tgz#5156c27de084d74bf75af9e9506aaf95c6e73dd6" - integrity sha512-azEAihtQ9mEyZGhfgTJy3IbOWEzeOrYbg7NcYEshPKnKd+LZmC3TNd5dmDxbLBsTG/JVWmCp+vDJ03vJjeXMHg== - dependencies: - array-from "^2.1.1" - dash-ast "^1.0.0" - es6-map "^0.1.5" - es6-set "^0.1.5" - es6-symbol "^3.1.1" - estree-is-function "^1.0.0" - get-assigned-identifiers "^1.1.0" - -scss-tokenizer@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" - integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= - dependencies: - js-base64 "^2.1.8" - source-map "^0.4.2" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= - -selenium-webdriver@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/selenium-webdriver/-/selenium-webdriver-3.0.1.tgz#a2dea5da4a97f6672e89e7ca7276cefa365147a7" - integrity sha1-ot6l2kqX9mcuiefKcnbO+jZRR6c= - dependencies: - adm-zip "^0.4.7" - rimraf "^2.5.4" - tmp "0.0.30" - xml2js "^0.4.17" - -selenium-webdriver@^2.53.2: - version "2.53.3" - resolved "https://registry.yarnpkg.com/selenium-webdriver/-/selenium-webdriver-2.53.3.tgz#d29ff5a957dff1a1b49dc457756e4e4bfbdce085" - integrity sha1-0p/1qVff8aG0ncRXdW5OS/vc4IU= - dependencies: - adm-zip "0.4.4" - rimraf "^2.2.8" - tmp "0.0.24" - ws "^1.0.1" - xml2js "0.4.4" - -selfsigned@^1.9.1: - version "1.10.7" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" - integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA== - dependencies: - node-forge "0.9.0" - -semver-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" - integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= - -semver-dsl@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/semver-dsl/-/semver-dsl-1.0.1.tgz#d3678de5555e8a61f629eed025366ae5f27340a0" - integrity sha1-02eN5VVeimH2Ke7QJTZq5fJzQKA= - dependencies: - semver "^5.3.0" - -semver-intersect@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/semver-intersect/-/semver-intersect-1.4.0.tgz#bdd9c06bedcdd2fedb8cd352c3c43ee8c61321f3" - integrity sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ== - dependencies: - semver "^5.0.0" - -semver-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" - integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== - -"semver@2 || 3 || 4 || 5", semver@^5.0.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@5.6.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" - integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== - -semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@~5.0.1: - version "5.0.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" - integrity sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no= - -semver@~5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" - integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= - -send@0.17.1, send@latest: - version "0.17.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" - integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== - dependencies: - debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "~1.7.2" - mime "1.6.0" - ms "2.1.1" - on-finished "~2.3.0" - range-parser "~1.2.1" - statuses "~1.5.0" - -serialize-javascript@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" - integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== - -serve-index@^1.7.2, serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.14.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" - integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.17.1" - -set-blocking@^2.0.0, set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" - integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shallow-clone@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" - integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA== - dependencies: - is-extendable "^0.1.1" - kind-of "^5.0.0" - mixin-object "^2.0.1" - -shallow-copy@~0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170" - integrity sha1-QV9CcC1z2BAzApLMXuhurhoRoXA= - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.6.1: - version "1.7.2" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== - -shelljs@^0.8.1: - version "0.8.4" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" - integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -smart-buffer@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" - integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw== - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -socket.io-adapter@~1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" - integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g== - -socket.io-client@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" - integrity sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ== - dependencies: - backo2 "1.0.2" - base64-arraybuffer "0.1.5" - component-bind "1.0.0" - component-emitter "1.2.1" - debug "~3.1.0" - engine.io-client "~3.2.0" - has-binary2 "~1.0.2" - has-cors "1.1.0" - indexof "0.0.1" - object-component "0.0.3" - parseqs "0.0.5" - parseuri "0.0.5" - socket.io-parser "~3.2.0" - to-array "0.1.4" - -socket.io-parser@~3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" - integrity sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA== - dependencies: - component-emitter "1.2.1" - debug "~3.1.0" - isarray "2.0.1" - -socket.io@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" - integrity sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA== - dependencies: - debug "~3.1.0" - engine.io "~3.2.0" - has-binary2 "~1.0.2" - socket.io-adapter "~1.1.0" - socket.io-client "2.1.1" - socket.io-parser "~3.2.0" - -sockjs-client@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz#12fc9d6cb663da5739d3dc5fb6e8687da95cb177" - integrity sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg== - dependencies: - debug "^3.2.5" - eventsource "^1.0.7" - faye-websocket "~0.11.1" - inherits "^2.0.3" - json3 "^3.3.2" - url-parse "^1.4.3" - -sockjs@0.3.19: - version "0.3.19" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d" - integrity sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw== - dependencies: - faye-websocket "^0.10.0" - uuid "^3.0.1" - -socks-proxy-agent@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386" - integrity sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg== - dependencies: - agent-base "~4.2.1" - socks "~2.3.2" - -socks@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3" - integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA== - dependencies: - ip "1.1.5" - smart-buffer "^4.1.0" - -source-list-map@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== - -source-list-map@~0.1.7: - version "0.1.8" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" - integrity sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY= - -source-map-loader@0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.2.4.tgz#c18b0dc6e23bf66f6792437557c569a11e072271" - integrity sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ== - dependencies: - async "^2.5.0" - loader-utils "^1.1.0" - -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@0.5.10: - version "0.5.10" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c" - integrity sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@^0.5.0, source-map-support@^0.5.5, source-map-support@~0.5.12: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@~0.4.0: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== - dependencies: - source-map "^0.5.6" - -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@0.1.x, source-map@~0.1.30: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - integrity sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y= - dependencies: - amdefine ">=0.0.4" - -source-map@0.5.6: - version "0.5.6" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" - integrity sha1-dc449SvwczxafwwRjYEzSiu19BI= - -source-map@0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -source-map@^0.4.2, source-map@~0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - integrity sha1-66T12pwNyZneaAMti092FzZSA2s= - dependencies: - amdefine ">=0.0.4" - -source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -sourcemap-codec@^1.4.1, sourcemap-codec@^1.4.4: - version "1.4.8" - resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.5" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -speed-measure-webpack-plugin@1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.3.1.tgz#69840a5cdc08b4638697dac7db037f595d7f36a0" - integrity sha512-qVIkJvbtS9j/UeZumbdfz0vg+QfG/zxonAjzefZrqzkr7xOncLVXkeGbTpzd1gjCBM4PmVNkWlkeTVhgskAGSQ== - dependencies: - chalk "^2.0.1" - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -split@0.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" - integrity sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8= - dependencies: - through "2" - -sprintf-js@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" - integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -ssri@^6.0.0, ssri@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" - integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== - dependencies: - figgy-pudding "^3.5.1" - -static-eval@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.5.tgz#f0782e66999c4b3651cda99d9ce59c507d188f71" - integrity sha512-nNbV6LbGtMBgv7e9LFkt5JV8RVlRsyJrphfAt9tOtBBW/SfnzZDf2KnS72an8e434A+9e/BmJuTxeGPvrAK7KA== - dependencies: - escodegen "^1.11.1" - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -static-module@^3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/static-module/-/static-module-3.0.4.tgz#bfbd1d1c38dd1fbbf0bb4af0c1b3ae18a93a2b68" - integrity sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw== - dependencies: - acorn-node "^1.3.0" - concat-stream "~1.6.0" - convert-source-map "^1.5.1" - duplexer2 "~0.1.4" - escodegen "^1.11.1" - has "^1.0.1" - magic-string "0.25.1" - merge-source-map "1.0.4" - object-inspect "^1.6.0" - readable-stream "~2.3.3" - scope-analyzer "^2.0.1" - shallow-copy "~0.0.1" - static-eval "^2.0.5" - through2 "~2.0.3" - -stats-webpack-plugin@0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/stats-webpack-plugin/-/stats-webpack-plugin-0.7.0.tgz#ccffe9b745de8bbb155571e063f8263fc0e2bc06" - integrity sha512-NT0YGhwuQ0EOX+uPhhUcI6/+1Sq/pMzNuSCBVT4GbFl/ac6I/JZefBcjlECNfAb1t3GOx5dEj1Z7x0cAxeeVLQ== - dependencies: - lodash "^4.17.4" - -"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= - -stdout-stream@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - dependencies: - readable-stream "^2.0.1" - -stream-browserify@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-combiner@~0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" - integrity sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ= - dependencies: - duplexer "~0.1.1" - -stream-each@^1.1.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" - integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== - dependencies: - end-of-stream "^1.1.0" - stream-shift "^1.0.0" - -stream-http@^2.7.2: - version "2.8.3" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - -streamroller@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-1.0.6.tgz#8167d8496ed9f19f05ee4b158d9611321b8cacd9" - integrity sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg== - dependencies: - async "^2.6.2" - date-format "^2.0.0" - debug "^3.2.6" - fs-extra "^7.0.1" - lodash "^4.17.14" - -string-width@^1.0.1, string-width@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string.prototype.padend@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" - integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - -string.prototype.trimend@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" - integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -string.prototype.trimleft@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart "^1.0.0" - -string.prototype.trimright@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend "^1.0.0" - -string.prototype.trimstart@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" - integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -string_decoder@^1.0.0, string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.0.0, strip-ansi@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= - dependencies: - get-stdin "^4.0.1" - -strip-json-comments@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - -style-loader@0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" - integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - -stylus-loader@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-3.0.2.tgz#27a706420b05a38e038e7cacb153578d450513c6" - integrity sha512-+VomPdZ6a0razP+zinir61yZgpw2NfljeSsdUF5kJuEzlo3khXhY19Fn6l8QQz1GRJGtMCo8nG5C04ePyV7SUA== - dependencies: - loader-utils "^1.0.2" - lodash.clonedeep "^4.5.0" - when "~3.6.x" - -stylus@0.54.5: - version "0.54.5" - resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" - integrity sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk= - dependencies: - css-parse "1.7.x" - debug "*" - glob "7.0.x" - mkdirp "0.5.x" - sax "0.5.x" - source-map "0.1.x" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^3.1.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= - dependencies: - has-flag "^1.0.0" - -supports-color@^5.1.0, supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== - dependencies: - has-flag "^4.0.0" - -svg-to-pdfkit@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/svg-to-pdfkit/-/svg-to-pdfkit-0.1.8.tgz#5921765922044843f0c1a5b25ec1ef8a4a33b8af" - integrity sha512-QItiGZBy5TstGy+q8mjQTMGRlDDOARXLxH+sgVm1n/LYeo0zFcQlcCh8m4zi8QxctrxB9Kue/lStc/RD5iLadQ== - dependencies: - pdfkit ">=0.8.1" - -symbol-observable@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" - integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== - -tapable@^1.0.0, tapable@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== - -tar@^2.0.0, tar@^2.2.1: - version "2.2.2" - resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" - integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== - dependencies: - block-stream "*" - fstream "^1.0.12" - inherits "2" - -tar@^4.4.8: - version "4.4.13" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" - integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.8.6" - minizlib "^1.2.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.3" - -terser-webpack-plugin@1.4.3, terser-webpack-plugin@^1.1.0: - version "1.4.3" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c" - integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA== - dependencies: - cacache "^12.0.2" - find-cache-dir "^2.1.0" - is-wsl "^1.1.0" - schema-utils "^1.0.0" - serialize-javascript "^2.1.2" - source-map "^0.6.1" - terser "^4.1.2" - webpack-sources "^1.4.0" - worker-farm "^1.7.0" - -terser@^4.1.2: - version "4.7.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006" - integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw== - dependencies: - commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" - -through2@^2.0.0, through2@~2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@2, "through@>=2.2.7 <3", through@X.X.X, through@^2.3.6, through@~2.3, through@~2.3.1, through@~2.3.4: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -time-stamp@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" - integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= - -timers-browserify@^2.0.4: - version "2.0.11" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" - integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== - dependencies: - setimmediate "^1.0.4" - -tiny-inflate@^1.0.0, tiny-inflate@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4" - integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw== - -tmp@0.0.24: - version "0.0.24" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.24.tgz#d6a5e198d14a9835cc6f2d7c3d9e302428c8cf12" - integrity sha1-1qXhmNFKmDXMby18PZ4wJCjIzxI= - -tmp@0.0.30: - version "0.0.30" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.30.tgz#72419d4a8be7d6ce75148fd8b324e593a711c2ed" - integrity sha1-ckGdSovn1s51FI/YsyTlk6cRwu0= - dependencies: - os-tmpdir "~1.0.1" - -tmp@0.0.33, tmp@0.0.x, tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -to-array@0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" - integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= - -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -toidentifier@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" - integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== - -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -traverse@^0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= - -tree-kill@1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" - integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== - -trim-newlines@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= - -"true-case-path@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" - integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== - dependencies: - glob "^7.1.2" - -ts-node@~4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-4.1.0.tgz#36d9529c7b90bb993306c408cd07f7743de20712" - integrity sha512-xcZH12oVg9PShKhy3UHyDmuDLV3y7iKwX25aMVPt1SIXSuAfWkFiGPEkg+th8R4YKW/QCxDoW7lJdb15lx6QWg== - dependencies: - arrify "^1.0.0" - chalk "^2.3.0" - diff "^3.1.0" - make-error "^1.1.1" - minimist "^1.2.0" - mkdirp "^0.5.1" - source-map-support "^0.5.0" - tsconfig "^7.0.0" - v8flags "^3.0.0" - yn "^2.0.0" - -ts-simple-ast@12.4.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/ts-simple-ast/-/ts-simple-ast-12.4.0.tgz#6b53f6d6a59145da637dfe0e8c646d1e66ba278a" - integrity sha512-7GJFZlyTZY7uMAEhX62ZLxdwOpGDJzc/nwpi1nRPZ7N2ICcqqrMjDtRnki15IUBv2ZjIGu6KBqk/pUqJFODFsg== - dependencies: - "@dsherret/to-absolute-glob" "^2.0.2" - code-block-writer "^7.2.0" - fs-extra "^6.0.1" - glob-parent "^3.1.0" - globby "^8.0.1" - is-negated-glob "^1.0.0" - multimatch "^2.1.0" - object-assign "^4.1.1" - tslib "^1.9.0" - typescript "2.9.1" - -tsconfig@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7" - integrity sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw== - dependencies: - "@types/strip-bom" "^3.0.0" - "@types/strip-json-comments" "0.0.30" - strip-bom "^3.0.0" - strip-json-comments "^2.0.0" - -tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" - integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== - -tslint@^5.9.1: - version "5.20.1" - resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz#e401e8aeda0152bc44dd07e614034f3f80c67b7d" - integrity sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== - dependencies: - "@babel/code-frame" "^7.0.0" - builtin-modules "^1.1.1" - chalk "^2.3.0" - commander "^2.12.1" - diff "^4.0.1" - glob "^7.1.1" - js-yaml "^3.13.1" - minimatch "^3.0.4" - mkdirp "^0.5.1" - resolve "^1.3.2" - semver "^5.3.0" - tslib "^1.8.0" - tsutils "^2.29.0" - -tsutils@^2.29.0: - version "2.29.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" - integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== - dependencies: - tslib "^1.8.1" - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-is@~1.6.17, type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" - integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - -typescript@2.9.1: - version "2.9.1" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.1.tgz#fdb19d2c67a15d11995fd15640e373e09ab09961" - integrity sha512-h6pM2f/GDchCFlldnriOhs1QHuwbnmj6/v7499eMHqPeW4V2G0elua2eIc2nu8v2NdHV0Gm+tzX83Hr6nUFjQA== - -typescript@3.2.4, typescript@~3.2.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.4.tgz#c585cb952912263d915b462726ce244ba510ef3d" - integrity sha512-0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg== - -typescript@^2.4.2: - version "2.9.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" - integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== - -uglify-js@^3.1.4: - version "3.13.5" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz#5d71d6dbba64cf441f32929b1efce7365bb4f113" - integrity sha512-xtB8yEqIkn7zmOyS2zUNBsYCBRhDkvlNxMMY2smuJ/qA8NCHeQvKCF3i9Z4k8FJH4+PJvZRtMrPynfZ75+CSZw== - -ultron@1.0.x: - version "1.0.2" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" - integrity sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po= - -ultron@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" - integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== - -unc-path-regex@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= - -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" - -unicode-match-property-value-ecmascript@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" - integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== - -unicode-properties@^1.2.2: - version "1.3.1" - resolved "https://registry.yarnpkg.com/unicode-properties/-/unicode-properties-1.3.1.tgz#cc642b6314bde2c691d65dd94cece09ed84f1282" - integrity sha512-nIV3Tf3LcUEZttY/2g4ZJtGXhWwSkuLL+rCu0DIAMbjyVPj+8j5gNVz4T/sVbnQybIsd5SFGkPKg/756OY6jlA== - dependencies: - base64-js "^1.3.0" - unicode-trie "^2.0.0" - -unicode-property-aliases-ecmascript@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" - integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== - -unicode-trie@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-0.3.1.tgz#d671dddd89101a08bac37b6a5161010602052085" - integrity sha1-1nHd3YkQGgi6w3tqUWEBBgIFIIU= - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -unicode-trie@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-1.0.0.tgz#f649afdca127135edb55ca0ad7c8c60656d92ad1" - integrity sha512-v5raLKsobbFbWLMoX9+bChts/VhPPj3XpkNr/HbqkirXR1DPk8eo9IYKyvk0MQZFkaoRsFj2Rmaqgi2rfAZYtA== - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -unicode-trie@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-2.0.0.tgz#8fd8845696e2e14a8b67d78fa9e0dd2cad62fec8" - integrity sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ== - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -unix-crypt-td-js@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz#4912dfad1c8aeb7d20fa0a39e4c31918c1d5d5dd" - integrity sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -upath@^1.0.5, upath@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - -uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -url-parse@^1.4.3: - version "1.5.1" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz#d5fa9890af8a5e1f274a2c98376510f6425f6e3b" - integrity sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -useragent@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.3.0.tgz#217f943ad540cb2128658ab23fc960f6a88c9972" - integrity sha512-4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw== - dependencies: - lru-cache "4.1.x" - tmp "0.0.x" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -util@0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= - dependencies: - inherits "2.0.1" - -util@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== - dependencies: - inherits "2.0.3" - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= - -uuid@^3.0.0, uuid@^3.0.1, uuid@^3.3.2, uuid@^3.3.3: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -v8flags@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" - integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== - dependencies: - homedir-polyfill "^1.0.1" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -validate-npm-package-name@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" - integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= - dependencies: - builtins "^1.0.3" - -vary@^1, vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -viz.js@^1.8.0: - version "1.8.2" - resolved "https://registry.yarnpkg.com/viz.js/-/viz.js-1.8.2.tgz#d9cc04cd99f98ec986bf9054db76a6cbcdc5d97a" - integrity sha512-W+1+N/hdzLpQZEcvz79n2IgUE9pfx6JLdHh3Kh8RGvLL8P1LdJVQmi2OsDcLdY4QVID4OUy+FPelyerX0nJxIQ== - -vlq@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" - integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== - -vm-browserify@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== - -void-elements@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - integrity sha1-wGavtYK7HLQSjWDqkjkulNXp2+w= - -watchpack-chokidar2@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" - integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== - dependencies: - chokidar "^2.1.8" - -watchpack@^1.5.0: - version "1.7.2" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" - integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== - dependencies: - graceful-fs "^4.1.2" - neo-async "^2.5.0" - optionalDependencies: - chokidar "^3.4.0" - watchpack-chokidar2 "^2.0.0" - -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -webdriver-js-extender@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/webdriver-js-extender/-/webdriver-js-extender-1.0.0.tgz#81c533a9e33d5bfb597b4e63e2cdb25b54777515" - integrity sha1-gcUzqeM9W/tZe05j4s2yW1R3dRU= - dependencies: - "@types/selenium-webdriver" "^2.53.35" - selenium-webdriver "^2.53.2" - -webdriver-manager@^12.0.6: - version "12.1.7" - resolved "https://registry.yarnpkg.com/webdriver-manager/-/webdriver-manager-12.1.7.tgz#ed4eaee8f906b33c146e869b55e850553a1b1162" - integrity sha512-XINj6b8CYuUYC93SG3xPkxlyUc3IJbD6Vvo75CVGuG9uzsefDzWQrhz0Lq8vbPxtb4d63CZdYophF8k8Or/YiA== - dependencies: - adm-zip "^0.4.9" - chalk "^1.1.1" - del "^2.2.0" - glob "^7.0.3" - ini "^1.3.4" - minimist "^1.2.0" - q "^1.4.1" - request "^2.87.0" - rimraf "^2.5.2" - semver "^5.3.0" - xml2js "^0.4.17" - -webpack-core@^0.6.8: - version "0.6.9" - resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" - integrity sha1-/FcViMhVjad76e+23r3Fo7FyvcI= - dependencies: - source-list-map "~0.1.7" - source-map "~0.4.1" - -webpack-dev-middleware@3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.4.0.tgz#1132fecc9026fd90f0ecedac5cbff75d1fb45890" - integrity sha512-Q9Iyc0X9dP9bAsYskAVJ/hmIZZQwf/3Sy4xCAZgL5cUkjZmUZLt4l5HpbST/Pdgjn3u6pE7u5OdGd1apgzRujA== - dependencies: - memory-fs "~0.4.1" - mime "^2.3.1" - range-parser "^1.0.3" - webpack-log "^2.0.0" - -webpack-dev-middleware@3.5.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.5.1.tgz#9265b7742ef50f54f54c1d9af022fc17c1be9b88" - integrity sha512-4dwCh/AyMOYAybggUr8fiCkRnjVDp+Cqlr9c+aaNB3GJYgRGYQWJ1YX/WAKUNA9dPNHZ6QSN2lYDKqjKSI8Vqw== - dependencies: - memory-fs "~0.4.1" - mime "^2.3.1" - range-parser "^1.0.3" - webpack-log "^2.0.0" - -webpack-dev-server@3.1.14: - version "3.1.14" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.14.tgz#60fb229b997fc5a0a1fc6237421030180959d469" - integrity sha512-mGXDgz5SlTxcF3hUpfC8hrQ11yhAttuUQWf1Wmb+6zo3x6rb7b9mIfuQvAPLdfDRCGRGvakBWHdHOa0I9p/EVQ== - dependencies: - ansi-html "0.0.7" - bonjour "^3.5.0" - chokidar "^2.0.0" - compression "^1.5.2" - connect-history-api-fallback "^1.3.0" - debug "^3.1.0" - del "^3.0.0" - express "^4.16.2" - html-entities "^1.2.0" - http-proxy-middleware "~0.18.0" - import-local "^2.0.0" - internal-ip "^3.0.1" - ip "^1.1.5" - killable "^1.0.0" - loglevel "^1.4.1" - opn "^5.1.0" - portfinder "^1.0.9" - schema-utils "^1.0.0" - selfsigned "^1.9.1" - semver "^5.6.0" - serve-index "^1.7.2" - sockjs "0.3.19" - sockjs-client "1.3.0" - spdy "^4.0.0" - strip-ansi "^3.0.0" - supports-color "^5.1.0" - url "^0.11.0" - webpack-dev-middleware "3.4.0" - webpack-log "^2.0.0" - yargs "12.0.2" - -webpack-log@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" - integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== - dependencies: - ansi-colors "^3.0.0" - uuid "^3.3.2" - -webpack-merge@4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" - integrity sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw== - dependencies: - lodash "^4.17.5" - -webpack-sources@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" - integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack-sources@^1.1.0, webpack-sources@^1.2.0, webpack-sources@^1.3.0, webpack-sources@^1.4.0: - version "1.4.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack-subresource-integrity@1.1.0-rc.6: - version "1.1.0-rc.6" - resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-1.1.0-rc.6.tgz#37f6f1264e1eb378e41465a98da80fad76ab8886" - integrity sha512-Az7y8xTniNhaA0620AV1KPwWOqawurVVDzQSpPAeR5RwNbL91GoBSJAAo9cfd+GiFHwsS5bbHepBw1e6Hzxy4w== - dependencies: - webpack-core "^0.6.8" - -webpack@4.29.0: - version "4.29.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.29.0.tgz#f2cfef83f7ae404ba889ff5d43efd285ca26e750" - integrity sha512-pxdGG0keDBtamE1mNvT5zyBdx+7wkh6mh7uzMOo/uRQ/fhsdj5FXkh/j5mapzs060forql1oXqXN9HJGju+y7w== - dependencies: - "@webassemblyjs/ast" "1.7.11" - "@webassemblyjs/helper-module-context" "1.7.11" - "@webassemblyjs/wasm-edit" "1.7.11" - "@webassemblyjs/wasm-parser" "1.7.11" - acorn "^6.0.5" - acorn-dynamic-import "^4.0.0" - ajv "^6.1.0" - ajv-keywords "^3.1.0" - chrome-trace-event "^1.0.0" - enhanced-resolve "^4.1.0" - eslint-scope "^4.0.0" - json-parse-better-errors "^1.0.2" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - micromatch "^3.1.8" - mkdirp "~0.5.0" - neo-async "^2.5.0" - node-libs-browser "^2.0.0" - schema-utils "^0.4.4" - tapable "^1.1.0" - terser-webpack-plugin "^1.1.0" - watchpack "^1.5.0" - webpack-sources "^1.3.0" - -websocket-driver@>=0.5.1: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -when@~3.6.x: - version "3.6.4" - resolved "https://registry.yarnpkg.com/when/-/when-3.6.4.tgz#473b517ec159e2b85005497a13983f095412e34e" - integrity sha1-RztRfsFZ4rhQBUl6E5g/CVQS404= - -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which-pm-runs@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" - integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= - -which@1, which@^1.2.1, which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - -windows-release@^3.1.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.0.tgz#dce167e9f8be733f21c849ebd4d03fe66b29b9f0" - integrity sha512-2HetyTg1Y+R+rUgrKeUEhAG/ZuOmTrI1NBb3ZyAGQMYmOJjBBPe4MTodghRkmLJZHwkuPi02anbeGP+Zf401LQ== - dependencies: - execa "^1.0.0" - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= - -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= - -worker-farm@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" - integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== - dependencies: - errno "~0.1.7" - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -ws@^1.0.1: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" - integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w== - dependencies: - options ">=0.0.5" - ultron "1.0.x" - -ws@~3.3.1: - version "3.3.3" - resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" - integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== - dependencies: - async-limiter "~1.0.0" - safe-buffer "~5.1.0" - ultron "~1.1.0" - -xml2js@0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.4.tgz#3111010003008ae19240eba17497b57c729c555d" - integrity sha1-MREBAAMAiuGSQOuhdJe1fHKcVV0= - dependencies: - sax "0.6.x" - xmlbuilder ">=1.0.0" - -xml2js@^0.4.17: - version "0.4.23" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" - integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== - dependencies: - sax ">=0.6.0" - xmlbuilder "~11.0.0" - -xmlbuilder@>=1.0.0: - version "15.1.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" - integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== - -xmlbuilder@~11.0.0: - version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" - integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== - -xmlhttprequest-ssl@~1.5.4: - version "1.5.5" - resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" - integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= - -xregexp@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz#e698189de49dd2a18cc5687b05e17c8e43943020" - integrity sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg== - -xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= - -"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - -yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yaml@^1.7.2: - version "1.10.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== - -yargs-parser@5.0.0-security.0: - version "5.0.0-security.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz#4ff7271d25f90ac15643b86076a2ab499ec9ee24" - integrity sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ== - dependencies: - camelcase "^3.0.0" - object.assign "^4.1.0" - -yargs-parser@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" - integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== - dependencies: - camelcase "^4.1.0" - -yargs-parser@^13.0.0: - version "13.1.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs@12.0.2: - version "12.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" - integrity sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ== - dependencies: - cliui "^4.0.0" - decamelize "^2.0.0" - find-up "^3.0.0" - get-caller-file "^1.0.1" - os-locale "^3.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1 || ^4.0.0" - yargs-parser "^10.1.0" - -yargs@13.1.0: - version "13.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.1.0.tgz#b2729ce4bfc0c584939719514099d8a916ad2301" - integrity sha512-1UhJbXfzHiPqkfXNHYhiz79qM/kZqjTE8yGlEjZa85Q+3+OwcV6NRkV7XOV1W2Eom2bzILeUn55pQYffjVOLAg== - dependencies: - cliui "^4.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - os-locale "^3.1.0" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.0.0" - -yargs@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.1.tgz#67f0ef52e228d4ee0d6311acede8850f53464df6" - integrity sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g== - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "5.0.0-security.0" - -yeast@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" - integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= - -yn@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" - integrity sha1-5a2ryKz0CPY4X8dklWhMiOavaJo= - -zone.js@^0.8.29: - version "0.8.29" - resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.8.29.tgz#8dce92aa0dd553b50bc5bfbb90af9986ad845a12" - integrity sha512-mla2acNCMkWXBD+c+yeUrBUrzOxYMNFdQ6FGfigGGtEVBPJx07BQeJekjt9DmH1FtZek4E9rE1eRR9qQpxACOQ== diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 95838af31e..0000000000 --- a/gulpfile.js +++ /dev/null @@ -1,348 +0,0 @@ -var gulp = require('gulp'), - del = require('del'), - _ = require('lodash'), - fs = require('fs'), - path = require('path'), - concat = require('gulp-concat'), - sass = require('gulp-sass'), - postcss = require('gulp-postcss'), - cleanCSS = require('gulp-clean-css'), - sourcemaps = require('gulp-sourcemaps'), - autoprefixer = require('autoprefixer'), - merge = require('merge-stream'), - rename = require('gulp-rename'), - inject = require('gulp-inject'), - uglify = require('gulp-uglify'), - eslint = require('gulp-eslint'), - cachebust = require('gulp-cache-bust'), - connectModRewrite = require('connect-modrewrite'), - connect = require('gulp-connect'), - through = require('through2'), - gulp_if = require('gulp-if'), - replace = require('gulp-replace'); - -// development task -var production = false; -let timestamp; -var scripts = JSON.parse(fs.readFileSync('frontend/app.scripts.json')); -var styles = JSON.parse(fs.readFileSync('frontend/app.styles.json')); -var configJson = JSON.parse(fs.readFileSync('frontend/src/js/config.json')); - -function clean() { - return del(['frontend/dist/*']); -}; - -/* -Concat all js libs -*/ -function vendorjs() { - var paths = []; - _.forIn(scripts.chunks, function(chunkScripts, chunkName) { - chunkScripts.forEach(function(script) { - var scriptFileName = scripts.paths[script]; - - if (!fs.existsSync(__dirname + '/' + scriptFileName)) { - - throw console.error('Required path doesn\'t exist: ' + __dirname + '/' + scriptFileName, script) - } - paths.push(scriptFileName); - }); - }); - return gulp.src(paths) - .pipe(concat('vendor.js')) - .pipe(gulp.dest("frontend/dist/vendors")) -} - -/* -Concat all css libs -*/ -function vendorcss() { - var paths = []; - _.forIn(styles.chunks, function(chunkStyles, chunkName) { - chunkStyles.forEach(function(style) { - var styleFileName = styles.paths[style]; - - if (!fs.existsSync(__dirname + '/' + styleFileName)) { - - throw console.error('Required path doesn\'t exist: ' + __dirname + '/' + styleFileName, style) - } - paths.push(styleFileName); - }); - }); - return gulp.src(paths) - .pipe(concat('vendor.css')) - .pipe(gulp.dest("frontend/dist/vendors")) -} - -/* -minify and compress custom css files -*/ -function css() { - return gulp.src('frontend/src/css/main.scss') - .pipe(sass().on('error', sass.logError)) - .pipe(sourcemaps.init()) - .pipe(postcss([autoprefixer()])) - .pipe(gulp_if(production, cleanCSS())) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(sourcemaps.write()) - .pipe(gulp.dest('frontend/dist/css')) - pipe(connect.reload()); -} - -/* -minify angular scripts -*/ -function js() { - var app = gulp.src('frontend/src/js/app.js') - .pipe(concat('app.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')); - - var configs = gulp.src('frontend/src/js/route-config/*.js') - .pipe(concat('route-config.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')); - - var controllers = gulp.src('frontend/src/js/controllers/*.js') - .pipe(concat('controllers.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')); - - var directives = gulp.src('frontend/src/js/directives/*.js') - .pipe(concat('directives.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')) - - var filters = gulp.src('frontend/src/js/filters/*.js') - .pipe(concat('filters.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')); - - var services = gulp.src('frontend/src/js/services/*.js') - .pipe(concat('services.js')) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp_if(production, uglify({ mangle: false }))) - .pipe(gulp.dest('frontend/dist/js')) - return merge(app, configs, controllers, directives, filters, services). - pipe(connect.reload()); -} - -/* -minify and compress html files -*/ -function html() { - return gulp.src('frontend/src/views/web/**/*.html') - // .pipe(gulp_if(production, htmlmin({ collapseWhitespace: true }))) - .pipe(gulp.dest('frontend/dist/views/web/')) - .pipe(connect.reload()); -} - - -/* -for image compression -*/ -function images() { - return gulp.src('frontend/src/images/**/*') - // .pipe(gulp_if(production, imagemin())) - .pipe(gulp.dest('frontend/dist/images')); -} - -/* -Fonts -*/ -function fonts() { - var font = gulp.src([ - 'bower_components/font-awesome/fonts/fontawesome-webfont.*', - 'bower_components/materialize/fonts/**/*', - 'frontend/src/fonts/*' - ]) - .pipe(gulp.dest('frontend/dist/fonts/')); - - var fontCss = gulp.src([ - 'bower_components/font-awesome/css/font-awesome.css' - ]) - .pipe(gulp_if(production, cleanCSS())) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(sourcemaps.write()) - .pipe(gulp.dest('frontend/dist/css/')); - - return merge(font, fontCss); -} - -/* -config for prod server -*/ -function configProd() { - return gulp.src('frontend/src/js/config.sample.js') - .pipe(replace('moduleName', 'evalai-config')) - .pipe(replace('constantName', Object.keys(configJson.production))) - .pipe(replace('configKey', Object.keys(configJson.production.EnvironmentConfig))) - .pipe(replace('configValue', configJson.production.EnvironmentConfig.API)) - .pipe(rename({ - basename: 'config' - })) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp.dest('frontend/dist/js')) -} - -/* -config for staging server -*/ -function configStaging() { - return gulp.src('frontend/src/js/config.sample.js') - .pipe(replace('moduleName', 'evalai-config')) - .pipe(replace('constantName', Object.keys(configJson.staging))) - .pipe(replace('configKey', Object.keys(configJson.staging.EnvironmentConfig))) - .pipe(replace('configValue', configJson.staging.EnvironmentConfig.API)) - .pipe(rename({ - basename: 'config' - })) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp.dest('frontend/dist/js/')) -} - -/* -config for dev server -*/ -function configDev() { - return gulp.src('frontend/src/js/config.sample.js') - .pipe(replace('moduleName', 'evalai-config')) - .pipe(replace('constantName', Object.keys(configJson.local))) - .pipe(replace('configKey', Object.keys(configJson.local.EnvironmentConfig))) - .pipe(replace('configValue', configJson.local.EnvironmentConfig.API)) - .pipe(rename({ - basename: 'config' - })) - .pipe(gulp_if(production, rename({ suffix: '.min' }))) - .pipe(gulp.dest('frontend/dist/js/')) -} - -/* -Inject path of css and js files in index.html -*/ -function injectpaths() { - var target = gulp.src('frontend/base.html'); - var sources = gulp.src([ - 'frontend/dist/vendors/*.js', - 'frontend/dist/js/*.js', - 'frontend/dist/vendors/*.css', - 'frontend/dist/css/*.css', - ], { read: false }); - return target - .pipe(inject(sources, { ignorePath: 'frontend', addRootSlash: true })) - .pipe(gulp_if('*.js', production ? uglify() : through.obj())) - .pipe(gulp_if('*.css', production ? cleanCSS() : through.obj())) - .pipe(production ? cachebust({ type: 'timestamp' }) : through.obj()) - .pipe(through.obj((file, enc, cb) => { - // Extract the timestamp value from the file contents - const fileContents = file.contents.toString(); - const regex = /\?t=(\d+)/; - const matches = fileContents.match(regex); - if (matches && matches[1]) { - timestamp = matches[1]; - } - cb(null, file); - })) - .pipe(rename({ - basename: "index" - })) - .pipe(gulp.dest('frontend/')); -} - -function replacetimestamp() { - return gulp.src('frontend/dist/**/*.*') - .pipe(replace('___REPLACE_IN_GULP___', timestamp)) - .pipe(gulp.dest('frontend/dist')); -} - -/* -js linting -*/ -var lint_path = { - js: ['frontend/src/js/**/*.js', ] -} - -function lint() { - return gulp.src(lint_path.js) - .pipe(eslint({})) - .pipe(eslint.format()) - .pipe(eslint.results(function(results) { - // Get the count of lint errors - var countError = results.errorCount; - //Get the count of lint warnings - var countWarning = results.warningCount; - if (countError === 0) { - if (countWarning > 0) { - console.warn("Please remove lint warnings in production env."); - } - } else { - connect.serverClose(); - console.error("Please remove lint errors to connect the server"); - } - })) - .pipe(eslint.failAfterError()) -} - -/* -Start a server for serving frontend -*/ -function startServer() { - // initially close the existance server if exists - connect.serverClose(); - connect.server({ - root: 'frontend/', - port: 8888, - host: '0.0.0.0', - livereload: true, - middleware: function(connect) { - return [ - connectModRewrite([ - '!\\.html|\\.js|\\.css|\\.ico|\\.png|\\.gif|\\.jpg|\\.woff|.\\.ttf|.\\otf|\\.jpeg|\\.swf.*$ /index.html [NC,L]' - ]) - ]; - } - }); -} - -function watch() { - gulp.watch('frontend/src/js/**/*.js', js); - gulp.watch('frontend/src/css/**/*.scss', css); - gulp.watch('frontend/src/views/web/**/*.html', html); - gulp.watch('frontend/src/images/**/*', images); - gulp.watch('bower_components/materialize/fonts/**/*', fonts); - gulp.watch('bower_components/materialize/fonts/**/*', fonts); -} - - - -var parallelTasks = gulp.parallel(vendorcss, vendorjs, css, js, html, images, fonts); - -gulp.task('production', gulp.series(clean, function(done) { - production = true; - done(); -}, parallelTasks, configProd, injectpaths, replacetimestamp, lint)); - -gulp.task('staging', gulp.series(clean, function(done) { - production = true; - done(); -}, parallelTasks, configStaging, injectpaths, replacetimestamp, lint)); - -gulp.task('dev', gulp.series(clean, function(done) { - production = false; - done(); -}, parallelTasks, configDev, injectpaths, lint)); - -gulp.task('dev:runserver', gulp.series(clean ,function(done) { - production = false; - done(); -}, parallelTasks, configDev, injectpaths, lint, gulp.parallel(watch, startServer))); - -gulp.task('runserver', gulp.series(function(done) { - production = false; - done(); -}, gulp.parallel(watch, startServer))); diff --git a/karma.conf.js b/karma.conf.js deleted file mode 100755 index 12fc5bad09..0000000000 --- a/karma.conf.js +++ /dev/null @@ -1,103 +0,0 @@ -const puppeteer = require('puppeteer'); -process.env.CHROME_BIN = puppeteer.executablePath(); - -// Karma configuration -// Generated on Thu Apr 18 2019 11:48:30 GMT+0530 (India Standard Time) - -module.exports = function(config) { - var configuration = { - - // base path that will be used to resolve all patterns (eg. files, exclude) - basePath: '', - - - // frameworks to use - // available frameworks: https://npmjs.org/browse/keyword/karma-adapter - frameworks: ['jasmine'], - - customLaunchers: { - ChromeWithNoSandbox: { - base: 'ChromeHeadless', - flags: ['--no-sandbox'], - }, - }, - browsers: ['ChromeWithNoSandbox'], - - // list of files / patterns to load in the browser - files: [ - 'frontend/dist/vendors/*.js', - 'frontend/dist/js/config.js', - 'node_modules/angular-mocks/angular-mocks.js', - 'frontend/src/js/app.js', - 'frontend/src/**/*.js', - 'frontend/tests/**/*.test.js' - ], - - - // list of files / patterns to exclude - exclude: [ - ], - - - // preprocess matching files before serving them to the browser - // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor - preprocessors: { - 'frontend/src/js/controllers/*.js': ['coverage'] - }, - - plugins: [ - 'karma-jasmine', - 'karma-chrome-launcher', - 'karma-coverage', - 'karma-coveralls', - 'karma-brief-reporter', - ], - - // test results reporter to use - // possible values: 'dots', 'progress' - // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ['coverage', 'brief'], - - - // web server port - port: 9876, - - - // enable / disable colors in the output (reporters and logs) - colors: true, - - - // level of logging - // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG - logLevel: config.LOG_INFO, - - - // enable / disable watching file and executing tests whenever any file changes - autoWatch: true, - - - // Continuous Integration mode - // if true, Karma captures browsers, runs the tests and exits - singleRun: false, - - // Concurrency level - // how many browser should be started simultaneous - concurrency: Infinity, - - coverageReporter: { - includeAllSources: true, - dir: 'coverage/', - reporters: [ - { type: "lcov" }, - { type: 'text-summary' } - ] - } - }; - - // Detect if this is TravisCI running the tests and tell it to use chromium - if(process.env.TRAVIS){ - configuration.browsers = ['ChromeWithNoSandbox']; - } - - config.set(configuration); -} diff --git a/monitoring/prometheus/prometheus_production.yml b/monitoring/prometheus/prometheus_production.yml index 2761ea0c36..c71fce9653 100644 --- a/monitoring/prometheus/prometheus_production.yml +++ b/monitoring/prometheus/prometheus_production.yml @@ -15,16 +15,16 @@ scrape_configs: - job_name: 'statsd' metrics_path: '/statsd/metrics' static_configs: - - targets: ['monitoring.eval.ai'] + - targets: ['monitoring.arena.synkrotron.ai'] - job_name: 'node_exporter' metrics_path: '/node_exporter' static_configs: - - targets: ['eval.ai'] + - targets: ['arena.synkrotron.ai'] alerting: alertmanagers: - path_prefix: '/alert_manager' scheme: 'https' static_configs: - - targets: ['monitoring.eval.ai'] + - targets: ['monitoring.arena.synkrotron.ai'] diff --git a/monitoring/prometheus/prometheus_staging.yml b/monitoring/prometheus/prometheus_staging.yml index 3a4248bdcc..18c870b585 100644 --- a/monitoring/prometheus/prometheus_staging.yml +++ b/monitoring/prometheus/prometheus_staging.yml @@ -15,16 +15,16 @@ scrape_configs: - job_name: 'statsd' metrics_path: '/statsd/metrics' static_configs: - - targets: ['monitoring-staging.eval.ai'] + - targets: ['monitoring-staging.arena.synkrotron.ai'] - job_name: 'node_exporter' metrics_path: '/node_exporter' static_configs: - - targets: ['staging.eval.ai'] + - targets: ['staging.arena.synkrotron.ai'] alerting: alertmanagers: - path_prefix: '/alert_manager' scheme: 'https' static_configs: - - targets: ['monitoring-staging.eval.ai'] + - targets: ['monitoring-staging.arena.synkrotron.ai'] diff --git a/package.json b/package.json deleted file mode 100755 index ccce552456..0000000000 --- a/package.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "name": "evalai", - "version": "1.0.0", - "description": "", - "main": "index.js", - "scripts": { - "test": "karma start karma.conf.js" - }, - "author": "", - "license": "ISC", - "dependencies": { - "autoprefixer": "^8.2.0", - "connect-modrewrite": "^0.10.2", - "del": "^3.0.0", - "eslint": "^4.19.1", - "eslint-config-angular": "^0.5.0", - "eslint-plugin-angular": "^3.3.0", - "fs": "0.0.1-security", - "gulp": "^4.0.0", - "gulp-clean-css": "^3.9.3", - "gulp-concat": "^2.6.0", - "gulp-connect": "^5.0.0", - "gulp-eslint": "^4.0.2", - "gulp-if": "^2.0.2", - "gulp-inject": "^4.2.0", - "gulp-path": "^4.0.0", - "gulp-postcss": "^7.0.1", - "gulp-rename": "^1.2.2", - "gulp-replace": "^1.0.0", - "gulp-sass": "^4.0.1", - "gulp-sourcemaps": "^2.6.4", - "gulp-uglify": "^3.0.0", - "gulp-cache-bust": "^1.4.1", - "lodash": "^4.16.6", - "merge-stream": "^1.0.0", - "node-sass": "^4.9.0" - }, - "repository": { - "type": "git", - "url": "https://github.com/Cloud-CV/EvalAI.git" - }, - "devDependencies": { - "angular-mocks": "1.7.0", - "istanbul": "^0.4.5", - "jasmine-core": "^3.4.0", - "karma": "^4.1.0", - "karma-brief-reporter": "^0.2.1", - "karma-chrome-launcher": "^2.2.0", - "karma-cli": "^2.0.0", - "karma-coverage": "^1.1.2", - "karma-coveralls": "^2.1.0", - "karma-jasmine": "^2.0.1", - "puppeteer": "^1.16.0" - } -} diff --git a/requirements/prod.txt b/requirements/prod.txt index d371e54c26..450e4c17e6 100644 --- a/requirements/prod.txt +++ b/requirements/prod.txt @@ -1,6 +1,5 @@ -r common.txt -boto==2.49.0 django-storages==1.7.1 python-memcached==1.59 raven==6.10.0 diff --git a/scripts/deployment/deploy.sh b/scripts/deployment/deploy.sh old mode 100755 new mode 100644 index 93688c1dcc..81ecd6a822 --- a/scripts/deployment/deploy.sh +++ b/scripts/deployment/deploy.sh @@ -4,7 +4,7 @@ set -e opt=${1} aws_login() { - aws configure set default.region us-east-1 + aws configure set default.region cn-northwest-1 eval $(aws ecr get-login --no-include-email) } @@ -13,6 +13,21 @@ if [ -z ${AWS_ACCOUNT_ID} ]; then exit 0 fi +if [ -z ${AWS_ACCESS_KEY_ID} ]; then + echo "AWS_ACCESS_KEY_ID not set." + exit 0 +fi + +if [ -z ${AWS_SECRET_ACCESS_KEY} ]; then + echo "AWS_SECRET_ACCESS_KEY not set." + exit 0 +fi + +if [ -z ${AWS_DEFAULT_REGION} ]; then + echo "AWS_DEFAULT_REGION not set." + exit 0 +fi + if [ -z ${COMMIT_ID} ]; then export COMMIT_ID="latest" fi @@ -22,7 +37,7 @@ if [ -z ${TRAVIS_BRANCH} ]; then fi env=${TRAVIS_BRANCH} -JUMPBOX=${JUMPBOX_INSTANCE} +#JUMPBOX=${JUMPBOX_INSTANCE} if [[ ${env} == "production" ]]; then INSTANCE=${PRODUCTION_INSTANCE} @@ -38,45 +53,66 @@ fi case $opt in auto_deploy) chmod 400 scripts/deployment/evalai.pem + eval `ssh-agent -s` ssh-add scripts/deployment/evalai.pem - ssh -A ubuntu@${JUMPBOX} -o StrictHostKeyChecking=no INSTANCE=${INSTANCE} AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH' - ssh ubuntu@${INSTANCE} -o StrictHostKeyChecking=no AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH2' - source venv/bin/activate - cd ~/Projects/EvalAI - export AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} - export COMMIT_ID=${COMMIT_ID} - export AWS_DEFAULT_REGION=us-east-1 - eval $(aws ecr get-login --no-include-email) - aws s3 cp s3://cloudcv-secrets/evalai/${env}/docker_${env}.env ./docker/prod/docker_${env}.env - docker-compose -f docker-compose-${env}.yml rm -s -v -f - docker-compose -f docker-compose-${env}.yml pull django nodejs celery node_exporter memcached - docker-compose -f docker-compose-${env}.yml up -d --force-recreate --remove-orphans django nodejs celery node_exporter memcached - ENDSSH2 + ssh -A ubuntu@${INSTANCE} -o StrictHostKeyChecking=no AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH' + export COMMIT_ID=${COMMIT_ID} + export AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} + export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} + export AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} + export AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION} + cd ~/Projects/EvalAI + + if ! command -v curl &> /dev/null; then + sudo apt-get install curl + fi + + if ! command -v unzip &> /dev/null; then + sudo apt-get install unzip + fi + + if command -v aws &> /dev/null; then + echo "AWS CLI installed."; + else + echo "Installing AWS CLI"; + curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" + unzip awscliv2.zip + sudo ./aws/install + fi + + aws s3 cp s3://arena/${env}/docker_${env}.env ./docker/prod/docker_${env}.env + aws s3 cp s3://arena/${env}/docker-compose-${env}.yml ./docker-compose-${env}.yml + aws ecr get-login-password --region ${AWS_DEFAULT_REGION} | docker login --username AWS --password-stdin ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn + docker-compose --version + docker-compose -f docker-compose-${env}.yml rm -s -v -f + docker-compose -f docker-compose-${env}.yml pull django nodejs celery node_exporter memcached + docker-compose -f docker-compose-${env}.yml up -d --force-recreate --remove-orphans django nodejs celery node_exporter memcached ENDSSH ;; deploy-monitoring) chmod 400 scripts/deployment/evalai.pem + eval `ssh-agent -s` ssh-add scripts/deployment/evalai.pem - ssh -A ubuntu@${JUMPBOX} -o StrictHostKeyChecking=no MONITORING_INSTANCE=${MONITORING_INSTANCE} AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH' - ssh ubuntu@${MONITORING_INSTANCE} -o StrictHostKeyChecking=no AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH2' - source venv/bin/activate - cd ~/Projects/EvalAI - export AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} - export COMMIT_ID=${COMMIT_ID} - export AWS_DEFAULT_REGION=us-east-1 - eval $(aws ecr get-login --no-include-email) - aws s3 cp s3://cloudcv-secrets/evalai/${env}/docker_${env}.env ./docker/prod/docker_${env}.env - aws s3 cp s3://cloudcv-secrets/evalai/${env}/alert_manager.yml ./monitoring/prometheus/alert_manager.yml - docker-compose -f docker-compose-${env}.yml rm -s -v -f - docker-compose -f docker-compose-${env}.yml pull nginx-ingress prometheus grafana statsd-exporter alert-manager - docker-compose -f docker-compose-${env}.yml up -d --force-recreate --remove-orphans nginx-ingress prometheus grafana statsd-exporter alert-manager - ENDSSH2 + ssh -A ubuntu@${MONITORING_INSTANCE} -o StrictHostKeyChecking=no AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} COMMIT_ID=${COMMIT_ID} env=${env} 'bash -s' <<-'ENDSSH' + source venv/bin/activate + cd ~/Projects/EvalAI + export AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} + export COMMIT_ID=${COMMIT_ID} + export AWS_DEFAULT_REGION=cn-northwest-1 + eval $(aws ecr get-login --no-include-email) + aws s3 cp s3://arena/${env}/docker_${env}.env ./docker/prod/docker_${env}.env + aws s3 cp s3://arena/${env}/alert_manager.yml ./monitoring/prometheus/alert_manager.yml + aws ecr get-login-password --region ${AWS_DEFAULT_REGION} | docker login --username AWS --password-stdin ${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com.cn + docker-compose --version + docker-compose -f docker-compose-${env}.yml rm -s -v -f + docker-compose -f docker-compose-${env}.yml pull nginx-ingress prometheus grafana statsd-exporter alert-manager + docker-compose -f docker-compose-${env}.yml up -d --force-recreate --remove-orphans nginx-ingress prometheus grafana statsd-exporter alert-manager ENDSSH ;; pull) aws_login; echo "Pulling environment variables file..." - aws s3 cp s3://cloudcv-secrets/evalai/${env}/docker_${env}.env ./docker/prod/docker_${env}.env + aws s3 cp s3://arena/${env}/docker_${env}.env ./docker/prod/docker_${env}.env echo "Environment varibles file successfully downloaded." echo "Pulling docker images from ECR..." docker-compose -f docker-compose-${env}.yml pull @@ -111,9 +147,9 @@ case $opt in fi echo "Pulling queue name for $env server challenge..." if [ ${env} == "staging" ]; then - queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.eval.ai/api/challenges/get_broker_url/$challenge/) + queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.arena.synkrotron.ai/api/challenges/get_broker_url/$challenge/) elif [ ${env} == "production" ]; then - queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://eval.ai/api/challenges/get_broker_url/$challenge/) + queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://arena.synkrotron.ai/api/challenges/get_broker_url/$challenge/) fi echo "Completed pulling Queue name" # preprocess the python list to bash array @@ -132,9 +168,9 @@ case $opt in fi echo "Pulling queue name for $env server challenge..." if [ ${env} == "staging" ]; then - queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.eval.ai/api/challenges/get_broker_url/$challenge/) + queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.arena.synkrotron.ai/api/challenges/get_broker_url/$challenge/) elif [ ${env} == "production" ]; then - queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://eval.ai/api/challenges/get_broker_url/$challenge/) + queue_name=$(curl -k -L -X GET -H "Authorization: Token $token" https://arena.synkrotron.ai/api/challenges/get_broker_url/$challenge/) fi echo "Completed pulling Queue name" # preprocess the python list to bash array @@ -163,9 +199,9 @@ case $opt in token=${3} echo "Pulling queue names for $env server challenges..." if [ ${env} == "staging" ]; then - queue_names=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.eval.ai/api/challenges/get_broker_urls/) + queue_names=$(curl -k -L -X GET -H "Authorization: Token $token" https://staging.arena.synkrotron.ai/api/challenges/get_broker_urls/) elif [ ${env} == "production" ]; then - queue_names=$(curl -k -L -X GET -H "Authorization: Token $token" https://eval.ai/api/challenges/get_broker_urls/) + queue_names=$(curl -k -L -X GET -H "Authorization: Token $token" https://arena.synkrotron.ai/api/challenges/get_broker_urls/) fi echo "Completed pulling Queue list" # preprocess the python list to bash array diff --git a/scripts/deployment/evalai.pem.enc b/scripts/deployment/evalai.pem.enc index 4dadd42e90..6cee1bd7d2 100644 Binary files a/scripts/deployment/evalai.pem.enc and b/scripts/deployment/evalai.pem.enc differ diff --git a/scripts/deployment/push.sh b/scripts/deployment/push.sh old mode 100755 new mode 100644 index c2e91788c4..984bc56534 --- a/scripts/deployment/push.sh +++ b/scripts/deployment/push.sh @@ -4,16 +4,16 @@ set -e export COMMIT_ID=$(git rev-parse HEAD) build_and_push() { - aws configure set default.region us-east-1 + aws configure set default.region cn-northwest-1 eval $(aws ecr get-login --no-include-email) echo "Pulling ssl certificates and nginx configuration..." - aws s3 cp s3://cloudcv-secrets/eval.ai/ssl/ ./ssl/ --recursive - # Need ssl files related to *.cloudcv.org since we want to provide backward compatibility - aws s3 cp s3://cloudcv-secrets/evalai/${TRAVIS_BRANCH}/ssl/ ./ssl/ --recursive + # Need ssl files related to *.synkrotron.ai since we want to provide backward compatibility + aws s3 cp s3://arena/${TRAVIS_BRANCH}/ssl/ ./ssl/ --recursive echo "Pulled ssl certificates and nginx configuration successfully" docker-compose -f docker-compose-$1.yml build \ --build-arg COMMIT_ID=${COMMIT_ID} \ --build-arg TRAVIS_BRANCH=${TRAVIS_BRANCH} \ + --build-arg AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION} \ --build-arg AWS_ACCOUNT_ID=${AWS_ACCOUNT_ID} --compress docker-compose -f docker-compose-$1.yml push diff --git a/scripts/monitoring/auto_scale_eks_nodes.py b/scripts/monitoring/auto_scale_eks_nodes.py index 5a74faf245..05b584315f 100644 --- a/scripts/monitoring/auto_scale_eks_nodes.py +++ b/scripts/monitoring/auto_scale_eks_nodes.py @@ -26,7 +26,7 @@ # Env Variables ENV = os.environ.get("ENV", "production") AUTH_TOKEN = os.environ.get("AUTH_TOKEN") -EVALAI_ENDPOINT = os.environ.get("API_HOST_URL", "https://eval.ai") +EVALAI_ENDPOINT = os.environ.get("API_HOST_URL", "https://arena.synkrotron.ai") json_path = os.environ.get("JSON_PATH", "~/prod_eks_auth_tokens.json") # QUEUES diff --git a/settings/common.py b/settings/common.py index 094d779a44..3f31313c8d 100755 --- a/settings/common.py +++ b/settings/common.py @@ -91,6 +91,7 @@ "django.contrib.auth.middleware.AuthenticationMiddleware", "django.contrib.messages.middleware.MessageMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", + "django.contrib.sites.middleware.CurrentSiteMiddleware", # TODO remove it? ] ROOT_URLCONF = "evalai.urls" @@ -161,7 +162,7 @@ "DEFAULT_PAGINATION_CLASS": ( "rest_framework.pagination.LimitOffsetPagination" ), - "PAGE_SIZE": 150, + "PAGE_SIZE": 10, "TEAM_PAGE_SIZE": 10, "DEFAULT_PERMISSION_CLASSES": [ "rest_framework.permissions.IsAuthenticatedOrReadOnly" @@ -181,6 +182,7 @@ "resend_email": "3/hour", }, "DEFAULT_RENDERER_CLASSES": ("rest_framework.renderers.JSONRenderer",), + "DEFAULT_SCHEMA_CLASS": "rest_framework.schemas.coreapi.AutoSchema", } # ALLAUTH SETTINGS diff --git a/settings/custom_storages.py b/settings/custom_storages.py index 914716ada8..7c12756876 100755 --- a/settings/custom_storages.py +++ b/settings/custom_storages.py @@ -1,4 +1,4 @@ -from storages.backends.s3boto import S3BotoStorage +from storages.backends.s3boto3 import S3Boto3Storage from .prod import STATICFILES_LOCATION, MEDIAFILES_LOCATION @@ -6,9 +6,9 @@ # different directories -class StaticStorage(S3BotoStorage): +class StaticStorage(S3Boto3Storage): location = STATICFILES_LOCATION -class MediaStorage(S3BotoStorage): +class MediaStorage(S3Boto3Storage): location = MEDIAFILES_LOCATION diff --git a/settings/dev.py b/settings/dev.py index 0591ada401..a692bd63a5 100644 --- a/settings/dev.py +++ b/settings/dev.py @@ -27,9 +27,14 @@ } # E-Mail Settings -EMAIL_HOST = "localhost" -EMAIL_PORT = 1025 -EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" +DEFAULT_FROM_EMAIL = "" +EMAIL_HOST = "" +EMAIL_PORT = 587 +EMAIL_HOST_PASSWORD = "" +EMAIL_HOST_USER = "" +EMAIL_USE_TLS = True +EMAIL_USE_SSL = False +EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" ACCOUNT_DEFAULT_HTTP_PROTOCOL = "http" diff --git a/settings/prod.py b/settings/prod.py index 36a708ecd1..9902ece705 100755 --- a/settings/prod.py +++ b/settings/prod.py @@ -5,7 +5,7 @@ DEBUG = False -ALLOWED_HOSTS = ["eval.ai"] +ALLOWED_HOSTS = ["arena.synkrotron.ai"] # Database # https://docs.djangoproject.com/en/1.10.2/ref/settings/#databases @@ -13,9 +13,9 @@ CORS_ORIGIN_ALLOW_ALL = False CORS_ORIGIN_WHITELIST = ( - "https://evalai.s3.amazonaws.com", - "https://eval.ai", - "http://beta.eval.ai:9999", + "https://arena.s3.cn-northwest-1.amazonaws.com.cn", + "https://arena.synkrotron.ai", + "http://beta.synkrotron.ai:9999", ) DATABASES = { @@ -38,13 +38,14 @@ INSTALLED_APPS += ("storages", "raven.contrib.django.raven_compat") # noqa AWS_STORAGE_BUCKET_NAME = os.environ.get("AWS_STORAGE_BUCKET_NAME") +AWS_DEFAULT_REGION = os.environ.get("AWS_DEFAULT_REGION") AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID") AWS_SECRET_ACCESS_KEY = os.environ.get("AWS_SECRET_ACCESS_KEY") AWS_SES_REGION_NAME = os.environ.get("AWS_SES_REGION_NAME") AWS_SES_REGION_ENDPOINT = os.environ.get("AWS_SES_REGION_ENDPOINT") # Amazon S3 Configurations -AWS_S3_CUSTOM_DOMAIN = "%s.s3.amazonaws.com" % AWS_STORAGE_BUCKET_NAME +AWS_S3_CUSTOM_DOMAIN = "%s.s3.%s.amazonaws.com.cn" % (AWS_STORAGE_BUCKET_NAME, AWS_DEFAULT_REGION) # static files configuration on S3 STATICFILES_LOCATION = "static" @@ -53,8 +54,9 @@ # Media files configuration on S3 MEDIAFILES_LOCATION = "media" -MEDIA_URL = "http://%s.s3.amazonaws.com/%s/" % ( +MEDIA_URL = "http://%s.s3.%s.amazonaws.com.cn/%s/" % ( AWS_STORAGE_BUCKET_NAME, + AWS_DEFAULT_REGION, MEDIAFILES_LOCATION, ) DEFAULT_FILE_STORAGE = "settings.custom_storages.MediaStorage" diff --git a/settings/staging.py b/settings/staging.py index 946802cba8..362e6eebaf 100644 --- a/settings/staging.py +++ b/settings/staging.py @@ -1,13 +1,13 @@ from .prod import * # noqa: ignore=F405 -ALLOWED_HOSTS = ["staging.eval.ai", "monitoring-staging.eval.ai"] +ALLOWED_HOSTS = ["staging.arena.synkrotron.ai", "monitoring-staging.arena.synkrotron.ai"] CORS_ORIGIN_ALLOW_ALL = False CORS_ORIGIN_WHITELIST = ( "https://evalai.s3.amazonaws.com", "https://staging-evalai.s3.amazonaws.com", - "https://staging.eval.ai", - "https://monitoring-staging.eval.ai", - "https://monitoring.eval.ai", + "https://staging.arena.synkrotron.ai", + "https://monitoring-staging.arena.synkrotron.ai", + "https://monitoring.arena.synkrotron.ai", )