Created
March 31, 2026 22:37
-
-
Save heberfomin/f2ec97882348f0ae64fa2dd159756cc5 to your computer and use it in GitHub Desktop.
Teste e automação de um SVC pelo Angular
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
| "version": 1, | |
| "cli": { | |
| "packageManager": "npm" | |
| }, | |
| "newProjectRoot": "projects", | |
| "projects": { | |
| "veiculo": { | |
| "projectType": "application", | |
| "schematics": {}, | |
| "root": "", | |
| "sourceRoot": "src", | |
| "prefix": "app", | |
| "architect": { | |
| "build": { | |
| "builder": "@angular/build:application", | |
| "options": { | |
| "browser": "src/main.ts", | |
| "tsConfig": "tsconfig.app.json", | |
| "assets": [ | |
| { | |
| "glob": "**/*", | |
| "input": "public" | |
| } | |
| ], | |
| "styles": [ | |
| "src/styles.css" | |
| ], | |
| "server": "src/main.server.ts", | |
| "outputMode": "server", | |
| "security": { | |
| "allowedHosts": [] | |
| }, | |
| "ssr": { | |
| "entry": "src/server.ts" | |
| } | |
| }, | |
| "configurations": { | |
| "production": { | |
| "budgets": [ | |
| { | |
| "type": "initial", | |
| "maximumWarning": "500kB", | |
| "maximumError": "1MB" | |
| }, | |
| { | |
| "type": "anyComponentStyle", | |
| "maximumWarning": "4kB", | |
| "maximumError": "8kB" | |
| } | |
| ], | |
| "outputHashing": "all" | |
| }, | |
| "development": { | |
| "optimization": false, | |
| "extractLicenses": false, | |
| "sourceMap": true | |
| } | |
| }, | |
| "defaultConfiguration": "production" | |
| }, | |
| "serve": { | |
| "builder": "@angular/build:dev-server", | |
| "configurations": { | |
| "production": { | |
| "buildTarget": "veiculo:build:production" | |
| }, | |
| "development": { | |
| "buildTarget": "veiculo:build:development" | |
| } | |
| }, | |
| "defaultConfiguration": "development" | |
| }, | |
| "test": { | |
| "builder": "@angular/build:unit-test" | |
| } | |
| } | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>Teste do SVG do veículo</h1> | |
| <div style="display:flex;gap:2rem;flex-wrap:wrap;"> | |
| <form style="min-width:280px;max-width:320px;"> | |
| <!-- Tanques como já estava... --> | |
| <hr> | |
| <h3>Veículo / Geral</h3> | |
| <label>Placa: <input [(ngModel)]="placa" name="placa"></label><br> | |
| <label>Produto (geral): <input [(ngModel)]="produto" name="produto"></label><br> | |
| <label>Carga: <input [(ngModel)]="carga" name="carga"></label><br> | |
| <label>Saldo (geral): <input [(ngModel)]="saldo" name="saldo"></label><br> | |
| <label>Motorista: <input [(ngModel)]="motorista" name="motorista"></label><br> | |
| <label>Operador: <input [(ngModel)]="operador" name="operador"></label><br> | |
| <label>Aeroporto (nomeAbReg): <input [(ngModel)]="nomeAbReg" name="nomeAbReg"></label> | |
| </form> | |
| <div style="flex:1;min-width:400px;overflow:auto;border:1px solid #ccc;"> | |
| <app-veiculo | |
| [tanque1]="tanque1" | |
| [saldo1]="saldo1" | |
| [produto1]="produto1" | |
| [dataHora1]="dataHora1" | |
| [tanque2]="tanque2" | |
| [saldo2]="saldo2" | |
| [produto2]="produto2" | |
| [dataHora2]="dataHora2" | |
| [tanque3]="tanque3" | |
| [saldo3]="saldo3" | |
| [produto3]="produto3" | |
| [dataHora3]="dataHora3" | |
| [placa]="placa" | |
| [produto]="produto" | |
| [carga]="carga" | |
| [saldo]="saldo" | |
| [motorista]="motorista" | |
| [operador]="operador" | |
| [nomeAbReg]="nomeAbReg"> | |
| </app-veiculo> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component } from '@angular/core'; | |
| import { FormsModule } from '@angular/forms'; | |
| import { VeiculoComponent } from './veiculo/veiculo.component'; | |
| @Component({ | |
| selector: 'app-root', | |
| standalone: true, | |
| imports: [FormsModule, VeiculoComponent], | |
| templateUrl: './app.component.html', | |
| }) | |
| export class AppComponent { | |
| // Tanques | |
| tanque1 = '1'; | |
| saldo1 = '10000 L'; | |
| produto1 = 'DIESEL S10'; | |
| dataHora1 = '24/03/2026 21:00'; | |
| tanque2 = '2'; | |
| saldo2 = '8000 L'; | |
| produto2 = 'DIESEL S10'; | |
| dataHora2 = '24/03/2026 21:00'; | |
| tanque3 = '3'; | |
| saldo3 = '6000 L'; | |
| produto3 = 'DIESEL S500'; | |
| dataHora3 = '24/03/2026 21:00'; | |
| // Veículo / textos gerais | |
| placa = 'ABC-1D23'; | |
| produto = 'DIESEL S10'; | |
| carga = '4000 L'; | |
| saldo = '8000 L'; | |
| motorista = 'JOÃO DA SILVA'; | |
| operador = 'MARIA OPERADORA'; | |
| nomeAbReg = 'GRU-SP-BR'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "veiculo", | |
| "version": "0.0.0", | |
| "scripts": { | |
| "ng": "ng", | |
| "start": "ng serve", | |
| "build": "ng build", | |
| "watch": "ng build --watch --configuration development", | |
| "test": "ng test", | |
| "serve:ssr:veiculo": "node dist/veiculo/server/server.mjs" | |
| }, | |
| "private": true, | |
| "packageManager": "npm@11.11.0", | |
| "dependencies": { | |
| "@angular/common": "^21.2.0", | |
| "@angular/compiler": "^21.2.0", | |
| "@angular/core": "^21.2.0", | |
| "@angular/forms": "^21.2.0", | |
| "@angular/platform-browser": "^21.2.0", | |
| "@angular/platform-server": "^21.2.0", | |
| "@angular/router": "^21.2.0", | |
| "@angular/ssr": "^21.2.3", | |
| "express": "^5.1.0", | |
| "rxjs": "~7.8.0", | |
| "tslib": "^2.3.0" | |
| }, | |
| "devDependencies": { | |
| "@angular/build": "^21.2.3", | |
| "@angular/cli": "^21.2.3", | |
| "@angular/compiler-cli": "^21.2.0", | |
| "@types/express": "^5.0.1", | |
| "@types/node": "^20.17.19", | |
| "jsdom": "^28.0.0", | |
| "prettier": "^3.8.1", | |
| "typescript": "~5.9.2", | |
| "vitest": "^4.0.8" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--?xml version="1.0" encoding="utf-8"?--> | |
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1030 750" xmlns:bx="https://boxy-svg.com"> | |
| <defs> | |
| <style bx:fonts="Roboto Flex">@import url(https://fonts.googleapis.com/css2?family=Roboto+Flex%3Aital%2Cwght%400%2C100..1000&display=swap);</style> | |
| </defs> | |
| <g style=""> | |
| <title>cargaTanque1</title> | |
| <g style="" transform="matrix(0.747273, 0, 0, 0.793589, 18.730206, 23.225876)"> | |
| <title>Tanque1</title> | |
| <style> | |
| .nivel { fill: rgb(229, 219, 46); } | |
| #corS10:not([style*="hidden"]) ~ path.nivel { | |
| fill: rgb(231, 41, 32) !important; | |
| } | |
| </style> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" x="191.812" y="38.071" transform="matrix(1.471686, 0, 0, 2.047237, -79.545586, -78.66478)">TANQUE {{ tanque }} </text> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 10.4348px; white-space: pre;" transform="matrix(1.077215, 0, 0, 1.923196, -45.4412, -25.118635)" x="191.812" y="38.071">SALDO {{ saldo }} </text> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre;" x="191.812" y="38.071" transform="matrix(1.079774, 0, 0, 1.490147, -39.494793, -33.505501)"> {{ produto }} </text> | |
| <rect id="corS10" x="251.164" y="12.311" width="9.663" height="9.929" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(231, 41, 32);"> | |
| <title>codProduto1</title> | |
| </rect> | |
| <path d="M 27.226 76.238 C 27.657 76.399 28.366 76.372 28.366 76.372 L 174.067 76.372 L 173.973 57.055 L 235.019 57.251 L 235.453 76.372 L 383.599 76.372 C 383.599 76.372 402.576 112.147 403.3 154.88 C 404.201 208.042 383.475 246.008 383.475 246.008 L 358.227 246.008 L 362.156 257.574 L 327.369 257.574 L 332.312 246.008 L 78.937 246.008 L 83.422 257.574 L 48.538 257.574 L 53.874 246.008 C 53.874 246.008 27.583 246.317 27.179 246.008 C 24.204 243.732 3.309 206.219 3.309 159.973 C 3.309 113.727 22.296 74.397 27.226 76.238 Z" style="stroke: rgb(0, 0, 0); fill: rgb(255, 255, 255); stroke-width: 5px;"> | |
| <title>Tanque</title> | |
| </path> | |
| <path class="nivel" d="M 20.73 229.01 L 388.142 229.01 L 385.449 235.986 L 381.992 243.559 L 28.905 244.91 C 28.905 244.91 25.942 239.957 24.59 237.411 C 21.979 232.496 20.73 229.01 20.73 229.01 Z" style="paint-order: fill; stroke-dasharray: 6; visibility: hidden;"> | |
| <title>10%</title> | |
| </path> | |
| <path class="nivel" d="M 14.607 213.11 L 393.192 213.11 L 388.434 229.01 L 382.225 243.777 L 28.204 243.561 C 28.204 243.561 22.977 234.529 20.51 229.01 C 17.431 222.12 14.607 213.11 14.607 213.11 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>20%</title> | |
| </path> | |
| <path class="nivel" d="M 9.876 197.21 L 396.936 197.21 C 396.936 197.21 394.265 211.078 392.071 218.311 C 389.427 227.028 382.193 244.91 382.193 244.91 L 28.005 243.584 C 28.005 243.584 20.546 229.592 17.394 221.358 C 14.44 213.646 9.876 197.21 9.876 197.21 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>30%</title> | |
| </path> | |
| <path class="nivel" d="M 7.096 181.31 L 399.787 181.31 C 399.787 181.31 396.888 197.21 392.908 213.11 C 389.631 226.201 381.942 244.91 381.942 244.91 L 27.752 243.584 C 27.752 243.584 18.615 225.469 14.563 213.11 C 10.463 200.611 7.096 181.31 7.096 181.31 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>40%</title> | |
| </path> | |
| <path class="nivel" d="M 6.481 165.41 L 400.575 165.503 C 400.575 165.503 399.423 186.587 395.07 205.248 C 390.332 225.561 382.451 243.48 382.451 243.48 L 28.5 243.723 C 28.5 243.723 19.445 228.102 13.098 207.844 C 6.035 185.3 6.481 165.41 6.481 165.41 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>50%</title> | |
| </path> | |
| <path class="nivel" d="M 6.062 149.51 L 400.718 149.6 C 400.718 149.6 401.434 174.781 397.08 197.513 C 392.342 222.258 382.032 243.476 382.032 243.476 L 27.341 243.814 C 27.341 243.814 17.432 225.719 11.085 201.041 C 4.022 173.578 6.062 149.51 6.062 149.51 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>60%</title> | |
| </path> | |
| <path class="nivel" d="M 7.656 133.61 L 399.294 133.716 C 399.294 133.716 403.028 163.435 398.675 190.264 C 393.936 219.469 382.552 243.88 382.552 243.88 L 28.935 244.91 C 28.935 244.91 15.692 223.457 9.346 194.331 C 2.284 161.919 7.656 133.61 7.656 133.61 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>70%</title> | |
| </path> | |
| <path class="nivel" d="M 11.348 117.71 L 395.176 117.71 C 395.176 117.71 404.717 150.649 400.365 181.31 C 395.626 214.688 381.621 244.91 381.621 244.91 L 28.412 244.91 C 28.412 244.91 14.359 220.626 8.007 187.339 C 0.947 150.297 11.348 117.71 11.348 117.71 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1;"> | |
| <title>80%</title> | |
| </path> | |
| <path class="nivel" d="M 14.995 101.81 L 391.74 101.81 C 391.74 101.81 404.538 142.584 400.375 177.078 C 395.843 214.628 382.177 244.91 382.177 244.91 L 28.072 244.91 C 28.072 244.91 13.284 218.757 6.93 181.31 C -0.132 139.637 14.995 101.81 14.995 101.81 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>90%</title> | |
| </path> | |
| <path class="nivel" d="M 22.62 85.91 L 385.437 86.194 C 385.437 86.194 403.486 128.411 400.924 167.41 C 398.176 209.236 382.364 243.496 382.364 243.496 L 27.248 244.91 C 27.248 244.91 13.223 222.918 6.869 181.31 C -0.192 135.007 22.62 85.91 22.62 85.91 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>100%</title> | |
| </path> | |
| </g> | |
| <path d="M 328.871 249.878 L 328.759 293.826 L 228.092 293.369 C 228.072 293.506 223.706 292.752 223.658 295.7 C 223.621 297.995 223.63 300.01 223.605 300.013 L 223.68 310.674 L 223.618 390.976 L 268.107 391.204 L 200.71 415.999 L 133.864 390.964 L 178.44 390.865 L 178.33 257.338 C 178.33 257.338 178.058 252.136 179.83 250.27 C 181.383 248.635 185.131 248.717 185.131 248.717 L 328.871 249.878 Z" style="stroke: rgb(0, 0, 0); fill: rgb(231, 41, 32); transform-box: fill-box; transform-origin: 50% 50%;" transform="matrix(-0.003527, -0.999994, 0.999994, -0.003527, 0.000034, 0.000011)"> | |
| <title>cargaTk1</title> | |
| </path> | |
| <text style="fill: rgb(255, 255, 255); font-family: Arial, sans-serif; font-size: 28px; white-space: pre;" transform="matrix(0.692523, 0, 0, 0.796366, 254.578003, 453.624542)" x="-142.42" y="-104.44"><title>dataHora1</title>{{ dataHora1 }} </text> | |
| </g> | |
| <g style=""> | |
| <title>cargaTanque2</title> | |
| <g style="" transform="matrix(0.747273, 0, 0, 0.793589, 363.903534, 23.225876)"> | |
| <title>Tanque2</title> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" transform="matrix(1.471603, 0, 0, 2.082527, -83.198433, -79.704033)" y="38.071" x="191.812">TANQUE {{ tanque }} </text> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" transform="matrix(1.079031, 0, 0, 1.495216, -7.898436, -33.66375)" y="38.071" x="191.812"> {{ produto }} </text> | |
| <rect id="rect-4" x="247.15" y="12.316" width="9.663" height="9.929" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(228, 219, 47);"> | |
| <title>codProduto2</title> | |
| </rect> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 10.4348px; white-space: pre; text-anchor: middle;" transform="matrix(1.077278, 0, 0, 1.921541, -7.562182, -24.991837)" y="38.071" x="191.812">SALDO {{ saldo }} </text> | |
| <path d="M 27.226 76.238 C 27.657 76.399 28.366 76.372 28.366 76.372 L 174.067 76.372 L 173.973 57.055 L 235.019 57.251 L 235.453 76.372 L 383.599 76.372 C 383.599 76.372 402.576 112.147 403.3 154.88 C 404.201 208.042 383.475 246.008 383.475 246.008 L 358.227 246.008 L 362.156 257.574 L 327.369 257.574 L 332.312 246.008 L 78.937 246.008 L 83.422 257.574 L 48.538 257.574 L 53.874 246.008 C 53.874 246.008 27.583 246.317 27.179 246.008 C 24.204 243.732 3.309 206.219 3.309 159.973 C 3.309 113.727 22.296 74.397 27.226 76.238 Z" style="stroke: rgb(0, 0, 0); fill: rgb(255, 255, 255); stroke-width: 5px;"> | |
| <title>Tanque</title> | |
| </path> | |
| <path class="nivel" d="M 20.73 229.01 L 388.142 229.01 L 385.449 235.986 L 381.992 243.559 L 28.905 244.91 C 28.905 244.91 25.942 239.957 24.59 237.411 C 21.979 232.496 20.73 229.01 20.73 229.01 Z" style="paint-order: fill; stroke-dasharray: 6;"> | |
| <title>10%</title> | |
| </path> | |
| <path class="nivel" d="M 14.607 213.11 L 393.192 213.11 L 388.434 229.01 L 382.225 243.777 L 28.204 243.561 C 28.204 243.561 22.977 234.529 20.51 229.01 C 17.431 222.12 14.607 213.11 14.607 213.11 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>20%</title> | |
| </path> | |
| <path class="nivel" d="M 9.876 197.21 L 396.936 197.21 C 396.936 197.21 394.265 211.078 392.071 218.311 C 389.427 227.028 382.193 244.91 382.193 244.91 L 28.005 243.584 C 28.005 243.584 20.546 229.592 17.394 221.358 C 14.44 213.646 9.876 197.21 9.876 197.21 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>30%</title> | |
| </path> | |
| <path class="nivel" d="M 7.096 181.31 L 399.787 181.31 C 399.787 181.31 396.888 197.21 392.908 213.11 C 389.631 226.201 381.942 244.91 381.942 244.91 L 27.752 243.584 C 27.752 243.584 18.615 225.469 14.563 213.11 C 10.463 200.611 7.096 181.31 7.096 181.31 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>40%</title> | |
| </path> | |
| <path class="nivel" d="M 6.481 165.41 L 400.575 165.503 C 400.575 165.503 399.423 186.587 395.07 205.248 C 390.332 225.561 382.451 243.48 382.451 243.48 L 28.5 243.723 C 28.5 243.723 19.445 228.102 13.098 207.844 C 6.035 185.3 6.481 165.41 6.481 165.41 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>50%</title> | |
| </path> | |
| <path class="nivel" d="M 6.062 149.51 L 400.718 149.6 C 400.718 149.6 401.434 174.781 397.08 197.513 C 392.342 222.258 382.032 243.476 382.032 243.476 L 27.341 243.814 C 27.341 243.814 17.432 225.719 11.085 201.041 C 4.022 173.578 6.062 149.51 6.062 149.51 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>60%</title> | |
| </path> | |
| <path class="nivel" d="M 7.656 133.61 L 399.294 133.716 C 399.294 133.716 403.028 163.435 398.675 190.264 C 393.936 219.469 382.552 243.88 382.552 243.88 L 28.935 244.91 C 28.935 244.91 15.692 223.457 9.346 194.331 C 2.284 161.919 7.656 133.61 7.656 133.61 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>70%</title> | |
| </path> | |
| <path class="nivel" d="M 11.348 117.71 L 395.176 117.71 C 395.176 117.71 404.717 150.649 400.365 181.31 C 395.626 214.688 381.621 244.91 381.621 244.91 L 28.412 244.91 C 28.412 244.91 14.359 220.626 8.007 187.339 C 0.947 150.297 11.348 117.71 11.348 117.71 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>80%</title> | |
| </path> | |
| <path class="nivel" d="M 14.995 101.81 L 391.74 101.81 C 391.74 101.81 404.538 142.584 400.375 177.078 C 395.843 214.628 382.177 244.91 382.177 244.91 L 28.072 244.91 C 28.072 244.91 13.284 218.757 6.93 181.31 C -0.132 139.637 14.995 101.81 14.995 101.81 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>90%</title> | |
| </path> | |
| <path class="nivel" d="M 22.62 85.91 L 385.437 86.194 C 385.437 86.194 403.486 128.411 400.924 167.41 C 398.176 209.236 382.364 243.496 382.364 243.496 L 27.248 244.91 C 27.248 244.91 13.223 222.918 6.869 181.31 C -0.192 135.007 22.62 85.91 22.62 85.91 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>100%</title> | |
| </path> | |
| </g> | |
| <path d="M 493.022 236.835 L 538.365 237.037 L 538.229 279.472 L 582.718 279.665 L 515.321 300.704 L 448.475 279.462 L 493.051 279.378 L 493.022 236.835 Z" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(228, 219, 47);"> | |
| <title>cargaTk2</title> | |
| </path> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="547.268" y="259.127" transform="matrix(0.575927, 0, 0, 0.656142, 229.98436, 95.954704)"><title>dataHora2</title>{{ dataHora2 }} </text> | |
| </g> | |
| <g style=""> | |
| <title>cargaTanque3</title> | |
| <g style="" transform="matrix(0.747273, 0, 0, 0.793589, 709.076904, 23.225876)"> | |
| <title>Tanque3</title> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" x="191.812" y="38.071" transform="matrix(1.471845, 0, 0, 2.042008, -77.5914, -78.600754)">TANQUE {{ tanque }} </text> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 10.4348px; white-space: pre; text-anchor: middle;" transform="matrix(1.077147, 0, 0, 1.917351, -1.883557, -24.849852)" x="191.812" y="38.071">SALDO {{ saldo }} </text> | |
| <text style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" x="191.812" y="38.071" transform="matrix(1.07987, 0, 0, 1.474541, -2.405841, -32.94944)"> {{ produto }} </text> | |
| <rect id="rect-2" x="253.84" y="12.311" width="9.663" height="9.929" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(228, 219, 47);"> | |
| <title>codProduto3</title> | |
| </rect> | |
| <path d="M 27.226 76.238 C 27.657 76.399 28.366 76.372 28.366 76.372 L 174.067 76.372 L 173.973 57.055 L 235.019 57.251 L 235.453 76.372 L 383.599 76.372 C 383.599 76.372 402.576 112.147 403.3 154.88 C 404.201 208.042 383.475 246.008 383.475 246.008 L 358.227 246.008 L 362.156 257.574 L 327.369 257.574 L 332.312 246.008 L 78.937 246.008 L 83.422 257.574 L 48.538 257.574 L 53.874 246.008 C 53.874 246.008 27.583 246.317 27.179 246.008 C 24.204 243.732 3.309 206.219 3.309 159.973 C 3.309 113.727 22.296 74.397 27.226 76.238 Z" style="stroke: rgb(0, 0, 0); fill: rgb(255, 255, 255); stroke-width: 5px;"> | |
| <title>Tanque</title> | |
| </path> | |
| <path class="nivel" d="M 20.73 229.01 L 388.142 229.01 L 385.449 235.986 L 381.992 243.559 L 28.905 244.91 C 28.905 244.91 25.942 239.957 24.59 237.411 C 21.979 232.496 20.73 229.01 20.73 229.01 Z" style="paint-order: fill; stroke-dasharray: 6;"> | |
| <title>10%</title> | |
| </path> | |
| <path class="nivel" d="M 14.607 213.11 L 393.192 213.11 L 388.434 229.01 L 382.225 243.777 L 28.204 243.561 C 28.204 243.561 22.977 234.529 20.51 229.01 C 17.431 222.12 14.607 213.11 14.607 213.11 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>20%</title> | |
| </path> | |
| <path class="nivel" d="M 9.876 197.21 L 396.936 197.21 C 396.936 197.21 394.265 211.078 392.071 218.311 C 389.427 227.028 382.193 244.91 382.193 244.91 L 28.005 243.584 C 28.005 243.584 20.546 229.592 17.394 221.358 C 14.44 213.646 9.876 197.21 9.876 197.21 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>30%</title> | |
| </path> | |
| <path class="nivel" d="M 7.096 181.31 L 399.787 181.31 C 399.787 181.31 396.888 197.21 392.908 213.11 C 389.631 226.201 381.942 244.91 381.942 244.91 L 27.752 243.584 C 27.752 243.584 18.615 225.469 14.563 213.11 C 10.463 200.611 7.096 181.31 7.096 181.31 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>40%</title> | |
| </path> | |
| <path class="nivel" d="M 6.481 165.41 L 400.575 165.503 C 400.575 165.503 399.423 186.587 395.07 205.248 C 390.332 225.561 382.451 243.48 382.451 243.48 L 28.5 243.723 C 28.5 243.723 19.445 228.102 13.098 207.844 C 6.035 185.3 6.481 165.41 6.481 165.41 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1;"> | |
| <title>50%</title> | |
| </path> | |
| <path class="nivel" d="M 6.062 149.51 L 400.718 149.6 C 400.718 149.6 401.434 174.781 397.08 197.513 C 392.342 222.258 382.032 243.476 382.032 243.476 L 27.341 243.814 C 27.341 243.814 17.432 225.719 11.085 201.041 C 4.022 173.578 6.062 149.51 6.062 149.51 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>60%</title> | |
| </path> | |
| <path class="nivel" d="M 7.656 133.61 L 399.294 133.716 C 399.294 133.716 403.028 163.435 398.675 190.264 C 393.936 219.469 382.552 243.88 382.552 243.88 L 28.935 244.91 C 28.935 244.91 15.692 223.457 9.346 194.331 C 2.284 161.919 7.656 133.61 7.656 133.61 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>70%</title> | |
| </path> | |
| <path class="nivel" d="M 11.348 117.71 L 395.176 117.71 C 395.176 117.71 404.717 150.649 400.365 181.31 C 395.626 214.688 381.621 244.91 381.621 244.91 L 28.412 244.91 C 28.412 244.91 14.359 220.626 8.007 187.339 C 0.947 150.297 11.348 117.71 11.348 117.71 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>80%</title> | |
| </path> | |
| <path class="nivel" d="M 14.995 101.81 L 391.74 101.81 C 391.74 101.81 404.538 142.584 400.375 177.078 C 395.843 214.628 382.177 244.91 382.177 244.91 L 28.072 244.91 C 28.072 244.91 13.284 218.757 6.93 181.31 C -0.132 139.637 14.995 101.81 14.995 101.81 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>90%</title> | |
| </path> | |
| <path class="nivel" d="M 22.62 85.91 L 385.437 86.194 C 385.437 86.194 403.486 128.411 400.924 167.41 C 398.176 209.236 382.364 243.496 382.364 243.496 L 27.248 244.91 C 27.248 244.91 13.223 222.918 6.869 181.31 C -0.192 135.007 22.62 85.91 22.62 85.91 Z" style="paint-order: fill; stroke-dasharray: 6; stroke-width: 1; visibility: hidden;"> | |
| <title>100%</title> | |
| </path> | |
| </g> | |
| <path d="M 926.457 445.823 L 782.594 445.838 C 782.594 445.838 778.846 445.92 777.293 444.285 C 775.521 442.419 775.793 437.217 775.793 437.217 L 775.903 303.69 L 731.327 303.591 L 798.173 278.556 L 865.57 303.351 L 821.081 303.579 L 821.143 383.881 L 821.068 394.542 C 821.093 394.545 821.084 396.56 821.121 398.855 C 821.169 401.803 825.535 401.049 825.555 401.186 L 926.501 401.205 L 926.457 445.823 Z" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(228, 219, 47); transform-origin: 798.991px 362.197px;" transform="matrix(0.003527, -0.999994, 0.999994, 0.003527, 0, -0.000001)"> | |
| <title>cargaTk3</title> | |
| </path> | |
| <text style="fill: rgb(10, 91, 221); font-family: Arial, sans-serif; font-size: 28px; white-space: pre;" transform="matrix(0.692523, 0, 0, 0.796366, 826.198486, 453.624542)" x="-142.42" y="-104.44"><title>dataHora3</title>{{ dataHora3 }} </text> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, 219.56398, -29.814068)"> | |
| <title>veiculo</title> | |
| <g transform="matrix(1.230761, 0, 0, 1.265744, -28.617378, 77.365669)" style=""> | |
| <path d="M 135.798 220.941 C 135.798 220.941 135.888 219.963 136.757 219.11 C 137.509 218.371 139.193 218.424 139.193 218.424 L 212.443 218.907 L 212.925 287.153 L 169.977 287.207 C 169.977 287.207 168.026 287.015 166.112 288.443 C 163.922 290.077 164.085 292.443 164.085 292.443 L 164.054 303.452 L 132.727 303.425 L 132.801 293.598 L 137.726 293.46 L 137.885 284.738 L 132.294 284.635 C 132.294 284.635 132.863 266.619 132.863 264.989 L 136.593 264.989 L 140.221 226.05 L 135.653 226.194 C 135.653 226.194 135.71 220.945 135.798 220.941 Z M 140.622 264.296 L 164.054 264.296 L 181.172 248.739 L 182.155 225.803 L 156.729 225.847 L 156.348 236.219 L 153.543 236.232 L 153.632 225.808 L 144.67 225.862 L 140.622 264.296 Z" style="stroke: rgb(0, 0, 0); fill: rgb(10, 91, 221);"/> | |
| <path d="M 354.626 311.611 C 354.626 323.135 345.058 332.477 333.256 332.477 C 321.454 332.477 311.886 323.135 311.886 311.611 C 311.886 300.087 321.454 290.745 333.256 290.745 C 345.058 290.745 354.626 300.087 354.626 311.611 Z M 333.405 300.821 C 326.791 300.821 321.43 305.945 321.43 312.266 C 321.43 318.587 326.791 323.711 333.405 323.711 C 340.019 323.711 345.38 318.587 345.38 312.266 C 345.38 305.945 340.019 300.821 333.405 300.821 Z" style="stroke: rgb(0, 0, 0); fill: rgb(89, 86, 86);"/> | |
| <path d="M 213.122 311.369 C 213.122 322.893 203.554 332.235 191.752 332.235 C 179.95 332.235 170.382 322.893 170.382 311.369 C 170.382 299.845 179.95 290.503 191.752 290.503 C 203.554 290.503 213.122 299.845 213.122 311.369 Z M 191.901 300.579 C 185.287 300.579 179.926 305.703 179.926 312.024 C 179.926 318.345 185.287 323.469 191.901 323.469 C 198.515 323.469 203.876 318.345 203.876 312.024 C 203.876 305.703 198.515 300.579 191.901 300.579 Z" style="stroke: rgb(0, 0, 0); fill: rgb(89, 86, 86);"/> | |
| <path d="M 132.914 304.848 L 165.63 304.901 L 165.692 294.61 C 165.692 294.61 165.176 291.705 167.408 289.921 C 169.155 288.524 172.635 288.881 172.635 288.881 L 403.298 288.686 L 402.987 306.707 L 388.252 306.856 L 388.074 298.668 L 377.372 298.663 L 377.335 306.404 L 368.253 306.435 L 368.162 310.877 L 359.525 310.895 L 359.637 305.071 L 354.686 307.066 L 353.276 303.565 L 363.154 298.399 L 304.638 298.471 L 313.431 303.72 C 313.431 303.72 312.974 304.82 312.812 305.331 C 312.541 306.183 312.14 307.497 312.14 307.497 L 305.123 304.917 L 305.172 314.033 L 214.481 314.033 C 214.494 313.47 214.414 312.082 214.095 308.966 C 211.596 284.533 170.39 286.816 169.749 308.846 L 169.15 314.105 L 140.054 314.033 L 140.091 310.634 L 132.801 310.629 L 132.914 304.848 Z M 214.481 314.033 C 214.464 314.803 214.271 314.033 214.271 314.033 L 214.481 314.033 Z M 244.146 292.25 C 241.562 292.25 239.468 294.184 239.468 296.57 C 239.468 298.956 241.562 300.89 244.146 300.89 C 246.73 300.89 248.824 298.956 248.824 296.57 C 248.824 294.184 246.73 292.25 244.146 292.25 Z M 258.082 292.023 C 255.498 292.023 253.404 293.957 253.404 296.343 C 253.404 298.729 255.498 300.663 258.082 300.663 C 260.666 300.663 262.76 298.729 262.76 296.343 C 262.76 293.957 260.666 292.023 258.082 292.023 Z M 271.679 291.844 C 269.095 291.844 267.001 293.778 267.001 296.164 C 267.001 298.55 269.095 300.484 271.679 300.484 C 274.263 300.484 276.357 298.55 276.357 296.164 C 276.357 293.778 274.263 291.844 271.679 291.844 Z M 234.778 310.941 L 287.097 310.941 L 287.097 306.207 L 234.778 306.207 L 234.778 310.941 Z" style="stroke: rgb(0, 0, 0); fill: rgb(39, 37, 37);"/> | |
| </g> | |
| <path d="M 431.439 351.855 C 436.524 353.681 440.972 358.626 444.35 366.443 C 447.684 374.21 449.738 384.539 449.738 395.704 C 449.738 406.867 447.684 417.197 444.35 424.964 C 440.972 432.781 436.524 437.726 431.439 439.551 L 431.439 440.793 L 255.419 440.793 L 255.419 440.478 C 255.419 440.478 256.03 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 L 256.034 440.456 C 253.485 440.266 250.927 438.863 248.804 436.714 C 246.576 434.42 244.521 431.048 242.864 427.048 C 239.587 419.098 237.535 408.043 237.535 395.986 C 237.535 383.932 239.587 372.876 242.864 364.927 C 244.521 360.926 246.576 357.555 248.804 355.26 C 250.756 353.283 253.077 351.962 255.419 351.597 L 255.419 351.045 L 431.439 351.045 L 431.439 351.855 Z M 256.65 352.127 L 256.626 352.761 C 254.165 352.727 251.809 353.954 249.686 356.143 C 251.831 353.977 254.164 352.761 256.626 352.761 C 256.627 352.761 256.635 352.761 256.65 352.761 L 256.65 352.127 Z M 238.765 395.986 C 238.765 407.8 240.717 418.507 243.895 426.306 C 240.729 418.502 238.765 407.799 238.765 395.986 C 238.765 384.175 240.729 373.472 243.895 365.667 C 240.717 373.467 238.765 384.175 238.765 395.986 Z M 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.641 439.213 256.65 439.213 256.65 439.213 C 256.641 439.213 256.634 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 Z M 448.507 395.704 C 448.507 384.876 446.592 374.977 443.411 367.395 C 446.58 374.983 448.507 384.876 448.507 395.704 C 448.507 406.523 446.582 416.413 443.418 423.997 C 446.596 416.418 448.507 406.523 448.507 395.704 Z M 430.208 352.792 L 430.202 352.789 C 430.25 352.802 430.298 352.815 430.345 352.827 L 430.208 352.786 L 430.208 352.792 Z M 430.202 438.617 L 430.208 438.615 L 430.208 438.621 L 430.343 438.579 C 430.297 438.592 430.25 438.604 430.202 438.617 Z M 428.978 353.576 L 257.881 353.576 L 257.881 354.026 C 257.872 354.026 256.634 354.026 256.626 354.026 C 254.434 354.026 252.532 354.995 250.542 357.053 C 248.499 359.135 246.705 362.094 245.128 365.917 C 241.943 373.613 239.996 384.168 239.996 395.986 C 239.996 407.805 241.943 418.362 245.128 426.057 C 246.705 429.88 248.499 432.839 250.542 434.919 C 252.532 436.977 254.434 437.948 256.626 437.948 C 256.634 437.948 257.872 437.948 257.881 437.948 L 257.881 438.262 L 428.978 438.262 L 428.978 437.614 L 429.919 437.384 C 434.762 436.266 438.905 431.409 442.1 423.941 C 445.338 416.427 447.276 406.614 447.276 395.704 C 447.276 384.793 445.338 374.98 442.1 367.466 C 438.905 360 434.762 355.143 429.919 354.022 L 428.978 353.792 L 428.978 353.576 Z M 249.648 356.183 C 247.554 358.326 245.671 361.41 244.084 365.212 C 245.678 361.413 247.566 358.335 249.648 356.183 Z M 244.084 426.762 C 245.671 430.565 247.555 433.652 249.649 435.792 C 247.566 433.64 245.678 430.561 244.084 426.762 Z M 249.686 435.83 C 251.809 438.02 254.165 439.213 256.626 439.213 C 254.164 439.213 251.831 437.997 249.686 435.83 Z M 432.264 437.871 C 436.526 435.897 440.239 431.35 443.136 424.657 C 440.294 431.15 436.532 435.864 432.264 437.871 Z M 443.137 366.751 C 440.226 360.026 436.491 355.466 432.205 353.507 C 436.496 355.498 440.281 360.229 443.137 366.751 Z M 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 Z" style="fill: none; stroke-width: 1.036;"/> | |
| <path d="M 431.439 351.855 C 436.524 353.681 440.972 358.626 444.35 366.443 C 447.684 374.21 449.738 384.539 449.738 395.704 C 449.738 406.867 447.684 417.197 444.35 424.964 C 440.972 432.781 436.524 437.726 431.439 439.551 L 431.439 440.793 L 255.419 440.793 L 255.419 440.478 C 255.419 440.478 256.03 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 C 256.034 440.478 256.034 440.478 256.034 440.478 L 256.034 440.456 C 253.485 440.266 250.927 438.863 248.804 436.714 C 246.576 434.42 244.521 431.048 242.864 427.048 C 239.587 419.098 237.535 408.043 237.535 395.986 C 237.535 383.932 239.587 372.876 242.864 364.927 C 244.521 360.926 246.576 357.555 248.804 355.26 C 250.756 353.283 253.077 351.962 255.419 351.597 L 255.419 351.045 L 431.439 351.045 L 431.439 351.855 Z M 256.65 352.127 L 256.626 352.761 C 254.165 352.727 251.809 353.954 249.686 356.143 C 251.831 353.977 254.164 352.761 256.626 352.761 C 256.627 352.761 256.635 352.761 256.65 352.761 L 256.65 352.127 Z M 238.765 395.986 C 238.765 407.8 240.717 418.507 243.895 426.306 C 240.729 418.502 238.765 407.799 238.765 395.986 C 238.765 384.175 240.729 373.472 243.895 365.667 C 240.717 373.467 238.765 384.175 238.765 395.986 Z M 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.641 439.213 256.65 439.213 256.65 439.213 C 256.641 439.213 256.634 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 Z M 448.507 395.704 C 448.507 384.876 446.592 374.977 443.411 367.395 C 446.58 374.983 448.507 384.876 448.507 395.704 C 448.507 406.523 446.582 416.413 443.418 423.997 C 446.596 416.418 448.507 406.523 448.507 395.704 Z M 430.208 352.792 L 430.202 352.789 C 430.25 352.802 430.298 352.815 430.345 352.827 L 430.208 352.786 L 430.208 352.792 Z M 430.202 438.617 L 430.208 438.615 L 430.208 438.621 L 430.343 438.579 C 430.297 438.592 430.25 438.604 430.202 438.617 Z M 428.978 353.576 L 257.881 353.576 L 257.881 354.026 C 257.872 354.026 256.634 354.026 256.626 354.026 C 254.434 354.026 252.532 354.995 250.542 357.053 C 248.499 359.135 246.705 362.094 245.128 365.917 C 241.943 373.613 239.996 384.168 239.996 395.986 C 239.996 407.805 241.943 418.362 245.128 426.057 C 246.705 429.88 248.499 432.839 250.542 434.919 C 252.532 436.977 254.434 437.948 256.626 437.948 C 256.634 437.948 257.872 437.948 257.881 437.948 L 257.881 438.262 L 428.978 438.262 L 428.978 437.614 L 429.919 437.384 C 434.762 436.266 438.905 431.409 442.1 423.941 C 445.338 416.427 447.276 406.614 447.276 395.704 C 447.276 384.793 445.338 374.98 442.1 367.466 C 438.905 360 434.762 355.143 429.919 354.022 L 428.978 353.792 L 428.978 353.576 Z M 249.648 356.183 C 247.554 358.326 245.671 361.41 244.084 365.212 C 245.678 361.413 247.566 358.335 249.648 356.183 Z M 244.084 426.762 C 245.671 430.565 247.555 433.652 249.649 435.792 C 247.566 433.64 245.678 430.561 244.084 426.762 Z M 249.686 435.83 C 251.809 438.02 254.165 439.213 256.626 439.213 C 254.164 439.213 251.831 437.997 249.686 435.83 Z M 432.264 437.871 C 436.526 435.897 440.239 431.35 443.136 424.657 C 440.294 431.15 436.532 435.864 432.264 437.871 Z M 443.137 366.751 C 440.226 360.026 436.491 355.466 432.205 353.507 C 436.496 355.498 440.281 360.229 443.137 366.751 Z M 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 C 256.626 439.213 256.626 439.213 256.626 439.213 Z" style="fill: none; stroke-width: 1.036;"/> | |
| <g transform="matrix(1.230761, 0, 0, 1.265744, -21.796541, -1.268114)" style=""> | |
| <path d="M 367.449 278.269 C 367.725 278.124 374.567 282.366 377.722 288.697 C 379.458 292.181 383.405 303.036 383.044 313.66 C 382.683 324.284 381.455 330.608 378.746 336.744 C 376.001 342.92 368.256 349.25 368.256 349.25 L 362.751 349.271 L 362.793 350.857 L 230.673 350.495 L 230.62 349.123 L 225.239 349.031 L 225.239 349.002 C 225.239 349.002 221.589 347.725 219.865 346.027 C 218.054 344.215 216.384 341.551 215.038 338.391 C 212.375 332.11 210.708 323.376 210.708 313.851 C 210.708 304.327 212.375 295.592 215.038 289.312 C 216.384 286.151 218.054 283.488 219.865 281.675 C 221.45 280.113 223.336 279.069 225.239 278.781 L 229.906 278.607 L 230.098 273.307 L 253.691 273.446 L 253.562 270.858 L 271.211 270.849 L 271.151 273.439 L 295.946 273.328 L 295.998 270.789 L 312.517 270.788 L 312.423 273.258 L 359.437 273.125 C 359.437 273.125 358.935 258.011 359.871 255.524 C 360.763 253.154 362.392 253.098 362.392 253.098 C 364.961 252.041 366.233 253.397 367.668 254.095 C 371.45 255.934 387.595 267.042 387.595 267.042 L 387.312 333.758 L 384.877 333.832 L 384.554 275.382 L 384.522 268.294 L 367.358 257.415 C 367.176 257.6 365.126 255.121 363.602 256.165 C 362.048 257.229 362.537 257.589 362.433 259.537 C 362.179 264.301 362.644 273.044 362.469 273.02 L 367.324 273.01 L 367.379 275.311 L 384.695 275.414 L 384.773 278.43 L 367.449 278.269 Z M 211.708 313.851 C 211.708 323.184 213.293 331.643 215.876 337.805 C 213.303 331.639 211.708 323.183 211.708 313.851 C 211.708 304.519 211.708 304.519 211.708 313.851 Z M 366.256 280.344 L 227.239 280.344 C 225.703 279.979 221.189 281.969 220.986 283.15 C 220.624 283.108 218.14 287.083 216.878 290.094 C 214.272 296.314 212.646 304.501 212.708 313.851 C 212.77 323.201 214.289 331.529 216.878 337.608 C 218.158 340.628 219.616 342.966 221.276 344.61 C 222.893 346.236 226.079 347.361 226.086 347.361 L 367.504 347.382 C 367.504 347.382 374.322 341.836 376.918 335.936 C 379.549 330 381.599 321.846 381.322 313.348 C 381.045 304.85 379.917 296.392 376.747 290.794 C 373.649 285.324 370.396 281.999 367.021 280.697 L 366.256 280.515 L 366.256 280.344 Z M 216.029 338.165 C 217.319 341.169 218.85 343.608 220.551 345.299 C 218.859 343.599 217.325 341.166 216.029 338.165 Z M 226.219 348.002 Z" style="fill: rgb(20, 20, 20);"/> | |
| <path d="M 394.613 341.61 C 394.613 346.585 390.623 350.618 385.702 350.618 C 380.781 350.618 376.791 346.585 376.791 341.61 C 376.791 336.635 380.781 332.602 385.702 332.602 C 390.623 332.602 394.613 336.635 394.613 341.61 Z M 386.093 336.474 C 383.299 336.474 381.034 338.726 381.034 341.505 C 381.034 344.284 383.299 346.536 386.093 346.536 C 388.887 346.536 391.152 344.284 391.152 341.505 C 391.152 338.726 388.887 336.474 386.093 336.474 Z" style="stroke: rgb(0, 0, 0);"/> | |
| </g> | |
| <g transform="matrix(3.283465, 0, 0, 2.309093, 213.382767, 154.449585)" style=""> | |
| <title>grplaca</title> | |
| <rect x="10.228" y="140.878" width="26.936" height="9.793" style="stroke: rgb(0, 0, 0); fill: rgb(221, 94, 94);" rx="1.564" ry="1.564"> | |
| <title>Placa</title> | |
| </rect> | |
| <text style="fill: rgb(252, 251, 251); font-family: Arial, sans-serif; font-size: 28px; white-space: pre;" x="21.288" y="93.859" transform="matrix(0.212044, 0, 0, 0.244739, 6.382874, 124.995453)"><title>codPlaca</title>{{ placa }} </text> | |
| <text style="fill: rgb(255, 255, 255); font-family: Arial, sans-serif; font-size: 28px; white-space: pre;" x="33.273" y="90.744" transform="matrix(0.046158, 0, 0, 0.063776, 20.234186, 137.083099)"><title>Brasil</title>BRASIL</text> | |
| </g> | |
| <g transform="matrix(1.833707, 0, 0, 1.755687, 106.643143, 264.225586)" style=""> | |
| <title>LOGO</title> | |
| <path d="M 48.789 91.846 C 48.786 91.885 47.554 91.797 47.557 91.758 C 47.531 91.855 48.745 92.237 48.759 92.189 C 48.755 92.21 48.616 92.906 48.535 93.181 C 48.51 93.267 47.299 92.787 47.313 92.749 C 47.26 92.824 48.371 93.502 48.39 93.462 C 48.404 93.472 48.127 94.073 47.887 94.358 C 47.834 94.421 46.903 93.645 46.853 93.583 C 46.87 93.616 46.998 93.86 47.169 94.09 C 47.383 94.377 47.664 94.634 47.638 94.665 C 47.453 94.884 47.215 95.146 46.998 95.326 C 46.691 95.025 46.173 94.381 46.166 94.313 C 46.159 94.41 46.681 95.548 46.758 95.534 C 46.705 95.564 46.172 95.861 45.954 95.98 C 45.827 96.049 45.375 94.791 45.406 94.772 C 45.346 94.782 45.538 96.169 45.607 96.161 C 45.607 96.161 45.156 96.3 44.668 96.405 C 44.578 96.424 44.481 95.059 44.473 95.061 C 44.396 95.075 44.351 96.47 44.351 96.47 L 43.402 96.467 C 43.339 96.469 43.488 95.086 43.512 95.085 C 43.406 95.089 43.057 96.408 43.02 96.402 C 42.578 96.334 42.198 96.178 42.207 96.156 C 42.118 96.197 42.519 94.887 42.642 94.866 C 42.553 94.855 41.804 96.001 41.804 96.001 C 41.809 96.092 41.04 95.616 41.035 95.525 C 40.876 95.668 41.628 94.535 41.787 94.392 C 41.642 94.404 40.758 95.241 40.733 95.312 C 40.68 95.274 40.289 94.945 40.067 94.619 C 40.027 94.56 41.079 93.736 41.115 93.748 C 41.1 93.692 39.892 94.305 39.892 94.305 C 39.873 94.317 39.594 93.784 39.415 93.494 C 39.356 93.398 40.541 92.89 40.604 92.94 C 40.59 92.834 39.235 93.086 39.26 93.126 C 39.247 93.128 39.072 92.511 39.012 92.232 C 38.991 92.131 40.304 91.941 40.315 91.948 C 40.338 91.869 38.955 91.788 38.948 91.867 C 38.949 91.843 38.983 91.027 38.98 90.883 C 38.978 90.773 40.289 90.96 40.298 90.993 C 40.274 90.901 39.038 90.464 39.013 90.499 C 39.019 90.463 39.116 89.902 39.248 89.554 C 39.294 89.432 40.493 90.007 40.481 90.052 C 40.504 89.972 39.441 89.199 39.399 89.25 L 39.884 88.408 C 39.894 88.308 40.964 89.088 40.96 89.175 C 40.996 89.138 40.156 88.056 40.095 88.119 C 40.095 88.119 40.533 87.622 40.752 87.438 C 40.81 87.39 41.641 88.461 41.599 88.494 C 41.643 88.471 41.092 87.19 41.076 87.199 C 41.076 87.199 41.625 86.846 41.857 86.728 C 41.918 86.697 42.392 87.948 42.392 87.948 C 42.442 87.869 42.227 86.557 42.227 86.557 C 42.227 86.557 42.793 86.353 43.084 86.294 C 43.203 86.27 43.349 87.631 43.307 87.646 C 43.378 87.625 43.492 86.348 43.453 86.227 C 43.574 86.235 44.231 86.197 44.369 86.216 C 44.484 86.231 44.322 87.607 44.26 87.595 C 44.266 87.716 44.725 86.49 44.724 86.29 C 44.724 86.29 45.539 86.487 45.632 86.516 C 45.732 86.547 45.182 87.811 45.182 87.811 C 45.232 87.817 45.984 86.666 45.985 86.668 C 46.101 86.729 46.513 87.01 46.789 87.163 C 46.852 87.198 46.115 88.206 46.036 88.283 C 46.118 88.224 46.954 87.622 47.048 87.398 C 47.061 87.366 47.678 88.063 47.678 88.063 C 47.706 88.139 46.805 88.931 46.717 88.954 C 46.82 88.961 47.95 88.431 47.939 88.4 C 47.945 88.411 48.106 88.732 48.333 89.222 C 48.377 89.316 47.258 89.805 47.238 89.791 C 47.269 89.82 48.502 89.584 48.502 89.584 C 48.502 89.584 48.596 90.054 48.711 90.501 C 48.735 90.596 47.518 90.763 47.51 90.75 C 47.508 90.825 48.79 90.89 48.79 90.885 L 48.789 91.846 Z M 48.759 92.189 C 48.759 92.188 48.759 92.188 48.759 92.188 C 48.759 92.188 48.759 92.188 48.759 92.189 Z M 46.758 95.534 C 46.761 95.533 46.762 95.532 46.762 95.532 C 46.761 95.533 46.759 95.534 46.758 95.534 Z M 40.74 95.316 Z M 38.948 91.867 C 38.948 91.868 38.948 91.868 38.948 91.868 C 38.948 91.868 38.948 91.868 38.948 91.867 Z M 39.013 90.499 C 39.013 90.5 39.013 90.501 39.013 90.501 C 39.013 90.5 39.013 90.5 39.013 90.499 Z M 43.453 86.227 C 43.432 86.226 43.427 86.223 43.445 86.218 C 43.448 86.217 43.451 86.22 43.453 86.227 Z M 47.939 88.4 Z M 40.74 95.316 C 40.734 95.318 40.732 95.317 40.733 95.312 C 40.737 95.315 40.739 95.316 40.74 95.316 Z M 43.813 89.123 C 43.84 89.171 45.106 87.34 44.982 87.033 C 45.091 87.426 43.079 89.386 43.213 89.268 C 43.347 89.15 44.148 86.877 43.844 86.878 C 43.991 87.022 42.735 89.599 42.762 89.484 C 42.806 89.298 42.997 86.919 42.778 87.062 C 42.974 87.041 42.424 89.935 42.29 89.865 C 42.369 89.761 41.87 87.363 41.761 87.513 C 41.921 87.499 42.13 90.333 41.956 90.288 C 42.018 90.126 40.963 88.042 40.901 88.204 C 40.972 88.201 41.96 90.789 41.768 90.798 C 41.728 90.497 40.208 88.949 40.232 89.128 C 40.335 89.126 41.856 91.409 41.682 91.413 C 41.714 91.342 39.883 90.006 39.798 90.228 C 39.678 90.054 41.461 91.501 41.785 91.97 C 41.04 91.53 39.633 91.291 39.639 91.348 C 39.667 91.327 42.171 92.384 42.005 92.527 C 40.818 92.17 39.623 92.41 39.814 92.514 C 39.814 92.514 42.2 92.717 42.386 93.008 C 41.371 93.065 40.116 93.492 40.243 93.574 C 40.094 93.485 42.573 93.23 42.824 93.38 C 42.353 93.355 40.74 94.474 40.886 94.473 C 40.798 94.402 43.217 93.415 43.338 93.58 C 42.905 93.696 41.663 95.13 41.761 95.192 C 41.699 95.135 43.683 93.559 43.914 93.637 C 43.258 94.256 42.582 95.812 42.787 95.626 C 42.749 95.627 44.174 93.549 44.491 93.557 C 44.098 94.026 43.831 95.803 43.935 95.763 C 43.935 95.763 44.73 93.36 44.979 93.349 C 44.814 93.618 44.757 95.91 44.922 95.641 C 44.845 95.641 45.319 92.916 45.448 92.916 C 45.358 93.185 45.895 95.41 45.948 95.25 C 45.91 95.25 45.625 92.413 45.728 92.413 C 45.785 92.842 46.892 94.802 46.858 94.547 C 46.797 94.6 45.795 91.961 45.96 91.819 C 45.847 91.974 47.466 93.752 47.552 93.612 C 47.483 93.634 45.797 91.416 46.024 91.286 C 46.517 91.913 47.989 92.6 47.995 92.568 C 47.921 92.599 45.817 90.887 45.914 90.763 C 45.914 90.763 48.017 91.565 48.177 91.355 C 48.123 91.453 45.584 90.349 45.675 90.184 C 45.993 90.44 48.083 90.337 48.003 90.139 C 48.258 90.277 46.01 90.116 45.323 89.744 C 45.392 89.799 47.604 89.416 47.553 89.046 C 47.607 89.311 44.881 89.594 44.857 89.364 C 45.413 89.4 47.156 88.196 46.909 88.192 C 46.916 88.397 44.304 89.34 44.338 89.219 C 45.09 88.883 46.1 87.464 46.016 87.465 C 46.233 87.515 43.964 89.256 43.813 89.123 Z" style="stroke-width: 0.11px; fill: rgb(250, 184, 27);"/> | |
| <text style="fill: rgb(255, 255, 255); font-family: 'Roboto Flex'; font-size: 2px; white-space: pre;" transform="matrix(2.3607, 0, 0, 2.047016, -86.5485, -80.349297)"><tspan x="57.91" y="83.659">SOL</tspan><tspan x="57.91" dy="1em"></tspan><tspan>DIESEL</tspan></text> | |
| </g> | |
| <path d="M 200.94 468.106 L 213.864 468.106 L 213.864 479.66 L 200.94 479.66 L 200.94 468.106 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.5;"/> | |
| <path id="path-1" d="M 246.761 429.738 L 341.94 429.692 L 341.994 438.502 L 254.364 438.443 C 254.364 438.443 250.409 436.38 249.174 434.083 C 248.113 432.111 246.761 429.738 246.761 429.738 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_10</title> | |
| </path> | |
| <path id="path-3" d="M 341.771 429.717 L 438.934 429.536 C 438.934 429.536 436.107 433.261 434.661 434.77 C 433.408 436.077 430.712 438.501 430.712 438.501 L 342.031 438.448 L 341.771 429.717 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_10</title> | |
| </path> | |
| <path id="path-4" d="M 243.194 421.248 L 341.993 421.337 L 342.097 438.416 L 254.354 438.373 C 254.354 438.373 250.23 435.767 247.285 430.96 C 245.219 427.588 243.194 421.248 243.194 421.248 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_20</title> | |
| </path> | |
| <path id="path-5" d="M 341.917 421.167 L 443.084 421.341 C 443.084 421.341 441.015 427.139 438.411 430.414 C 436.657 432.62 430.93 439.051 430.93 439.051 L 342.007 438.524 L 341.917 421.167 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_20</title> | |
| </path> | |
| <path id="path-2" d="M 241.546 413.121 L 341.933 413.257 L 342.039 438.571 L 256.109 438.359 C 256.109 438.359 250.345 437.348 245.702 427.883 C 242.829 422.026 241.546 413.121 241.546 413.121 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_30</title> | |
| </path> | |
| <path id="path-6" d="M 341.859 413.293 L 445.683 413.04 C 445.683 413.04 446.215 416.108 441.128 425.879 C 438.121 431.654 431.058 438.446 431.058 438.446 L 341.693 438.577 L 341.859 413.293 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_30</title> | |
| </path> | |
| <path id="path-7" d="M 240.177 404.55 L 341.781 404.769 L 341.681 438.832 L 256.075 438.527 C 256.075 438.527 249.786 436.82 245.143 427.355 C 242.27 421.498 240.177 404.55 240.177 404.55 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_40</title> | |
| </path> | |
| <path id="path-8" d="M 341.637 404.689 L 447.166 404.792 C 447.166 404.792 447.197 408.586 442.859 421.802 C 439.927 430.732 430.97 438.452 430.97 438.452 L 341.861 438.551 L 341.637 404.689 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_40</title> | |
| </path> | |
| <path id="path-9" d="M 239.867 396.475 L 341.837 396.555 L 341.781 438.52 L 256.131 438.628 C 256.131 438.628 245.937 435.413 242.663 419.609 C 240.002 406.768 239.867 396.475 239.867 396.475 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_50</title> | |
| </path> | |
| <path id="path-10" d="M 341.908 397.033 L 447.578 396.398 C 447.578 396.398 448.887 401.182 444.549 417.762 C 441.617 428.965 431.382 438.627 431.382 438.627 L 341.813 438.559 L 341.908 397.033 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47);"> | |
| <title>Fuel_2B_50</title> | |
| </path> | |
| <path id="path-11" d="M 240.028 388.1 L 342.042 388.266 L 342.015 438.392 L 256.218 438.519 C 256.218 438.519 246.914 436.924 242.324 418.94 C 239.36 407.326 240.028 388.1 240.028 388.1 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_60</title> | |
| </path> | |
| <path id="path-12" d="M 341.968 388.338 L 447.207 387.835 C 447.207 387.835 449.619 395.134 445.461 414.999 C 442.646 428.446 431.167 438.429 431.167 438.429 L 341.607 438.64 L 341.968 388.338 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_60</title> | |
| </path> | |
| <path id="path-13" d="M 241.152 379.705 L 341.863 379.927 L 341.889 438.487 L 255.552 438.64 C 255.552 438.64 245.865 436.57 241.631 413.916 C 238.38 396.522 241.152 379.705 241.152 379.705 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_70</title> | |
| </path> | |
| <path id="path-14" d="M 341.827 379.894 L 446.149 379.695 C 446.149 379.695 449.805 390.266 445.647 413.449 C 442.832 429.142 430.389 438.406 430.389 438.406 L 341.871 438.486 L 341.827 379.894 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_70</title> | |
| </path> | |
| <path id="path-15" d="M 243.033 371.303 L 341.979 371.458 L 342.025 438.579 L 256.285 438.588 C 256.285 438.588 245.581 437.93 241.093 410.641 C 237.66 389.77 243.033 371.303 243.033 371.303 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_80</title> | |
| </path> | |
| <path id="path-16" d="M 341.947 371.624 L 444.038 371.546 C 444.038 371.546 450.155 384.071 446.294 410.737 C 443.679 428.799 430.525 438.486 430.525 438.486 L 342.007 438.578 L 341.947 371.624 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_80</title> | |
| </path> | |
| <path id="path-17" d="M 245.99 363.389 L 341.954 363.56 L 342 438.558 L 256.26 438.568 C 256.26 438.568 244.718 438.455 240.345 406.616 C 237.014 382.362 245.99 363.389 245.99 363.389 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_90</title> | |
| </path> | |
| <path id="path-18" d="M 341.922 363.745 L 439.922 363.384 C 439.922 363.384 450.393 377.271 446.797 407.1 C 444.016 430.169 430.5 438.454 430.5 438.454 L 341.982 438.557 L 341.922 363.745 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_90</title> | |
| </path> | |
| <path id="path-19" d="M 252.053 354.926 L 341.791 355.597 L 341.837 438.799 L 256.097 438.81 C 256.097 438.81 242.487 437.507 240.013 400.48 C 237.821 367.671 252.053 354.926 252.053 354.926 Z" style="stroke-width: 1.036; fill: rgb(231, 41, 32); visibility: hidden;"> | |
| <title>Fuel_2A_100</title> | |
| </path> | |
| <path id="path-20" d="M 341.759 355.803 L 431.891 354.982 C 431.891 354.982 449.428 364.946 447.426 400.788 C 445.718 431.366 430.337 438.684 430.337 438.684 L 341.819 438.798 L 341.759 355.803 Z" style="stroke-width: 1.036; fill: rgb(228, 219, 47); visibility: hidden;"> | |
| <title>Fuel_2B_100</title> | |
| </path> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, -10, 1)"> | |
| <title>qtdProduto1</title> | |
| <text style="font-family: Arial, sans-serif; font-size: 28px; white-space: pre; transform-box: fill-box; transform-origin: 44.8159% 107.693%;" transform="matrix(0.355841, 0, 0, 0.926297, 99.3134, -56.31913)"><title>produtoCarga</title><tspan x="287.264" y="412.368">{{ produto }}: {{ carga }} </tspan><tspan x="287.2640075683594" dy="1em"></tspan></text> | |
| <text style="font-family: Arial, sans-serif; font-size: 28px; white-space: pre; transform-box: fill-box; transform-origin: 28.2889% -4.35319%;" transform="matrix(0.35719, 0, 0, 0.924744, 130.793701, -20.151701)"><title>produtoSaldo</title><tspan x="287.264" y="412.368">{{ produto }}: {{ saldo }} </tspan><tspan x="287.2640075683594" dy="1em"></tspan></text> | |
| </g> | |
| <g> | |
| <title>qtdProduto2</title> | |
| <text style="font-family: Arial, sans-serif; font-size: 28px; white-space: pre; transform-origin: 398.211px 420.845px;" transform="matrix(0.353433, 0, 0, 0.926117, 207.869598, -55.429272)"><title>produtoCarga</title><tspan x="287.264" y="412.368">{{ produto }}: {{ carga }} </tspan><tspan x="287.2640075683594" dy="1em"></tspan></text> | |
| <text style="font-family: Arial, sans-serif; font-size: 28px; white-space: pre; transform-origin: 358.617px 385.956px;" transform="matrix(0.357184, 0, 0, 1.056558, 234.232758, -22.612034)"><title>produtoSaldo</title><tspan x="287.264" y="412.368">{{ produto }}: {{ saldo }} </tspan><tspan x="287.2640075683594" dy="1em"></tspan></text> | |
| </g> | |
| <g> | |
| <title>Motorista</title> | |
| <path d="M 376.015 363.568 C 376.474 363.214 377.454 363.263 377.454 363.263 L 384.322 363.263 L 384.394 361.464 C 382.238 360.96 380.657 359.302 380.657 357.331 C 380.657 354.96 382.946 353.04 385.77 353.04 C 388.593 353.04 390.883 354.96 390.883 357.331 C 390.883 359.321 389.268 360.994 387.078 361.479 L 387.039 363.263 L 394.494 363.263 C 394.494 363.263 395.418 363.536 395.768 363.869 C 396.144 364.225 396.257 365.017 396.257 365.017 L 396.257 381.973 L 393.013 381.973 L 391.95 367.143 L 391.006 382.003 L 380.568 381.973 L 379.473 367.145 L 378.791 381.973 L 375.507 381.973 L 375.507 364.432 C 375.507 364.432 375.659 363.844 376.015 363.568 Z" style="stroke: rgb(0, 0, 0);"> | |
| <title>motorista</title> | |
| </path> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="394.537" y="259.839" transform="matrix(0.681267, 0, 0, 0.735705, 81.744316, 118.464027)"><title>nomeMoterista</title>{{ motorista }} </text> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, -359.77771, 287.42337)"> | |
| <title>Operador</title> | |
| <path d="M 450.375 129.632 C 450.869 129.232 451.925 129.288 451.925 129.288 L 459.319 129.288 L 459.397 127.255 C 457.076 126.685 455.374 124.811 455.374 122.583 C 455.374 119.905 457.839 117.735 460.879 117.735 C 463.92 117.735 466.385 119.905 466.385 122.583 C 466.385 124.833 464.646 126.724 462.288 127.271 L 462.245 129.288 L 470.273 129.288 C 470.273 129.288 471.267 129.597 471.645 129.972 C 472.05 130.375 472.171 131.27 472.171 131.27 L 472.171 150.433 L 468.679 150.433 L 467.533 133.672 L 466.517 150.467 L 455.279 150.433 L 454.099 133.675 L 453.365 150.433 L 449.829 150.433 L 449.829 130.609 C 449.829 130.609 449.992 129.944 450.375 129.632 Z" style="stroke: rgb(0, 0, 0); stroke-width: 1;"> | |
| <title>operador</title> | |
| </path> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="394.537" y="259.839" transform="matrix(0.681267, 0, 0, 0.735705, 213.652206, -45.226704)"><title>nomeOperador</title>{{ operador }} </text> | |
| </g> | |
| <g style=""> | |
| <title>entrega1</title> | |
| <path d="M 346.164 486.3 L 391.507 486.538 L 391.371 536.551 L 435.86 536.779 L 368.463 561.574 L 301.617 536.539 L 346.193 536.44 L 346.164 486.3 Z" style="stroke: rgb(0, 0, 0); fill: rgb(231, 41, 32); stroke-width: 1;"/> | |
| <g transform="matrix(0.453017, 0, 0, 0.431546, 256.219757, 553.276489)" style=""> | |
| <title>predio</title> | |
| <g> | |
| <path d="M 225.589 211.275 L 226.225 81.259 L 237.691 81.136 L 237.546 70.045 L 291.23 70.452 L 291.417 80.678 L 301.877 80.633 L 301.71 171.054 L 301.172 290.857 L 301.957 171.134 L 312.935 171.2 L 313.041 191.261 L 329.835 191.144 L 329.241 333.126 L 226.065 333.019 L 226.238 307.026 L 225.846 333.115 L 168.822 333.109 L 168.512 211.528 L 225.589 211.275 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 2px;"/> | |
| <rect x="178.418" y="219.929" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5px;"/> | |
| <rect x="178.418" y="233.556" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="247.183" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="260.81" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="274.437" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="288.066" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="219.563" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="233.19" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="246.817" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="260.444" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="274.07" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="287.7" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="219.546" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="233.173" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="246.799" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="260.427" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="274.053" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="287.682" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="260.413" y="87.399" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0);"/> | |
| <rect x="276.561" y="87.46" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.413" y="104.083" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.887" y="104.144" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.413" y="119.791" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="277.008" y="119.852" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.227" y="134.876" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.774" y="134.937" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="244.045" y="134.755" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.069" y="150.242" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.616" y="150.303" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.887" y="150.121" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.059" y="165.452" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.606" y="165.513" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.877" y="165.331" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.137" y="180.765" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.684" y="180.826" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.955" y="180.644" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.875" y="195.661" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.422" y="195.722" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.693" y="195.54" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.717" y="211.027" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.264" y="211.088" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.535" y="210.906" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.707" y="226.237" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.254" y="226.298" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.525" y="226.116" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.785" y="241.55" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.332" y="241.611" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.603" y="241.429" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.843" y="257.427" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.39" y="257.488" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.661" y="257.306" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.921" y="272.74" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.468" y="272.801" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.739" y="272.619" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| </g> | |
| </g> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="437.785" y="661.542" transform="matrix(0.71456, 0, 0, 1, -13.011193, 69.13446)"><title>EntregasS10</title>{{ 4000 }} litros</text> | |
| </g> | |
| <g style=""> | |
| <title>entrega3</title> | |
| <path d="M 650.04 486.3 L 695.383 486.538 L 695.247 536.551 L 739.736 536.779 L 672.339 561.574 L 605.493 536.539 L 650.069 536.44 L 650.04 486.3 Z" style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(228, 219, 47);"/> | |
| <g transform="matrix(0.453017, 0, 0, 0.431546, 555.644409, 553.276489)" style=""> | |
| <title>predio</title> | |
| <g> | |
| <path d="M 225.589 211.275 L 226.225 81.259 L 237.691 81.136 L 237.546 70.045 L 291.23 70.452 L 291.417 80.678 L 301.877 80.633 L 301.71 171.054 L 301.172 290.857 L 301.957 171.134 L 312.935 171.2 L 313.041 191.261 L 329.835 191.144 L 329.241 333.126 L 226.065 333.019 L 226.238 307.026 L 225.846 333.115 L 168.822 333.109 L 168.512 211.528 L 225.589 211.275 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 2px;"/> | |
| <rect x="178.418" y="219.929" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5px;"/> | |
| <rect x="178.418" y="233.556" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="247.183" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="260.81" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="274.437" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="178.418" y="288.066" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="219.563" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="233.19" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="246.817" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="260.444" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="274.07" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="195.87" y="287.7" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="219.546" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="233.173" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="246.799" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="260.427" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="274.053" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="212.273" y="287.682" width="5.508" height="5.915" style="stroke: rgb(0, 0, 0); stroke-opacity: 0.78; stroke-width: 1.5;"/> | |
| <rect x="260.413" y="87.399" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0);"/> | |
| <rect x="276.561" y="87.46" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.413" y="104.083" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.887" y="104.144" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.413" y="119.791" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="277.008" y="119.852" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.227" y="134.876" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.774" y="134.937" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="244.045" y="134.755" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.069" y="150.242" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.616" y="150.303" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.887" y="150.121" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.059" y="165.452" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.606" y="165.513" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.877" y="165.331" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="260.137" y="180.765" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.684" y="180.826" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.955" y="180.644" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.875" y="195.661" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.422" y="195.722" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.693" y="195.54" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.717" y="211.027" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.264" y="211.088" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.535" y="210.906" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.707" y="226.237" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.254" y="226.298" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.525" y="226.116" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.785" y="241.55" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.332" y="241.611" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.603" y="241.429" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.843" y="257.427" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.39" y="257.488" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.661" y="257.306" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="259.921" y="272.74" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="276.468" y="272.801" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| <rect x="243.739" y="272.619" width="11.704" height="9.346" style="stroke: rgb(0, 0, 0); stroke-width: 1;"/> | |
| </g> | |
| </g> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="437.785" y="661.542" transform="matrix(0.71456, 0, 0, 1, 296.488373, 69.314743)"><title>EntregasS500</title>{{ 4000 }} litros</text> | |
| </g> | |
| <g style=""> | |
| <title>entregaAeroporto</title> | |
| <path d="M 498.102 486.3 L 543.445 486.538 L 543.309 536.551 L 587.798 536.779 L 520.401 561.574 L 453.555 536.539 L 498.131 536.44 L 498.102 486.3 Z" style="stroke: rgb(0, 0, 0); fill: rgb(231, 41, 32); stroke-width: 1;"/> | |
| <g transform="matrix(1, 0, 0, 1, 290.463409, 475.515717)"> | |
| <title>Aeroporto</title> | |
| <path d="M 309.228 170.954 C 309.228 198.88 273.017 221.52 228.349 221.52 C 183.681 221.52 147.469 198.88 147.469 170.954 C 147.469 143.027 183.681 120.387 228.349 120.387 C 273.017 120.387 309.228 143.027 309.228 170.954 Z M 227.984 121.107 C 184.463 121.107 149.179 142.811 149.179 169.584 C 149.179 196.357 184.463 218.059 227.984 218.059 C 271.508 218.059 306.79 196.357 306.79 169.584 C 306.79 142.811 271.508 121.107 227.984 121.107 Z" style="stroke: rgb(0, 0, 0);"/> | |
| <rect x="188.435" y="109.063" width="93.371" height="50.914" style="fill: rgb(253, 252, 252);"/> | |
| <path d="M 196.451 116.637 L 198.328 116.574 L 202.88 124.247 L 203.878 124.222 L 204.163 123.767 L 224.749 122.271 L 224.773 115.043 L 224.073 113.605 L 223.415 113.416 L 223.895 113.144 L 219.894 105.857 L 219.158 105.583 L 219.722 105.446 L 215.471 96.732 L 220.007 96.693 L 227.381 104.004 L 230.749 104 L 230.76 106.877 L 229.877 106.879 L 235.188 111.733 L 240.448 111.717 L 240.466 114.945 L 238.464 114.992 L 245.41 121.879 L 246.371 121.493 L 266.508 121.46 C 266.508 121.46 269.998 122.148 271.476 123.177 C 272.734 124.053 274.556 126.803 274.556 126.803 C 274.556 126.803 272.726 129.281 271.506 130.03 C 270.051 130.922 266.694 131.363 266.694 131.363 L 246.376 131.246 L 245.427 130.895 L 238.155 139.641 L 240.591 139.734 L 240.591 143.202 L 235.867 143.22 L 230.661 149.389 L 231.289 149.43 L 231.26 152.435 L 227.961 152.469 L 222.727 158.203 L 218.568 158.171 L 221.003 151.116 L 220.375 150.784 L 221.233 150.54 L 224.247 141.631 L 223.511 141.312 L 224.455 141.103 L 224.938 139.657 L 224.78 131.55 L 204.29 129.943 L 204.229 129.32 L 202.73 129.241 L 198.363 136.957 L 196.343 136.944 L 197.261 133.369 L 196.851 133.052 L 197.344 133.082 L 198.296 129.626 L 197.85 129.32 L 198.41 129.215 L 198.786 127.681 L 196.819 127.729 L 194.228 126.837 L 196.796 126.002 L 198.831 125.93 L 198.403 124.227 L 197.76 124.138 L 198.303 123.843 L 197.409 120.379 L 196.888 120.452 L 197.328 120.068 L 196.451 116.637 Z" style="stroke: rgb(0, 0, 0);"/> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px; text-anchor: middle;" x="199.065" y="175.779" transform="matrix(0.670949, 0, 0, 0.701371, 95.795357, 50.83588)"><title>aeroporto</title>{{ nome-ab-reg }} </text> | |
| <g transform="matrix(1, 0, 0, 1, 69.959999, -128.100998)"> | |
| <title>GSE</title> | |
| <g transform="matrix(1, 0, 0, 1, -3.199842, 3.764564)"> | |
| <title>Tractor</title> | |
| <path d="M 167.463 310.735 L 171.246 310.628 L 172.23 305.682 L 177.408 305.704 L 178.992 311.263 L 183.093 311.384 L 184.372 315.221 L 166.492 315.285 L 167.463 310.735 Z M 171.912 310.623 L 178.088 310.568 L 176.955 306.292 L 172.735 306.286 L 171.912 310.623 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| <ellipse style="fill: rgb(255, 255, 255); stroke: rgb(114, 114, 114); stroke-width: 2px;" cx="170.956" cy="313.984" rx="2.739" ry="2.807"/> | |
| <ellipse style="stroke-width: 1; fill: rgb(255, 255, 255); stroke: rgb(114, 114, 114);" cx="181.717" cy="315.43" rx="1.718" ry="1.866"/> | |
| <rect x="184.028" y="314.053" width="0.779" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| <rect x="166.144" y="314.226" width="0.779" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, 2.049538, 0.72937)"> | |
| <title>loader</title> | |
| <path d="M 134.458 327.965 L 143.934 327.847 L 146.137 326.104 L 151.417 326.08 L 151.462 323.263 L 152.48 323.263 C 152.48 323.263 155.852 323.4 157.263 324.811 C 159.027 326.575 158.467 330.745 158.467 330.745 L 134.443 330.769 L 134.458 327.965 Z M 153.703 327.944 L 157.863 327.92 C 157.863 327.92 157.784 326.022 156.561 325.043 C 155.56 324.241 153.733 324.048 153.733 324.048 L 153.703 327.944 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4px;"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); fill: rgb(252, 252, 252);" cx="142.139" cy="330.791" rx="1.822" ry="1.866"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(255, 255, 255);" cx="152.208" cy="330.791" rx="1.718" ry="1.866"/> | |
| <rect x="134.326" y="326.225" width="9.468" height="0.947" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4px;"/> | |
| <rect x="133.772" y="329.66" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4px;"/> | |
| <rect x="157.339" y="329.637" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, 30.585108, 32.737694)"> | |
| <title>bus</title> | |
| <path d="M 118.389 303.512 C 118.389 303.512 118.494 302.826 118.782 302.501 C 119.179 302.055 119.89 302.07 119.89 302.07 L 141.42 302.002 C 141.42 302.002 141.648 302.048 141.862 302.283 C 142.01 302.446 142.028 302.907 142.028 302.907 L 142.092 309.85 L 140.103 309.85 C 140.196 308.764 139.398 308.007 138.4 308.007 C 137.403 308.007 136.739 308.768 136.724 309.785 L 126.048 309.834 C 126.029 308.821 125.267 308.007 124.33 308.007 C 123.394 308.007 122.633 308.819 122.612 309.83 L 118.42 309.826 L 118.42 308.321 L 118.109 308.321 L 118.389 303.512 Z M 122.828 302.735 L 119.726 302.755 C 119.726 302.755 119.368 302.746 119.202 302.983 C 119.016 303.248 118.976 303.653 118.976 303.653 L 118.807 305.536 L 122.82 305.504 L 122.828 302.735 Z M 123.406 305.494 L 128.711 305.423 L 128.701 302.707 L 123.376 302.719 L 123.406 305.494 Z M 132.606 305.374 L 139.067 305.327 L 139.031 302.683 L 132.59 302.7 L 132.606 305.374 Z M 139.677 305.3 L 142.025 305.281 L 141.941 302.695 L 139.659 302.684 L 139.677 305.3 Z M 130.965 307.041 L 131.881 307.041 L 131.874 302.713 L 130.959 302.718 L 130.965 307.041 Z M 129.441 306.981 L 130.357 306.981 L 130.353 302.703 L 129.441 302.712 L 129.441 306.981 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(255, 255, 255);" cx="-124.34" cy="309.788" rx="0.863" ry="0.964" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(255, 255, 255);" cx="-138.42" cy="309.799" rx="0.863" ry="0.964" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="117.895" y="308.604" width="0.668" height="1.204" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4px;"/> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, -0.654124, 0.990126)"> | |
| <title>stair</title> | |
| <path d="M 163.54 325.744 L 173.016 325.862 L 181.899 325.715 L 181.869 330.76 L 185.601 330.769 L 187.409 327.516 L 187.549 322.964 L 163.525 322.94 L 163.54 325.744 Z M 182.797 327.286 L 186.634 327.311 L 185.171 330.029 L 182.792 330.103 L 182.797 327.286 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4; transform-box: fill-box; transform-origin: 50% 50%;" transform="matrix(-1, 0, 0, -1, 0.00001, 0.00003)"/> | |
| <path d="M 166.331 320.633 L 173.58 322.943 L 174.445 323.219 L 187.419 327.354 L 187.334 325.435 L 166.327 318.316 L 166.331 320.633 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| <path d="M 174.512 323.299 L 175.625 323.595 L 172.152 327.953 L 170.884 327.903 L 174.512 323.299 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4px;"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); fill: rgb(252, 252, 252); stroke-width: 1;" cx="-183.85" cy="330.791" rx="1.822" ry="1.866" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(255, 255, 255);" cx="-169.78" cy="330.791" rx="1.718" ry="1.866" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="-188.22" y="329.66" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="-164.65" y="329.637" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| </g> | |
| <g transform="matrix(1, 0, 0, 1, -29.099354, -11.377257)"> | |
| <title>arConditioner</title> | |
| <path d="M 165.336 328.451 L 183.538 328.418 L 183.6 331.732 L 186.914 331.736 L 188.349 329.946 L 189.211 326.96 L 165.187 326.936 L 165.336 328.451 Z M 184.095 328.266 L 188.278 328.199 L 187.861 329.611 L 186.756 331.147 L 184.123 331.185 L 184.095 328.266 Z" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4; transform-box: fill-box; transform-origin: 50% 50%;" transform="matrix(-1, 0, 0, -1, -0.000014, -0.000004)"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); fill: rgb(252, 252, 252); stroke-width: 1;" cx="-185.51" cy="331.758" rx="1.822" ry="1.866" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <ellipse style="stroke: rgb(0, 0, 0); stroke-width: 1; fill: rgb(255, 255, 255);" cx="-171.44" cy="331.758" rx="1.718" ry="1.866" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="-189.88" y="330.627" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="-166.31" y="330.604" width="1.714" height="1.107" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;" transform="matrix(-1, 0, 0, 1, 0, 0)"/> | |
| <rect x="171.498" y="324.605" width="17.03" height="1.241" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| <rect x="171.224" y="326.357" width="17.778" height="3.403" style="fill: rgb(216, 216, 216); stroke: rgb(0, 0, 0); stroke-width: 0.4;"/> | |
| </g> | |
| </g> | |
| <text style="white-space: pre; fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 28px;" x="437.785" y="661.542" transform="matrix(0.71456, 0, 0, 1, -149.931107, -405.975128)"><title>Abastecimento</title>{{ 4000 }} litros</text> | |
| </g> | |
| </g> | |
| </svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, Input } from '@angular/core'; | |
| @Component({ | |
| selector: 'app-veiculo', | |
| standalone: true, | |
| templateUrl: './veiculo.component.html', | |
| }) | |
| export class VeiculoComponent { | |
| // Tanques | |
| @Input() tanque1 = ''; | |
| @Input() saldo1 = ''; | |
| @Input() produto1 = ''; | |
| @Input() dataHora1 = ''; | |
| @Input() tanque2 = ''; | |
| @Input() saldo2 = ''; | |
| @Input() produto2 = ''; | |
| @Input() dataHora2 = ''; | |
| @Input() tanque3 = ''; | |
| @Input() saldo3 = ''; | |
| @Input() produto3 = ''; | |
| @Input() dataHora3 = ''; | |
| // Veículo / placa | |
| @Input() placa = ''; | |
| // Produto/carga/saldo genérico (textos nas legendas) | |
| @Input() produto = ''; | |
| @Input() carga = ''; | |
| @Input() saldo = ''; | |
| // Pessoas | |
| @Input() motorista = ''; | |
| @Input() operador = ''; | |
| // Aeroporto (nome-ab-reg no SVG original -> troca para nomeAbReg) | |
| @Input() nomeAbReg = ''; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment