hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
a44298c5a5cc13853a7984a0e8a9f743264b49a2
4,201
php
PHP
src/Hris/MemoBundle/Entity/Memo.php
borrasca/erp
625dbb5b43d6b833e20e9e5860722b90a2716681
[ "MIT" ]
3
2018-07-02T09:44:02.000Z
2018-08-17T22:41:34.000Z
src/Hris/MemoBundle/Entity/Memo.php
borrasca/erp
625dbb5b43d6b833e20e9e5860722b90a2716681
[ "MIT" ]
null
null
null
src/Hris/MemoBundle/Entity/Memo.php
borrasca/erp
625dbb5b43d6b833e20e9e5860722b90a2716681
[ "MIT" ]
4
2018-07-23T03:04:23.000Z
2019-01-13T04:34:12.000Z
<?php namespace Hris\MemoBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Doctrine\Common\Collections\ArrayCollection; use Gist\CoreBundle\Template\Entity\HasGeneratedID; use Gist\CoreBundle\Template\Entity\TrackCreate; use stdClass; /** * @ORM\Entity * @ORM\Table(name="hr_memo") */ class Memo { /* ATTENDANCE TYPES */ const TYPE_TARDINESS = "Tardiness"; const TYPE_PROMOTION = "Promotion"; const TYPE_REGULARIZATION = "Regularization"; const TYPE_VIOLATION = "Violation"; const TYPE_DISCIPLINARY = "Disciplinary"; const TYPE_ALL = "All"; const STATUS_DRAFT = "Draft"; const STATUS_FORREVIEW = "For Review"; const STATUS_REVIEWED = "Reviewed"; const STATUS_APPROVED = "Approved"; const STATUS_NOTED = "Noted"; const STATUS_SENT = "Sent"; use HasGeneratedID; use TrackCreate; /** * @ORM\ManyToOne(targetEntity="Hris\WorkforceBundle\Entity\Employee") * @ORM\JoinColumn(name="employee_id", referencedColumnName="id") */ protected $employee; /** * @ORM\ManyToOne(targetEntity="Hris\WorkforceBundle\Entity\Employee") * @ORM\JoinColumn(name="reviewed_id", referencedColumnName="id") */ protected $reviewed_by; /** * @ORM\ManyToOne(targetEntity="Hris\WorkforceBundle\Entity\Employee") * @ORM\JoinColumn(name="approved_id", referencedColumnName="id") */ protected $approved_by; /** * @ORM\ManyToOne(targetEntity="Hris\WorkforceBundle\Entity\Employee") * @ORM\JoinColumn(name="noted_id", referencedColumnName="id") */ protected $noted_by; /** @ORM\Column(type="string", length=30) */ protected $type; /** @ORM\Column(type="string", length=30) */ protected $status; /** @ORM\Column(type="text") */ protected $content; /** @ORM\Column(type="datetime") */ protected $date_issued; public function __construct() { $this->initTrackCreate(); $this->status = self::STATUS_DRAFT; } public function getDateIssued() { return $this->date_issued; } public function getDateIssuedFormatted() { return $this->date_issued->format('m/d/Y');; } public function setDateIssued($dateIssued) { $this->date_issued = $dateIssued; return $this; } public function getUserCreateName() { return $this->getUserCreate()->getName(); } public function setEmployee($employee) { $this->employee = $employee; return $this; } public function getEmployee() { return $this->employee; } public function getEmployeeName() { return $this->employee->getDisplayName(); } public function setType($type) { $this->type = $type; return $this; } public function getType() { return $this->type; } public function setStatus($status) { $this->status = $status; return $this; } public function getStatus() { return $this->status; } public function setContent($content) { //change this for JSON $this->content = $content; return $this; } public function getContent() { //change this for json_decode(json) return $this->content; } public function setReviewedBy($employee) { $this->reviewed_by = $employee; return $this; } public function getReviewedBy() { return $this->reviewed_by; } public function setApprovedBy($employee) { $this->approved_by = $employee; return $this; } public function getApprovedBy() { return $this->approved_by; } public function setNotedBy($employee) { $this->noted_by = $employee; return $this; } public function getNotedBy() { return $this->noted_by; } public function toData() { $data = new \stdClass(); $this->dataHasGeneratedID($data); $this->dataTrackCreate($data); $data->type = $this->type; $data->content = $this->content; return $data; } }
21.005
74
0.602714
74561ef410558ce34886e66e74084b19a034e98c
102,058
css
CSS
images/sdd_files/XK44-LwLyC6.css
sdoylelambda/solo
fbfc6bcae667279e879a42b17c875d30546da125
[ "CC-BY-3.0" ]
null
null
null
images/sdd_files/XK44-LwLyC6.css
sdoylelambda/solo
fbfc6bcae667279e879a42b17c875d30546da125
[ "CC-BY-3.0" ]
null
null
null
images/sdd_files/XK44-LwLyC6.css
sdoylelambda/solo
fbfc6bcae667279e879a42b17c875d30546da125
[ "CC-BY-3.0" ]
null
null
null
._7jp4{max-width:248px}._7jp4._5i_d{max-width:248px}._7jp5{align-items:center;background-color:#00a400;border-radius:18px 18px 0 0;color:#fff;display:flex;flex-direction:row;height:56px;justify-content:space-between;padding:0 12px}._7jp6{align-items:center;display:flex;flex-direction:row}._7jp7{align-items:center;background-color:#fff;border-radius:50%;display:flex;height:32px;justify-content:center;margin-right:8px;width:32px}._7jp8{align-items:flex-end;display:flex;flex-direction:column}._7jp9{font-size:12px;line-height:14px}._7jpa{font-size:14px;line-height:16px}._7jpg{align-items:center;border-top:1px solid #dadde1;display:flex;justify-content:center;margin-top:12px;padding:14px}._7jpg a{color:#3578e5}._7jpb{align-items:center;display:flex;flex-direction:row;padding:12px 12px 0 12px}._7jph{border:.7px solid #dadde1;border-radius:3px}._7jpc{align-items:center;display:flex;justify-content:center;min-width:40px;padding:0;width:40px}._7jpd{margin-left:12px;max-width:172px;padding:0}._7jpe{color:#606770;font-size:12px;line-height:14px}._7jpf{color:#1c1e21;font-size:12px;line-height:16px} ._5i_d._1zrz{width:400px}._ctz{border-radius:inherit;white-space:pre-wrap;word-wrap:break-word}._2t2_{padding:12px}._2zb6{font-size:20px;text-align:center}._2zb7{font-size:12px;text-align:center}._cup{color:#90949c}._cuq{background-color:#4080ff;border-radius:inherit;color:#fff;display:flex}._689u{font-size:12px;opacity:.5}._cur{flex:1 1 0%;overflow:hidden;padding-right:2px;text-align:right;white-space:nowrap}._cus{font-size:14px;overflow:hidden;text-overflow:ellipsis}._cut{border:1px solid #fff;border-radius:50%;height:26px;padding-top:6px;text-align:center;width:32px}._2e6a{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}._2e6a:hover{text-decoration:none}._7i0e{background-color:#fff;border:0;border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;border-top:1px solid #dadde1;color:#3578e5;cursor:pointer;display:block;font-size:14px;height:40px;outline:none;width:100%}._7i0e:disabled{color:#dadde1;cursor:auto}._7i0d{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit} ._1oyf{align-items:center;background:#000;box-sizing:border-box;display:flex;height:88px;justify-content:space-between;margin-left:140px;margin-right:140px;overflow:hidden;position:relative}._1oye{background:#000;position:relative}._1oyh{align-items:center;background:#000;white-space:nowrap}._1oyb{display:inline-block;flex-grow:1;overflow:hidden}._1oyc{background-position:50% 50%;background-size:cover;box-sizing:border-box;display:inline-block;flex:0 0 60px;height:60px;margin-left:7px;margin-right:7px;position:relative;width:60px}._1oyd{background-position:50% 50%;background-size:cover;box-shadow:inset 0 0 0 1000px rgba(0, 0, 0, .7)}._1oyc ._3603:after{bottom:8px;right:8px}._1oyd ._3603:after{-webkit-filter:brightness(25%)} ._3h_t{background:linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,.5));box-sizing:border-box;padding:24px 24px 24px 24px;position:absolute;transition:opacity .3s;width:100%;z-index:1}._3h_y{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-50px -331px}._3h_v{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-25px -331px}._3h_x{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:0 -331px}._3tth{background-image:url(/rsrc.php/v3/yy/r/qtAIP4ejgW1.png);background-repeat:no-repeat;background-size:73px 455px;background-position:-41px -290px}._3h_w{display:inline-block;height:24px;margin-right:8px;vertical-align:middle;width:24px}._3h_u{color:#fff;display:inline-block;font-size:14px;margin-left:3px;margin-right:32px;margin-top:2px;outline:none;padding:5px 5px 5px 5px}._3h_u:hover{background-color:transparent;background-color:rgba(255, 255, 255, .15);border-color:transparent;border-radius:2px;color:#fff;text-decoration:none} ._eni{opacity:0}._enh{position:absolute;top:50%} ._fj3{height:115px;position:relative}._2-0o{margin-top:-30px;position:relative}._2gye{margin-left:auto;margin-right:auto} ._3quh{background:transparent;border:0;color:#0084ff;cursor:pointer;font-family:inherit;font-size:14px;line-height:inherit;margin:0;padding:0}._6q1a ._3quh{background-color:transparent;border:0;border-radius:6px;color:#0084ff;cursor:pointer;font-family:inherit;font-size:14px;line-height:16px;padding:8px 10px;text-decoration:none}._2t_{font-weight:500}._2u0{font-weight:400}._6q1a ._2u0{font-weight:500}._17u4{color:rgba(0, 0, 0, .20);font-weight:400}._6q1a ._17u4{font-weight:500}._3quh._3ay_{color:#f03d25}._3quh:active{opacity:.2}._4zab{cursor:default;opacity:.4}._4zab:active{opacity:.4}._6q1a ._3quh:active:not(._4zab),._6q1a ._3quh:focus:not(:active):not(._4zab){background-color:#ecf3ff;opacity:1;outline:none}._6q1a ._3ay_:active:not(._4zab),._6q1a ._3ay_:focus:not(:active):not(._4zab){background-color:#feeef0}._6q1a ._4zab{cursor:default;opacity:.4}._6q1a ._4zab:active{background-color:transparent;opacity:.4} ._5l-3{display:flex}.safari.webkit ._5l-3{display:-webkit-flex}._5l-m{display:flex;flex-direction:column}.safari.webkit ._5l-m{display:-webkit-flex;-webkit-flex-direction:column}._389q{display:flex;flex-direction:row-reverse}.safari.webkit ._389q{display:-webkit-flex;-webkit-flex-direction:row-reverse} ._3u55{display:inline-block;vertical-align:middle}._3qh2{animation:rotateSpinner 1.2s linear infinite}._8a6k{align-items:center;box-sizing:border-box;display:inline-flex;flex-direction:column;height:100%;justify-content:center;padding:12px;width:100%}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}} ._14-7 ._58al::-webkit-input-placeholder{color:rgba(0, 0, 0, .40);font-size:14px}._8tnm ._58al::-webkit-input-placeholder{color:rgba(255, 255, 255, .5);font-size:14px}._8tnl{color:#fff}._14-7 ._58ah ._58al{font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;font-size:14px;line-height:20px}.__6g ._14-7 ._58ah ._58al{font-family:SFUIText-Regular, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif}._14-7._14-7 ._58al{margin-left:6px}._14-7._14-7 ._58ah ._58ak{margin:1px 2px 1px 0}._14-7 ._58ah ._58al::-ms-clear{display:none}._14-8{background:#cbe6fe;border-radius:3px;cursor:default;float:left;margin:1px 3px 1px 0;padding:2px 6px}._14-8:focus{background:#0084ff;outline:none}._14-9{color:#0084ff;font-size:14px}._14-8:focus ._14-9{color:#fff}._6q1a ._14-8{background:#f7f6f5;margin:1px 0;margin-right:.33ch;padding:0 4px;position:relative}._6q1a ._14-8::after{content:",";position:absolute;right:0;top:0}._6q1a ._14-8:focus{background:#373e4c;outline:none}._6q1a ._14-9{color:#373e4c}._6q1a ._1rr1{float:left;height:20px;width:1px} ._4p-s{font-size:14px}.fbChatTypeahead ._4p-s{background-color:#e9ebee}._6ce9 .fbChatTypeahead ._4p-s{background-color:#fff} ._3egs{background:white}._6q1a ._3egs{background:transparent}._3hx- ._1i6a ._3egs{display:flex;flex-direction:column}._6q1a ._nd_ ._3058._s1-._4k7c,._6q1a ._29_7 ._3058._s1-._4k7c,._6q1a ._29_7 ._3058._s1-._2saq,._6q1a ._nd_ ._3058._s1-._2saq,._6kv5 ._3058._s1-._2saq,._6kv5 ._3058._s1-._4k7c{background-color:transparent}._3erg ._4k7c,._nd_ ._3058._s1-._4k7c,._29_7 ._3058._s1-._4k7c{border:1px solid;border-color:rgba(0, 0, 0, .1);box-sizing:border-box;color:rgba(0, 0, 0, .5);display:flex;flex-direction:column;font-size:12px;line-height:16px}._nd_._3erg ._3058._s1-._4k7c._4k7c,._nd_._3erg ._3058._s1-._2saq._2saq{border-bottom-right-radius:4px}._3erg ._2saq,._29_7 ._3058._s1-._2saq,._nd_ ._3058._s1-._2saq{border:1px solid;border-color:rgba(0, 0, 0, .1);box-sizing:border-box;color:rgba(0, 0, 0, .5);display:flex;flex-direction:column;line-height:13px;max-width:150px;padding:5px 8px 6px 8px}._29_7._3erg ._3058._s1-._4k7c._4k7c,._29_7._3erg ._3058._s1-._2saq._2saq{border-bottom-left-radius:4px}._4k7a{color:rgba(0, 0, 0, .5);font-size:12px;margin-bottom:2px}._2sap{color:rgba(0, 0, 0, .5);font-size:11px}body[dir='rtl'] ._6e38{transform:scaleX(-1)}._3d7d{color:rgba(0, 0, 0, .5);font-size:12px;font-weight:bold;margin-top:2px}._3d7e{color:rgba(0, 0, 0, .5);font-size:11px;font-weight:bold}._nd_ ._3058._s1-._4k7c:hover,._nd_ ._3058._s1-._2saq:hover,._29_7 ._3058._s1-._4k7c:hover,._29_7 ._3058._s1-._2saq:hover,._3erg ._2saq:hover,._3erg ._4k7c:hover{background-color:rgba(0, 0, 0, .05);text-decoration:none}._nd_ ._3058._s1-._4k7c:active,._nd_ ._3058._s1-._2saq:active,._29_7 ._3058._s1-._4k7c:active,._29_7 ._3058._s1-._2saq:active,._3erg ._4k7c:active,._3erg ._2saq:active{background-color:rgba(0, 0, 0, .10);border:1px solid;border-color:rgba(0, 0, 0, .1);text-decoration:none}._1nc7 ._4k7c,._1nc7 ._2saq{margin-left:8px}._3hx- ._1nc7 ._2saq{margin-left:0}._3hx- ._1i6a ._3egu{background:white;display:block;flex-basis:0px;flex-grow:1;flex-shrink:1}._3hx- ._1i6a ._3egt{display:flex;flex-direction:row}._3hx- ._1i6a ._1nc7 ._3egt{flex-direction:row-reverse}._3hx- ._1nc7 ._2sap{margin-left:8px}._684r{align-items:flex-end}._4k7c ._2k5c,._4k7c ._2k5d,._2saq ._2k5c,._2saq ._2k5d{background:none}._4k7e{overflow:hidden}._2saq ._4k7e{font-size:11px}._68c4{width:85%}._3-wv{cursor:pointer;display:block;height:16px;width:16px}._3-wv._7i2n{align-items:center;background-color:none;border-radius:99px;box-sizing:border-box;cursor:pointer;display:flex;flex-shrink:0;height:32px;justify-content:center;width:32px}._3-wv._7i2n:hover{background-color:rgba(0, 0, 0, .04)}._nd_ ._3058._s1-._6e6n,._3erg ._4k7c,._3erg ._2saq{border-color:#fff;color:#fff}._29_7 ._3058._s1-._6e6n{background-color:#f1f0f0;border-color:#fff}._29_7 ._6e6n ._pye,._1nc7 ._6e6n ._pye{color:#828282}._1aa6 ._6e6n ._pye,._6e6n ._pye{max-width:93%}._s1- ._6e6n,._6e6n{text-decoration:none} ._z4_ ._59s7{animation-duration:.2s;animation-name:messengerDialogPopIn;animation-timing-function:cubic-bezier(.18, .89, .43, 1.05)}@keyframes messengerDialogPopIn{0%{transform:scale3d(0, 0, 1)}}._z4_ ._59s7._2qby{animation-duration:.2s;animation-name:messengerDialogPopOut;animation-timing-function:ease-out}@keyframes messengerDialogPopOut{0%{transform:scale(1)}100%{transform:scale(0)}}._z4_{font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;line-height:1.28;overflow:auto;text-rendering:optimizeLegibility;-webkit-touch-callout:none;-webkit-user-select:none}._mvg{background-color:#e9ebee}._z4_._mvg #globalContainer{min-width:500px;width:auto;width:initial}._z4_._mvg .fb_content{min-height:unset}._mvg #globalContainer.uiContextualLayerParent{padding:0}._2sdm{background-color:rgba(0, 0, 0, .05);-webkit-font-smoothing:antialiased}._730u{left:0;position:fixed;right:0;top:0;z-index:202}@media (min-width: 640px) and (max-width: 800px),(min-width: 801px){._730u ._73y_{min-width:100%}}._4sp8{background-color:#fff;display:flex;font-size:14px;min-width:500px}._3v5f._4sp8{font-size:13px}._6q1a ._4sp8,._6q1a ._2sdm,#facebook ._6q1a._z4_{background-color:#fafbfc}.safari.webkit ._4sp8{display:-webkit-flex}._3oh-{-webkit-touch-callout:initial;-webkit-user-select:text}._z4_.apple ._58al{font-family:system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif}._2por,._2por input,._2por textarea,._z4_._2por,._z4_._2por button,._z4_._2por input,._z4_._2por label,._z4_._2por select,._z4_._2por td,._z4_._2por textarea{font-family:Helvetica Neue, Verdana, sans-serif}._30yy{cursor:pointer;transition:opacity .2s}._30yy:active{opacity:.2;transition-duration:0s}._30yy:focus:not(:active){opacity:.6}._2sdm ::selection{background-color:rgba(0, 132, 255, .2)}._z4_ ._4pv0{font-family:Lucida Grande, Tahoma, Verdana, Arial, sans-serif} ._1o12{background-color:#f03d25;background-image:url(/rsrc.php/v3/y-/r/UyXXjzKrtUC.png);background-position:19px 50%;background-repeat:no-repeat;border:1px solid #f03d25;overflow:hidden;padding:0 0 0 50px;position:relative}._1o13{background-color:#fff;padding:12px}._nd_ ._1o12{float:right} ._2f5n{background-color:#fff;border:1px solid rgba(0, 0, 0, .1);border-width:0 1px 1px;padding:6px 12px}._2f5n ._29ex{height:1.28em;margin-right:6px;width:1.28em}._2f5n ._29ey{color:rgba(0, 0, 0, .60)}._3dug .__6l{font-size:13px;padding-top:2px}._3dug .__6m{font-size:12px;padding:4px 0 4px 0} ._4h13{margin:1px 0;max-width:100%} ._52mr,._4qoc{border-radius:4px;max-width:85%;position:relative}._52mr._s1-{box-sizing:border-box;max-width:95%}._52mr ._mxz{border-top-left-radius:4px;border-top-right-radius:4px}._52mr ._4br2{border-bottom-left-radius:4px;border-bottom-right-radius:4px}._29_7 ._52mr{border-bottom-right-radius:1.3em;border-top-right-radius:1.3em}._nd_ ._52mr{border-bottom-left-radius:1.3em;border-top-left-radius:1.3em}._29_7 ._52mr ._mxz{border-top-right-radius:1.3em}._nd_ ._52mr ._mxz{border-top-left-radius:1.3em}._29_7 ._52mr ._4br2{border-bottom-right-radius:1.3em}._nd_ ._52mr ._4br2{border-bottom-left-radius:1.3em}@media all and (min-width: 320px){._52mr,._52mr._s1-,._4qoc{max-width:85%}}@media all and (min-width: 920px){._52mr,._52mr._s1-,._4qoc{box-sizing:content-box;max-width:70%}}@media all and (min-width: 1211px){._52mr,._52mr._s1-,._4qoc{max-width:55%}}@media all and (min-width: 1600px){._52mr,._52mr._s1-,._4qoc{max-width:60%}}._7kkj ._52mr,._7kkj ._52mr._s1-,._7kkj ._4qoc{max-width:70%}._29_7:first-of-type ._3058._52mr:first-of-type,._29_7:first-of-type ._3058._52mr:first-of-type ._mxz,._29_7:first-of-type ._3058:first-of-type ._52mr,._29_7:first-of-type ._3058:first-of-type ._52mr ._mxz{border-top-left-radius:1.3em}._nd_:first-of-type ._3058._52mr:first-of-type,._nd_:first-of-type ._3058._52mr:first-of-type ._mxz,._nd_:first-of-type ._3058:first-of-type ._52mr,._nd_:first-of-type ._3058:first-of-type ._52mr ._mxz{border-top-right-radius:1.3em}._29_7:last-of-type ._3058._52mr:last-of-type,._29_7:last-of-type ._3058._52mr:last-of-type ._4br2,._29_7:last-of-type ._3058:last-of-type ._52mr,._29_7:last-of-type ._3058:last-of-type ._52mr ._4br2{border-bottom-left-radius:1.3em}._nd_:last-of-type ._3058._52mr:last-of-type,._nd_:last-of-type ._3058._52mr:last-of-type ._4br2,._nd_:last-of-type ._3058:last-of-type ._52mr,._nd_:last-of-type ._3058:last-of-type ._52mr ._4br2{border-bottom-right-radius:1.3em}._29_7 ._3duc ._52mr,._nd_ ._3duc ._52mr,._29_7:last-of-type ._3058:last-of-type ._3duc ._52mr,._nd_:last-of-type ._3058:last-of-type ._3duc ._52mr{border-bottom-left-radius:0;border-bottom-right-radius:0}._52mr._3duc{max-width:100%}._2wrf ._52mr{max-width:none}._3duc ._2wrf._52mr{max-width:100%}._29_7:first-of-type ._4ikk ._3058._52mr:first-of-type,._29_7:first-of-type ._3058:first-of-type ._4ikk ._52mr,._nd_:first-of-type ._4ikk ._3058._52mr:first-of-type,._nd_:first-of-type ._3058:first-of-type ._4ikk ._52mr,._4ikk ._52mr{border-radius:0;margin:-1px 0}._29_7:first-of-type ._3058:first-of-type ._2q1l._52mr,._nd_:first-of-type ._3058:first-of-type ._2q1l._52mr{border-top-left-radius:0;border-top-right-radius:0}._3058 ._4skb{overflow:visible}._6uum,._8722{border-top-left-radius:1.3em;border-top-right-radius:1.3em}._7w6w ._52mr._s1-{max-width:100%;min-width:100%;width:100%}#facebook ._7w6w ._52mr,#facebook ._7w6w ._52mr ._mxz,#facebook ._7w6w ._52mr ._4br2{border-radius:6px} ._wu0{background:#fdf5d4;border:1px solid #f1c40f;font-family:monospace !important;margin:1px 0;padding:10px;-webkit-touch-callout:all;-webkit-user-select:text;white-space:pre-wrap;word-break:break-word}._wu0 code[class*="language-"],._wu0 pre[class*="language-"]{color:#000;direction:ltr;font-family:Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;-webkit-hyphens:none;hyphens:none;line-height:1.5;tab-size:4;text-align:left;text-shadow:0 1px white;white-space:pre-wrap;word-break:normal;word-spacing:normal}._3erg ._3058._wu0{max-width:81ch}#facebook div._wu0 div,#facebook div._wu0 pre,#facebook div._wu0 code{font-family:Menlo, Consolas, Monaco, monospace;white-space:pre-wrap}._wu0 pre[class*="language-"]::selection,._wu0 pre[class*="language-"] ::selection,._wu0 code[class*="language-"]::selection,._wu0 code[class*="language-"] ::selection{background:#dae7ff;text-shadow:none}@media print{._wu0 code[class*="language-"],._wu0 pre[class*="language-"]{text-shadow:none}}._wu0 pre[class*="language-"]{margin:.5em 0;overflow:auto;padding:1em}._wu0 :not(pre)>code[class*="language-"],._wu0 pre[class*="language-"]{background:#f5f6f7}._wu0 :not(pre)>code[class*="language-"]{border-radius:.3em;padding:.1em}._wu0 .token.comment,._wu0 .token.prolog,._wu0 .token.doctype,._wu0 .token.cdata{color:slategray}._wu0 .token.punctuation{color:#999}._wu0 .namespace{color:#74777d}._wu0 .token.property,._wu0 .token.tag,._wu0 .token.boolean,._wu0 .token.number,._wu0 .token.constant,._wu0 .token.symbol,._wu0 .token.deleted{color:#74777d}._wu0 .token.selector,._wu0 .token.attr-name,._wu0 .token.string,._wu0 .token.char,._wu0 .token.builtin,._wu0 .token.inserted{border:none;color:#8e44ad}._wu0 .token.operator,._wu0 .token.entity,._wu0 .token.url,._wu0 .language-css .token.string,._wu0 .style .token.string{border:none;color:#4b4d51}._wu0 .token.atrule,._wu0 .token.attr-value,._wu0 .token.keyword{color:#139543}._wu0 .token.function{color:#c6539d}._wu0 .token.regex,._wu0 .token.important,._wu0 .token.variable{color:#c0392b}._wu0 .token.important,._wu0 .token.bold{font-weight:bold}._wu0 .token.italic{font-style:italic}._wu0 .token.entity{cursor:help} ._2y8y._6zw0{align-items:center;border-bottom:none;box-shadow:0 1px 2px 0 var(--fds-black-alpha-10);min-height:60px;padding:13px 16px 13px 16px;z-index:201}._2y8y{border-bottom:1px solid rgba(0, 0, 0, .10);box-sizing:border-box;min-height:50px;padding:13px;position:relative}._2y8_{background-color:#fff;border:1px solid rgba(0, 0, 0, .20);border-radius:6px;box-shadow:0 1px 6px 0 rgba(0, 0, 0, .20);margin-top:11px;width:320px}.__6g ._2y8_{font-family:SFUIText-Regular, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif}.__6g ._2y8-{font-family:SFUIText-Regular, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif}._2y8_ .scrollable{max-height:400px}._2y8_ .uiScrollableAreaBody{padding:6px 0}._2y8z{color:rgba(0, 0, 0, .40);font-size:14px;margin:1px 3px 1px 0;padding:2px 0;white-space:nowrap}._66s6{flex:1 1 auto}._6q1a ._66s6{width:100%}._2y8y ._58al::-webkit-input-placeholder{color:rgba(0, 0, 0, .20)}._2y8y._6wi0{height:50px;width:100%}._2y8y._6wi0 ._6wi1{border:none;flex-grow:1;font-size:14px;margin-left:4px}._2y8y._6wi0 ._6wi1 ._58al{font-size:14px;margin-top:3px}._2y8y ._6wh5{color:#373e4c;min-width:115px;padding-top:3px}._2y8y ._6wh5:focus{outline:none} ._2t45{height:383px}._225b._6ybl{align-items:center;background-color:transparent;color:rgba(0, 0, 0, .34);display:flex;font-size:13px;font-weight:bold;height:32px;padding:0 16px;padding-top:8px;text-transform:uppercase}._225b{background-color:rgba(0, 0, 0, .03);color:rgba(0, 0, 0, .40);font-size:13px;line-height:24px;padding:0 12px;position:relative}._8slb{background-color:rgba(255, 255, 255, .1);color:rgba(255, 255, 255, .5)}._87n7{color:rgba(0, 0, 0, 1);font-size:13px;font-weight:normal;line-height:18px;margin-top:10px;position:absolute;right:16px;text-transform:none;transform:translateY(-50%)}._2a1j ._225b{padding:0 16px}.fbChatTypeahead ._225b{background-color:transparent;font-weight:bold}._225c,._3xcx,._8tm2{line-height:25px;padding:10px 16px}._8tm0,._8tm2{border-top:1px solid rgba(255, 255, 255, .1)}._8b0j{align-items:center;color:rgba(0, 0, 0, .5);display:flex;flex-direction:column;padding-top:20px;text-align:center}._8b0k{font-size:17px;font-weight:500;height:22px;line-height:22px;padding-bottom:4px;width:320px}._8b0l{font-size:13px;height:36px;line-height:18px;width:300px}.fbChatTypeahead.flipped ._225c,.fbChatTypeahead.flipped ._3xcx,.fbChatTypeahead.flipped ._29hk,.fbChatTypeahead.flipped ._29hl{transform:rotate(180deg)}._225c ._2i59{margin-right:16px}._4g0h,._3xcx{color:rgba(0, 0, 0, .40);font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._8tm1,._8tm2{color:rgba(255, 255, 255, .5)}._8a02{font-size:13px;height:18px;padding:12px;text-align:center}._8a02 a{color:#0084ff;text-decoration:none}@media all and (max-width: 700px){._225b{display:none}}._8i1{-webkit-backdrop-filter:blur(5px);background:rgba(255, 255, 255, .95);border:0;border-radius:6px;bottom:1em;box-shadow:0 0 0 1px rgba(0, 0, 0, .1), 0 1px 10px rgba(0, 0, 0, .35);position:relative;width:300px} ._5l37{display:block}._5l37:hover{background-color:rgba(0, 0, 0, .05)}.fbChatTypeahead.flipped ._5l37{transform:rotate(180deg)}._5l37:active,._1k1p{background-color:rgba(0, 0, 0, .05)}._13iv ._5l37:active,._13iv ._1k1p,._13iv ._5l37:hover{background-color:#dbdbdb}._5l37:hover a{text-decoration:none}._5l38{padding:6px 0}._1k1p ._5l38,._3h3c ._5l38,._1k1p+._5l37 ._5l38{border-top:none;padding-top:6px}._5l37 ._5l39{margin-right:0;padding:6px 12px}._5l37 ._5l39._85_s{padding-left:16px}._2a1j ._5l37 ._5l39{margin-right:0;padding:6px 12px 6px 16px}._8slc{color:rgba(0, 0, 0, 1);font-size:14px;line-height:32px}._8sld{color:#fff;font-size:14px;line-height:32px}._7l-p{color:rgba(0, 0, 0, .50)}._7u0a{color:rgba(0, 0, 0, .75)}._5ywd{color:#0084ff;font-size:12px;padding-left:4px}._3q34{color:rgba(0, 0, 0, 1);font-size:14px;margin-bottom:1px;margin-top:1px}._3v5f ._3q34{font-size:13px}._7s4d{margin-left:4px;margin-right:4px}._7s4e{display:inline-block;margin-right:12px;padding-top:0;white-space:nowrap}._7s4d,._3q35,._7s4e{color:rgba(0, 0, 0, .40);font-size:11px;font-weight:400}._364g,._3q34,._3q35{margin-right:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._7s4c{margin-right:0}._3ggt{background-color:rgba(0, 0, 0, .03);color:rgba(0, 0, 0, .40);font-size:11px;padding-bottom:4px;padding-left:10px;padding-top:4px}._jg2{background-color:#4bcc1f;border-radius:4px;height:8px;margin-right:12px;position:relative;top:18px;transform:translateY(-50%);width:8px}._4pfj{padding:8px 0;text-align:center}._1kqm{margin-right:16px;margin-top:4px}._5rh4,._5qsj{color:rgba(0, 0, 0, .40);line-height:32px;margin-right:16px}._5rh4{font-size:11px}._5qsj{font-size:12px;margin-right:8px}._rwo{display:none;margin-right:14px;margin-top:8px}._rwn ._rwo,._5l37:hover ._rwo{display:block}._rwn ._5qsj,._5l37:hover ._5qsj{display:none}._5l39 ._2poo{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-64px -607px}._5l39 ._2pop{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-34px -607px}._5l39 ._2pom,._5l39 ._2pon{height:14px;width:14px}._5l37:active ._2poo,._1k1p ._2poo{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-79px -607px}._5l37:active ._2pop,._1k1p ._2pop{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-49px -607px}.fbChatTypeahead ._5l38,.fbChatTypeahead ._5l37:first-of-type ._5l38,.fbChatTypeahead ._1k1p ._5l38,.fbChatTypeahead ._1k1p+._5l37 ._5l38{border-top:none;padding:4px 0}.fbChatTypeahead ._5l37 ._5l39{padding:4px 12px}.fbChatTypeahead ._364g,.fbChatTypeahead ._3q34{font-size:12px}@media all and (max-width: 700px){._jg2{margin-right:10px}} ._llj{border-bottom:1px solid rgba(0, 0, 0, .05);margin-right:-18px;min-height:50px;padding:12px;position:relative}._2eu_._llj{border-bottom:none;padding:4px 0;width:100%}._2eu_ ._llk .img{border:1px solid rgba(0, 0, 0, .10);border-radius:5px;margin-left:4px;margin-top:1px}._2eu- ._llk{margin-right:12px}._llq{color:rgba(0, 0, 0, 1);font-size:16px;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap}._llj ._llq{line-height:normal}._1n-e{color:rgba(0, 0, 0, .40);font-size:12px}._2eu_ ._lll{padding-right:9px;padding-top:2px}._2eu_ ._1n-e{color:#90949c;font-size:11px;line-height:12px;margin-bottom:3px}._36zg{color:rgba(0, 0, 0, 1)}._2eu- ._36zg{margin:4px 0 2px}._2eu_ ._36zg{color:#000}div ._llj ._2poo{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-51px -1199px}div ._llj ._2pop{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-34px -1199px} ._2k8v{font-size:12px;height:18px;padding:12px 0 12px 20px;text-align:center}.__i_{margin:0 10px 0 0;padding:0 20px 0 0;position:relative}._17pz{margin:0}._4xu0{align-items:center;display:flex;flex:1 0 0%;justify-content:center}.safari.webkit ._4xu0{-webkit-align-items:center;-webkit-flex:1 0 0%;-webkit-justify-content:center;display:-webkit-flex}@media all and (min-width: 920px){.__i_{font-size:14px}.__i_._7i2k{font-size:15px}.__i_ ._pye{font-size:12px}.__i_ ._7ilw,.__i_ ._7mv7{font-size:13px}.__i_._7i2k ._7ilw,.__i_._7i2k ._7mv7{font-size:14px}.__i_ ._pye._7ilx{font-size:14px}.__i_._7i2k ._pye._7ilx{font-size:15px}}@media all and (min-width: 1600px){.__i_{font-size:16px}.__i_ ._pye{font-size:14px}.__i_ ._pye ._7ilw,.__i_ ._pye ._7mv7{font-size:13px}.__i_ ._7ilw,.__i_ ._7mv7{font-size:15px}.__i_ ._pye._7ilx{font-size:16px}}._3v5f .__i_,._3v5f .__i_ ._pye._7ilx{font-size:14px}._7kkj .__i_,._7kkj .__i_ ._pye._7ilx{font-size:13px}._69xg:hover,._69xg:focus{opacity:1}._69xi{left:1px;position:relative;top:1px}._69xg{background-color:#fff;border:1px solid #ccd0d5;border-radius:50%;box-sizing:border-box;clear:both;display:flex;float:right;height:30px;margin:10px;padding:5px;position:absolute;transform:translate(15%, -50%);width:30px}._3v5f .__i_ ._pye{font-size:12px} ._1t2u{border-left:1px solid rgba(0, 0, 0, .20);display:flex;flex:3;flex-direction:column;min-width:0}._7sli{border-left:1px solid rgba(0, 0, 0, .10)}._6yms{height:32px;width:32px}._6y4z{border-radius:99px;height:32px;position:absolute;width:32px;opacity:.2}._wsc{display:flex;flex:3;flex-direction:column;min-width:0}.safari.webkit ._wsc,.safari.webkit ._1t2u{display:-webkit-flex;-webkit-flex:3;-webkit-flex-direction:column}._1wfr{padding:0 0 0 12px;position:relative}._7kkj ._1wfr{padding:0 0 0 8px}._20bp{display:flex;flex:1 1 0%;flex-direction:row-reverse}.safari.webkit ._20bp{display:-webkit-flex;-webkit-flex:1 1 0%;-webkit-flex-direction:row-reverse}._4_j4{flex:2 0 0%;overflow:hidden;position:relative;display:flex;flex-direction:column}.webkit-legacy ._4_j4{-webkit-box-direction:normal}.safari.webkit ._4_j4{-webkit-flex-direction:column;-webkit-flex:2 0 0%;display:-webkit-flex}@media all and (max-width: 920px){._4_j4{flex:1 1 0%}.safari.webkit ._4_j4{-webkit-flex:1 1 0%}}._2fg6{border:2px solid rgba(0, 132, 255, .2);bottom:0;left:0;pointer-events:none;position:absolute;right:0;top:0}._1ut7{flex:1 1 0%}.safari.webkit ._1ut7{-webkit-flex:1 1 0%}._4_j4 .chatAttachmentShelf{background-color:#fff;border-top:1px solid #ccd0d5;font-size:10px;max-height:72px;overflow-x:hidden;overflow-y:auto;position:relative} ._673w{border-bottom:1px solid rgba(0, 0, 0, .10);box-sizing:border-box;height:50px;padding:8px;position:relative;text-align:center;z-index:201}._6ynl{align-items:center;border-bottom:none;box-shadow:0 1px 2px 0 rgba(0, 0, 0, .10);display:flex;height:60px;justify-content:space-between;padding-left:16px}._6ynn{align-items:flex-start;display:flex;flex-direction:column;height:32px;justify-content:center}._5743{display:inline-block;overflow:hidden;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}._1_fz ._17w2._6ybr,._17w2._6ybr{font-size:15px;font-weight:bold}._17w2{color:rgba(0, 0, 0, 1);font-size:14px;font-weight:400}._6ynm{display:flex;justify-content:center;margin-left:2px;margin-right:12px}._1_fz ._5743._6y4y,._5743._6y4y{align-items:center;display:flex;font-size:14px;padding:0}._1_fz ._5743{padding:7px 0}._1_fz ._5743,._1_fz ._17w2{font-size:16px;font-weight:500}._2v6o,._5eu7,._6krh{color:rgba(0, 0, 0, .40);font-size:12px;font-weight:normal;margin-top:2px;vertical-align:middle}._5eu7::before{content:', '}._5f06 ._fl2{padding:0}._1cwz{position:absolute;top:50%;transform:translateY(-50%)}._fl2._6ymr{align-items:center;bottom:0;display:flex;padding:9px 0 9px 8px;position:initial;right:0;top:0}._fl2{bottom:0;line-height:0;padding:9px 8px;position:absolute;right:0}._5f06 ._fl2 a{height:50px;width:50px}._fl2 a{display:inline-block;height:32px;outline:none;padding:0;width:32px}._fl2 li{display:inline-block;margin-right:12px;padding:0}._fl2 li:last-child{margin-right:0}._6f6k{margin-right:3px}._3qfl{background:#42b72a;border-radius:50%;height:5px;margin:-19px 0 0 33px;position:absolute;vertical-align:middle;width:5px} ._4eby{background:#fff;border:0;border-radius:6px;box-shadow:0 2px 8px 0 rgba(0, 0, 0, .20);box-sizing:border-box;-webkit-font-smoothing:antialiased;position:relative}._2c9g{padding:24px}._2c9g ._4ebz{font-size:16px;font-weight:500;margin-bottom:16px}._2c9i ._4ebz{border-bottom:1px solid rgba(0, 0, 0, .10);height:50px;line-height:50px}._2c9i ._19jt{color:rgba(0, 0, 0, 1);font-size:16px;font-weight:500;margin:0 auto;max-width:50%;text-align:center;vertical-align:middle}._4ebz ._2t_,._4ebz ._2u0{box-sizing:border-box;max-width:25%;padding:0 16px}._6q1a ._4ebz ._2t_,._6q1a ._4ebz ._2u0{margin:0;padding:8px 10px}._4ebz ._2t_{position:absolute;right:0;top:0}._6q1a ._4ebz ._2t_{right:10px;top:10px}._4ebz ._2u0{left:0;position:absolute;top:0}._6q1a ._4ebz ._2u0{left:10px;top:10px}._4ebz ._2t_,._4ebz ._2u0,._4ebz ._19jt{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._4eb-{font-size:14px;font-weight:400;margin-bottom:24px}._4eb- a{color:#0084ff}._2_d1{font-size:13px;margin-top:4px}._2_d1 a{color:#0084ff}._4eby ._5ixy{font-size:16px}._4eb_ ._30vt:not(:last-child):after{border-left:1px solid rgba(0, 0, 0, .10);content:'';margin:0 16px}._6q1a ._4eb_ ._30vt:not(:last-child):after{margin:0 8px}._4ebx ._59s7{box-shadow:none;font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif}.__6g ._4ebx ._59s7{font-family:SFUIText-Regular, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif}._4ebx ._59s7>div{background:transparent}._4eby label,._4eby input,#facebook ._4eby ._58al{font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif}.__6g ._4eby label,.__6g ._4eby input,#facebook .__6g ._4eby ._58al{font-family:SFUIText-Regular, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif} ._5jpt{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:auto;padding:10px;pointer-events:none;width:100%}._2pen{max-height:40px} ._4pcn{display:block}._4pcn._2uf4{text-decoration:none}._2uf5{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-68px -556px;display:inline-block;height:16px;margin-right:6px;vertical-align:text-bottom;width:16px}._nd_ ._2uf5{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-34px -573px} ._9hq ._1_xb{opacity:0} ._1e1o{padding-bottom:24px}._1e1n{font-size:12px}._1e1n .img{vertical-align:middle} ._4niv._4niv{width:auto}._2p_9{align-items:center;cursor:pointer;display:flex;flex-direction:row;justify-content:flex-start;padding:10px}._6sml{cursor:pointer}._3jre{align-items:center;display:flex;flex-direction:column}._3jrf{margin-bottom:-40px;position:relative;top:-40px}._2p_d{cursor:pointer;font-size:15px;padding:6px 12px}._79d9{font-size:16px}._79da{font-size:20px}._2p_c{overflow:hidden;padding-left:10px;text-overflow:ellipsis;white-space:nowrap}._3e7u ._2p_c{font-size:16px}._3e7u ._2p_d{font-size:12px}._2opw{border-top:1px solid rgba(0, 0, 0, .10);color:#0084ff;display:block;padding:0 10px}._2opw:active{opacity:.2}._2opw:hover{text-decoration:none} ._1jt6{display:flex;padding:0 14px 16px 14px;word-break:break-word}.safari.webkit ._1jt6{display:-webkit-flex}._3-ne{align-items:center;display:flex;margin-left:8px;width:16px}.safari.webkit ._3-ne{-webkit-align-items:center;display:-webkit-flex}._2jnq{display:flex;flex:1 1 0%;min-width:0}.safari.webkit ._2jnq{-webkit-flex:1 1 0%;display:-webkit-flex}._2jnt{display:flex;flex:1 1 0%;flex-direction:column;justify-content:center;margin-left:10px;overflow:hidden}._2jnt._6_m-{align-items:center;flex:1 1 auto;margin-left:0;margin-top:12px}.safari.webkit ._2jnt{-webkit-flex-direction:column;-webkit-flex:1 1 0%;-webkit-justify-content:center;display:-webkit-flex}._1sw_{cursor:pointer}._3eur._6ybk a{color:#000}._3eur._6ybk{color:#000;display:flex;font-size:20px;font-weight:bold;text-align:center;white-space:initial}._3eur{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._3eus._6_mz{font-size:14px}._3eus,._5uh{color:rgba(0, 0, 0, .40);font-size:12px;margin-top:2px}._2jnq._6_mw{align-items:center;flex-direction:column;padding:6px 0 4px}.safari.webkit ._2jnq{-webkit-flex:1 1 0%;display:-webkit-flex}.ie11 ._2jnu{height:22px}._2jnv{border:1px solid transparent;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._2jnv:hover{border:1px solid rgba(0, 0, 0, .10)}._2jnt.disabled ._2jnv:hover{border:1px solid transparent}._2jnt.disabled{pointer-events:none}._2jnx._6y4x{display:flex;flex-direction:column}._2jnv,._2jnx,._2jnz,._2jnx ._30e7 ._5j5f{color:rgba(0, 0, 0, 1);font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;font-size:16px}._3v5f ._2jnv,._3v5f ._2jnx,._3v5f ._2jnz,._3v5f ._2jnx ._30e7 ._5j5f{font-size:14px}._2jnz._30e7 ._5j5f{border:none;display:block;padding:0;white-space:nowrap}._2jnz ._5j5l{display:none}._2jnx{align-items:center;display:flex;flex:1 1 0%}.safari.webkit ._2jnx{-webkit-flex:1 1 0%;display:-webkit-flex}._2jn-{line-height:22px;margin-left:8px}._2jny{flex:1 1 0%;margin-left:2px;outline:1px solid rgba(0, 0, 0, .10);overflow:hidden}.safari.webkit ._2jny{-webkit-flex:1 1 0%}._2jnx ._58ak{display:block}._2jnr{position:relative}._2jnr ._2lyz{background:rgba(0, 0, 0, .4);border-radius:50%;bottom:0;color:#fff;display:block;left:-10000px;line-height:64px;overflow:hidden;position:absolute;right:0;text-align:center;text-decoration:none;top:0}._2jnr:hover ._2lyz{left:0}._2jnr._2jns:hover ._2lyz{left:-10000px}._2jnr:hover ._2lyy{height:50px;position:absolute;top:0;width:50px}._80cm{align-items:center;background:#fff;border-radius:4px;box-shadow:0 0 8px rgba(0, 0, 0, .1);display:flex;font-weight:bold;opacity:1;padding:8px 12px 8px 8px;position:relative}._2jnw{align-items:center;background:rgba(255, 255, 255, .4);bottom:0;display:none;justify-content:center;left:0;position:absolute;right:0;top:0}._2jns ._2jnw{display:flex} ._2f3x{color:#f03d25} ._497p{color:rgba(0, 0, 0, .40);font-size:12px;margin:15px 0;text-align:center}._3kyl{color:rgba(0, 0, 0, .40);font-size:12px}._2lpt{display:block;font-weight:500;margin:12px 0 12px 20px;text-transform:uppercase}._3no3{color:red}._uwa{display:inline-block;height:12px;margin-right:6px;padding-bottom:1px;vertical-align:middle;width:12px}._ofg{padding-left:.3em}._1jvn{color:#0084ff}._uwb ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-52px -1310px}._uwc ._uwa{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-52px -637px}._uwe ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-26px -1323px}._uwf ._uwa,._uwh ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-13px -1323px}._uwg ._uwa,._uwi ._uwa{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-39px -637px}._3no3 ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:0 -1323px}._uwj ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-65px -1310px}._uwk ._uwa{background-image:url(/rsrc.php/v3/yt/r/zm4_DrK4Rrx.png);background-repeat:no-repeat;background-size:92px 1346px;background-position:-78px -1310px}._41-9{float:right;height:14px;width:14px}._11es ._uwa{display:none} ._o46{position:relative;white-space:pre-wrap}._o46 ._3058{clear:left;float:left;word-wrap:break-word}._3xsz{box-shadow:inset 0 0 10px #fc0}._6q1a ._3xsz{box-shadow:0 0 0 2px white, 0 0 0 4px #f5c33b}._o46._3i_m ._3058{clear:right;float:right}._3058._15gf{margin:1px 0;width:100%}._3058._15gf._3duc{width:auto}._3zvs{clear:right;float:left;position:relative}._o46._3i_m ._3058._15gf ._3zvs._2-x3,._3zvs._2-x3{width:85%}._6q1a ._3zvs._2-x3{max-width:1000px}._7kkj ._2-x3{max-width:160px}._o46._3i_m ._3058._15gf ._2poz,._o46._3i_m ._3zvs{float:right}._29_7 ._3058._15gf ._2poz{float:left}._4jzq{clear:both;float:right;margin:2px 0 4px;position:relative;right:-18px}._o46:last-child ._4jzq{margin-bottom:0}._4jzq._jf5{bottom:0;margin:0;position:absolute}._3058._2ygi{color:#f03d25;cursor:pointer;font-size:12px;font-weight:400;margin-top:2px}._o46:not(:last-child) ._2ygi{margin-bottom:2px}._3i_m ._8r4c{bottom:-3px;display:inline-block;position:absolute;right:-15px;vertical-align:middle}._ui9{outline:none}._wiu{padding:10px}._o46 ._ih-{border-radius:.3em;margin-top:-1px;padding:1px 2px;text-decoration:none}._6q1a ._o46 ._ih-,._6q1a ._o46 ._ih-:hover,._6q1a ._o46._3i_m ._ih-,._6q1a ._o46._3i_m ._ih-:hover{background-color:#e7f1fe;color:#0d54af}._6q1a ._o46 ._1zle,._6q1a ._o46 ._1zle:hover{background-color:#ffe8a8;color:#444950}._o46 ._ih-:hover{background-color:rgba(0, 0, 0, .05)}._o46._3i_m ._ih-{background-color:rgba(255, 255, 255, .33)}._q4a{margin-bottom:18px}._7w6w ._3xsz{background-color:#fef2d1;box-shadow:none}._7w6w ._15gf{float:left;margin:8px 0;max-width:776px;width:calc(100% - 128px)}._7w6w ._3erg ._3zvs{float:left}._7w6w ._3zvs ._40fu{position:absolute;right:-24px;top:8px}._7w6w ._q4a{margin-bottom:2px}._7w6w ._29_7 ._4jzq._ba3{bottom:8px}#facebook ._7w6w ._4jzq{bottom:16px;position:absolute;right:24px}@media all and (min-width: 920px){._29_7 ._4jzq{bottom:0;margin:0;position:absolute}._29_7 ._4jzq._ba3{bottom:-17px}}._8d3y{margin-top:10px} ._511c ._1t_p{margin:0 12px 15px 12px;padding-right:18px}._1t_s{left:32px;position:relative}._1t_p{margin-bottom:15px;position:relative}._1t_q ._1t_r{bottom:2px;position:absolute}._35fy ._1t_q ._1t_r{bottom:20px}._5tx1 ._1t_q ._1t_r{top:50%;transform:translateY(-50%)}._41ud{margin-left:36px}._41ud ._5r8z{margin-right:36px}._ih3{color:rgba(0, 0, 0, .40);font-size:12px;font-weight:normal;line-height:1.28;margin-bottom:1px;overflow:hidden;padding-left:12px;text-overflow:ellipsis;white-space:nowrap}._-ne{height:0;opacity:0}._1t_p._1hbw{clear:left;float:left;margin-left:0}._1hbw ._5pd7{animation-name:messengerTypingAnimation;background-color:rgba(0, 0, 0, .60);border-radius:50%;height:6px;margin-right:4px;vertical-align:middle;width:6px}._1hbw ._5pd7:last-child{margin-right:0}._1t_q ._1t_r,._1t_q ._4ldz,._1t_q ._4ld-,._1t_q ._4ld- img{max-height:28px;max-width:28px}@keyframes messengerTypingAnimation{0%{transform:translateY(0px)}28%{transform:translateY(-6px)}44%{transform:translateY(0px)}}._1t_q ._4ld_{bottom:-2px;right:-2px}._1t_q ._2pom,._1t_q ._2pon{height:12px;width:12px}._1t_q ._2poo{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-78px -637px}._1t_q ._2pop{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-65px -637px}._7w6w ._1t_s{left:0;position:relative}._7w6w ._41ud{margin-left:0}@media all and (min-width: 920px){._35fy ._1t_q ._1t_r{bottom:2px}}#facebook ._7w6w ._1t_q ._4ld-{margin-left:16px;max-height:32px;max-width:32px}#facebook ._7w6w ._1t_q ._4ld- .img{max-height:32px;max-width:32px}#facebook ._7w6w ._1hbw ._3erg:hover{background:transparent} ._jf2,._jf3{border-radius:50%;display:inline-block;height:15px;margin-left:3px;overflow:hidden;vertical-align:middle}._jf2{width:15px}._jf4 ._jf3{background-color:rgba(0, 0, 0, .05);border-radius:8px;color:rgba(0, 0, 0, .40);font-size:11px;font-weight:bold;line-height:15px;margin:0;padding:0 4px;text-align:center}._7w6w ._3erg:hover ._jf4{display:none} ._4wzq{display:flex;justify-content:center;position:absolute;text-align:center;transform:translate3d(0, -31px, 0);transition:transform .2s;width:100%;z-index:30}.safari.webkit ._4wzq{-webkit-justify-content:center;display:-webkit-flex}._4wzq._4wzr{transform:translate3d(0, 0, 0)}._4wzq._4-je,.safari.webkit ._4wzq._4-je{display:none}._4wzs{background-color:rgba(98, 100, 102, .98);border-radius:0 0 4px 4px;color:#fff;display:flex;font-size:13px;font-weight:500;padding:6px 8px;position:absolute}.safari.webkit ._4wzs{display:-webkit-flex}._4wzs:hover{text-decoration:none}._4wzt{vertical-align:text-bottom}._1bqr{display:inline-block;margin-left:6px;overflow:hidden;white-space:nowrap}@media all and (max-width: 700px){._1bqr{display:none}} ._2n8h{clear:both;margin:1px 0;white-space:normal;width:100%}._2n8h._5fk1{max-width:100%}._4h13 ._2n8h{margin-bottom:0;margin-top:0}._2n8i{float:left;line-height:0;width:auto}._nd_ ._2n8i{float:right;text-align:right}._4tsk{background-position:center;background-repeat:no-repeat;background-size:cover;box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .1);display:inline-block;line-height:0;position:relative}._2n8g ._4tsk{border-radius:4px;margin-left:3px}._4rf-{box-shadow:none;visibility:hidden}._4tsl{bottom:0;left:0;position:absolute;right:0;text-decoration:none;top:0}._2n8i ._4tsk ._5pf5{cursor:pointer;max-height:450px;opacity:0;width:100%}._2poz._2n8i{max-width:100%}._2n8i ._4tsk{max-width:100%}._7atr{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}._4tsk._3etv{background-color:rgba(0, 0, 0, .05);height:206px;position:relative;width:206px}._4ksi ._4tsk:first-child{margin-left:0}._2n8k ._4tsk{padding-bottom:31.96%;width:31.96%}._7kkj ._2n8k ._4tsk{padding-bottom:30.96%;width:30.96%}._4ksk ._4tsk{padding-bottom:48.6%;width:48.6%}._7kkj ._4ksk ._4tsk{padding-bottom:47.6%;width:47.6%}._4ksk ._4tsk._3etv,._2n8k ._4tsk._3etv{height:0}._4tsk._3etv ._3qh2{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%)}._nd_ ._2n8h ._2n8g:first-child ._4tsk:first-child,._29_7:first-of-type ._2n8h ._2n8g:first-child ._4tsk:first-child{border-top-left-radius:1.3em}._29_7 ._2n8h ._2n8g:first-child ._4tsk:last-child,._nd_:first-of-type ._2n8h ._2n8g:first-child ._4tsk:last-child{border-top-right-radius:1.3em}._nd_ ._2n8h ._2n8g:last-child ._4tsk:first-child,._29_7:last-of-type ._2n8h ._2n8g:last-child ._4tsk:first-child{border-bottom-left-radius:1.3em}._29_7 ._2n8h ._2n8g:last-child ._4tsk:last-child,._nd_:last-of-type ._2n8h ._2n8g:last-child ._4tsk:last-child{border-bottom-right-radius:1.3em}._ccr{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%)}._ccs{bottom:16px;color:#fff;position:absolute;right:12px}._7kkj ._ccq{max-width:180px}._2n8i ._ccq ._ccr{opacity:.7}._2n8i ._ccq:hover ._ccr{opacity:1}._2n8i ._ccq img._ccr,._2n8i ._ccq:hover img._ccr{width:auto}._3o67{overflow:hidden}._nd_ ._2n8g{text-align:right}._5fk1:focus{outline:none}#facebook ._7w6w ._2n8h._5fk1 ._4tsk{border-radius:6px;box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .1);float:left;margin-bottom:4px;overflow:hidden}#facebook ._7w6w ._4tsk,#facebook ._7w6w ._5pf5{background-color:#fff;border-radius:6px;overflow:hidden} ._16zz{background:linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));bottom:0;height:88px;position:fixed;transition:opacity .2s;width:100%;z-index:2}._4dy9{display:inline-block;overflow:hidden;position:relative}._42rl{background-position:50% 50%;background-size:cover;box-sizing:border-box;display:inline-block;flex:0 0 68px;height:68px;margin-left:6px;margin-right:6px;width:68px}._q1a{background-position:50% 50%;background-size:cover;box-shadow:inset 0 0 0 1000px rgba(0, 0, 0, .7)}._3por{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-49px -158px;height:40px;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);width:40px}._2n5b{background:rgba(0, 0, 0, 1);border:0;bottom:10px;cursor:pointer;height:68px;position:absolute;right:0;width:68px}._463g{background:rgba(0, 0, 0, 1);position:relative}._463h{align-items:center;background:rgba(0, 0, 0, 1);box-sizing:border-box;display:flex;height:88px;justify-content:space-between;overflow:hidden;position:relative}._463j{background:rgba(0, 0, 0, 1);line-height:0;white-space:nowrap}._4dy9{display:inline-block;flex-grow:1;overflow:hidden}._42rl ._3603:after{bottom:8px;right:8px}._q1a ._3603:after{-webkit-filter:brightness(25%)} ._3c1i{align-items:center;background:linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,0));box-sizing:border-box;height:120px;justify-content:space-between;padding:24px 24px 66px 24px;position:absolute;transition:opacity .2s;width:100%;z-index:1}._322u{display:block;height:120px;opacity:.4;position:absolute;top:50%;transform:translateY(-50%);transition:opacity .2s;width:70px;z-index:1}._3c1k{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-25px -381px}._3oo2{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:0 -381px}._3ooo{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-50px -356px}._2msr{display:inline-block;height:24px;margin-right:8px;vertical-align:middle;width:24px}._4ksl{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-61px -97px;display:inline-block;height:44px;width:22px}._4ksm{transform:scaleX(-1) translateY(38px)}._4kso{transform:translateY(38px)}._2bbb{left:0}._2bbc{right:0}._3c1o{color:#fff;display:inline-block;font-size:14px;margin-left:3px;margin-right:32px;margin-top:2px;outline:none;padding:5px 5px 5px 5px}._3c1o:hover{background-color:transparent;background-color:rgba(255, 255, 255, .15);border-color:transparent;border-radius:2px;color:#fff;text-decoration:none}._387s{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:0 -244px;display:inline-block;height:36px;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);width:36px}._51ok{height:55px;position:absolute;right:18px;top:12px;width:55px;z-index:1} ._4ldz{position:relative}._4ld-{align-items:center;background-color:rgba(0, 0, 0, .05);border-radius:50%;display:flex;justify-content:center;overflow:hidden}._4ld-._7q1r{background-color:unset}._4ld- .img{object-fit:cover}._1wrc{height:60px;width:60px}._4ld_{bottom:-2px;position:absolute;right:-2px}._180i{background:#0084ff;color:#fff} ._12zw{background-color:#fff;border-radius:0 0 6px 6px;max-height:383px} ._4nvn{display:flex;height:50px}._4nvn:hover{background-color:rgba(0, 0, 0, .05);text-decoration:none}._4nvn:active{background-color:rgba(0, 0, 0, .10)}._4nvr{align-items:center;display:flex;padding:0 12px}._4nvs{border-top:1px solid rgba(0, 0, 0, .10);display:flex;flex:1 1 auto;width:0}._4nvn:first-child ._4nvs{border-top:1px solid rgba(0, 0, 0, 0)}._4nvt{display:flex;flex:1 1 auto;flex-direction:column;justify-content:center;padding-right:12px;white-space:nowrap;width:0}._4nv_{color:rgba(0, 0, 0, 1);font-size:14px;overflow:hidden;text-overflow:ellipsis}._4nw0{color:rgba(0, 0, 0, .40);font-size:11px;overflow:hidden;text-overflow:ellipsis}._1j79{align-items:center;color:rgba(0, 0, 0, .40);display:flex;padding-right:12px} ._2m1r{height:540px} ._1wsd{border-bottom:1px solid rgba(0, 0, 0, .10);display:flex;font-size:14px;padding:9px 12px}._1wse{color:rgba(0, 0, 0, .40);padding-right:9px}._1wsg{color:#0084ff;overflow:hidden;text-overflow:ellipsis} ._5y31{border-bottom:1px solid rgba(0, 0, 0, .10);display:flex;min-height:68px}._5y32{align-items:center;display:flex;padding-left:12px}._5y34{display:flex;flex-direction:column;justify-content:center;overflow:hidden;padding:9px 12px}._5y37{font-size:15px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._1apf,._1ydy{color:rgba(0, 0, 0, .30);font-size:14px;overflow:hidden;text-overflow:ellipsis} ._5i_d{border:1px solid rgba(0, 0, 0, .1);border-radius:4px;clear:both;float:left;margin-top:1px;overflow:hidden;position:relative;text-decoration:none;width:100%;z-index:0}._4p_r,._2poz._4p_r{max-width:420px}._2wrf ._5i_d{width:auto}._nd_ ._5i_d{float:right}._5i_d .__6j{margin:0 12px}._5i_d .__6k{color:rgba(0, 0, 0, 1);font-size:14px;font-weight:600;margin-top:6px}._5i_d .__6l{color:rgba(0, 0, 0, 1);font-size:14px;font-weight:normal;margin-bottom:6px;margin-top:6px}._5i_d .__6m{color:rgba(0, 0, 0, .40);font-size:12px;font-weight:normal;margin-bottom:6px;margin-top:6px}._5i_d ._3xn1{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;box-sizing:border-box;margin-right:-1px}._3xn7 ._3xn1{width:100%}._3xn5 ._3xn1,._3xn6 ._3xn1{flex:.20 1 20%;min-width:42px}._3xn5 ._5swm,._3xn6 ._5swm{align-items:center;display:flex;flex:.78 1 78%}._3rnq{padding:0 6px}._3xn5 .__6j,._3xn6 .__6j{display:flex;flex-direction:column}._3xn5{min-height:100px}._3xn5._2e9e{min-height:60px}._3xn5 ._3xn1{flex:.20 1 20%}._3xn3{display:flex}._3xn7._3xn3{display:block}._3xn5._3xn3{flex-direction:row}._3duc:focus{outline:none}._29_7 ._5i_d ._3xn1{border-top-left-radius:4px;border-top-right-radius:1.3em}._nd_ ._5i_d ._3xn1{border-top-left-radius:1.3em;border-top-right-radius:4px}._29_7 ._5i_d ._3xn5 ._3xn1,._nd_ ._5i_d ._3xn5 ._3xn1{border-bottom-right-radius:0;border-top-right-radius:0}._29_7 ._5i_d ._3xn5 ._3xn1{border-bottom-left-radius:4px;border-top-left-radius:4px}._29_7:last-of-type ._5i_d ._3xn5 ._3xn1,._nd_ ._5i_d ._3xn5 ._3xn1{border-bottom-left-radius:1.3em}._29_7:last-of-type ._5i_d ._18o_ ._2e9e ._3xn1,._nd_ ._5i_d ._18o_ ._2e9e ._3xn1{border-bottom-left-radius:0}._29_7:first-of-type ._5i_d ._3xn5 ._3xn1{border-top-left-radius:1.3em}._7w6w ._5i_d{background:transparent;border:none;border-radius:6px;overflow:hidden}._7w6w ._5i_d .__6j{margin:0 12px 0 0}._7w6w ._5i_d .__6k{margin-top:2px}._7w6w ._5i_d .__6m{margin-top:0}._7w6w ._3erg ._5i_d ._3xn1{border-radius:6px;display:block;height:48px;margin-right:10px;max-height:48px;max-width:48px;min-width:48px;width:48px}._7w6w ._5i_d ._3xn1{min-height:48px;padding-bottom:0}._7w6w ._5i_d{margin-top:0}._7w6w ._5i_d,._7w6w ._3xn5{min-height:0}#facebook ._7w6w ._3xn3{display:flex;flex-direction:row}#facebook ._7w6w ._5i_d ._3xn1{border-radius:6px} ._3bl-{bottom:0;box-sizing:border-box;display:block;flex-direction:column;height:100%;left:0;min-width:620px;padding-left:15px;position:fixed;right:0;top:0}._3bly{background-position:50% 50%;background-size:cover;box-sizing:border-box;display:block;float:left;margin:.93%;padding-bottom:14.79%;position:relative;width:14.79%}._3bm0{align-items:center;box-sizing:border-box;font-size:15px;height:70px;padding-right:15px;width:100%}._3bm4{color:#fff;font-weight:500;margin:0 auto;position:relative;top:5px}._3bm2{align-items:center;box-sizing:border-box;color:#fff;display:inline-block;left:25px;max-width:25%;padding-right:5px;position:absolute;top:22px}._3bm2:hover{background-color:transparent;background-color:rgba(255, 255, 255, .15);border-color:transparent;border-radius:2px;color:#fff;cursor:pointer;text-decoration:none}._3bm3{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-37px -207px;display:inline-block;height:36px;vertical-align:middle;width:36px}._8qqx{color:transparent;color:rgba(255, 255, 255, .15);font-size:48px} ._3xo8{height:100%;overflow-y:scroll;padding-right:15px;width:100%}._3xoa{overflow-y:auto;padding-bottom:10px;width:auto} ._1j1h ._3ixn{background:rgba(0, 0, 0, .4)} ._29_7 ._1nqp{float:left}._nd_ ._1nqp{float:right}._nd_ ._1nqp._s1-{max-width:100%}._1-wa{max-width:100%;width:100%}._29_7 ._3czg ._2e-7 ._2e-1,._29_7 ._3czg ._2e-7 ._2e-2{background-color:#d8d8d8;border-bottom-right-radius:1.3em;border-top-right-radius:1.3em;color:#fff}._nd_ ._3czg ._2e-7 ._2e-1,._nd_ ._3czg ._2e-7 ._2e-2{background-color:rgba(0,0,0, .25);border-bottom-left-radius:1.3em;border-top-left-radius:1.3em;color:currentColor}._5sxi ._3czg ._2e-7 ._2e-4{color:currentColor}._3czg ._2e-5{margin-left:16px;margin-right:0}._29_7:first-of-type ._3058:first-child ._3czg ._2e-7 ._2e-1,._29_7:first-of-type ._3058:first-child ._3czg ._2e-7 ._2e-2,._29_7:first-of-type ._3058:first-child ._3czg ._2e-7 ._2e-4{border-top-left-radius:1.3em}._nd_:first-of-type ._3058:first-of-type ._3czg ._2e-7 ._2e-1,._nd_:first-of-type ._3058:first-of-type ._3czg ._2e-7 ._2e-2,._nd_:first-of-type ._3058:first-of-type ._3czg ._2e-7 ._2e-4{border-top-right-radius:1.3em}._29_7:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-1,._29_7:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-2,._29_7:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-4{border-bottom-left-radius:1.3em}._nd_:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-1,._nd_:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-2,._nd_:last-of-type ._3058:last-child ._3czg ._2e-7 ._2e-4{border-bottom-right-radius:1.3em}._3058 ._1nqp ._3czg._4yjw ._2e-6 ._2e-7 ._2e-1{border-bottom-left-radius:0;border-bottom-right-radius:0} ._52xw{color:rgba(0, 0, 0, 1);-webkit-font-smoothing:antialiased;text-shadow:none}._52xw:hover{text-decoration:none}._52ys{background-color:#fff;text-align:center}._2it5{margin:1px -12px -6px -12px}._52xy,._52ys{padding:10px}._52yr{color:#fff;margin-top:6px}._52x_{margin-left:10px}._upk{float:right}._52xw a:hover{text-decoration:none}._52ys,._52xw ._52xz{font-weight:bold}._205d ._52xy{font-weight:bold}._52ys,._52xw ._52x-,._52xw ._52xz{color:#fff}._52xw ._52y0{border-color:rgba(255, 255, 255, .40)}._205d ._52xw{padding:6px 12px}._8kb{max-width:500px} ._3cn0{box-sizing:border-box;color:rgba(0, 0, 0, 1);line-height:1.28em}._29_7 ._205d:not(._4jj7) ._3cn0{border-top-right-radius:1.3em;overflow:hidden}._29_7:first-of-type ._3058:first-of-type ._3cn0{border-top-left-radius:1.3em}._3cn2{position:relative}._3cne{padding:6px 6px 0 6px}._3cnf{padding-bottom:6px}._3cnr{line-height:28px;text-align:center}._205d div._3cno,div._3cno{border-color:rgba(0, 0, 0, .10);color:rgba(0, 0, 0, .40)}._3cnp{border-top:1px solid rgba(0, 0, 0, .10);display:block}._3cnp:hover{text-decoration:none}._3cnp._3cnq{border-top:none}._3cnp,._3cng{font-weight:600}._3cng{position:relative}._3cni{left:0;position:absolute;top:0}._idv{color:rgba(0, 0, 0, 1);display:inline-block;position:relative;text-align:left;width:45%}._idw{display:inline-block;position:relative;text-align:right;width:45%}._3cnh{visibility:hidden;white-space:pre-wrap}._3cnl{display:inline-block;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:pre-line;width:100%;word-break:break-word}._3cng,._3cnn{overflow:hidden;text-overflow:ellipsis;white-space:normal}._3cnl,._3cnn a,._3cnj{color:rgba(0, 0, 0, .40)}._1nc7 ._2pcg ._3cn0,._1nc6 ._2pcg ._3cn0{border:1px solid rgba(0, 0, 0, .10)}._205d ._3cnp{color:#0084ff;font-weight:500;padding:0 10px}._205d ._3cnp:active{opacity:.2}._205d ._3cne{padding:6px 12px 0 12px}._205d ._3cnf{padding-bottom:12px}._3cnr{line-height:32px}._4jj7._205d{border:1px solid rgba(0, 0, 0, .1);border-radius:4px;clear:both;float:left;margin-top:1px;max-width:100%;overflow:hidden;position:relative;width:auto}._urh{max-width:30%}._4idc{line-height:0;max-width:100%}._4id8{margin-top:-3px}._4ida{margin-top:-4px} ._3idt{margin-right:1px;margin-right:10px}._3idu{margin-bottom:9px}._8ka,._1t2u ._29_7 ._3058 ._205d._8ka{border-radius:0;border-style:none;max-width:100%}._2dyr ._10sf{opacity:.5}._2dyr:hover ._10sf{opacity:1}._8ka ._205d ._8rnv{display:none} ._3xb9{display:block;height:32px;width:40px} ._1ti9{display:flex;left:0;position:relative;top:0}._4d6l{background-repeat:no-repeat;border-radius:50%;left:0;overflow:hidden;position:relative;top:0}._1x10{left:0;position:relative;top:0}._3dd6{left:50%;margin:-11px 0 0 -8px;position:absolute;top:50%}._3dd7{left:50%;margin:-12px 0 0 -12px;position:absolute;top:50%}._2u65{color:rgba(0, 0, 0, .4);font-size:12px;margin:4px} ._7w6w ._7w5x{background:transparent;left:-56px;position:relative}#facebook ._7w6w ._s1-._7w6z{border-color:rgba(0, 0, 0, .3);border-radius:0;border-width:0 0 0 3px;color:#606770;margin:8px 0;padding:24px 8px 4px 12px}._7w6w ._7w5y{color:#606770;font-size:15px;font-weight:500;left:72px;position:absolute;top:13px}._7w6w ._7w6-{font-size:15px;line-height:20px;max-width:776px;padding-right:128px}#facebook ._7w6w ._s1-{background-color:transparent;border-color:transparent;border-radius:0;padding:0;position:static}._7w6w ._nd_ ._s1- a{color:#373e4c}._7w6w ._7w74{margin:0;padding:0}._7w6w ._7w7i{z-index:2}._7w6w ._7w75{display:flex;flex-direction:column;padding:0}._7w6w ._nd_ ._40fu{float:left}._7w6w ._7w5v{margin-left:56px;text-align:left;text-transform:initial}._7w6w ._3erg{padding:4px 16px 4px 56px}._7w6w ._3erg:hover,._7w6w ._3erg:hover>._3erg{background-color:#f5f6f7}._7w6w ._3erg._3058:hover{background-color:transparent}#facebook ._7w6w ._3erg ._2poz{position:relative}#facebook ._7w6w ._pye{color:rgba(0, 0, 0, .6)}#facebook ._7w6w ._mh6 ::selection{background:rgba(0, 132, 255, .2)}#facebook ._7w6w ._8i2r{top:-8px}#facebook ._7w6w ._pye{margin-bottom:0;margin-top:4px}._7w6w ._8lmp{left:16px;position:absolute;top:8px;z-index:1}._7w6w ._7w76{margin-bottom:0}._7w6w ._8lmq{color:#1c1e21;font-size:15px;font-weight:600;left:56px;position:absolute;top:4px;z-index:1}._7w6w ._7w76:hover ._8lmr{display:inline}._7w6w ._8lmr{color:#606770;display:none;font-size:13px;font-weight:normal;padding-left:8px}._8lms{left:-16px;position:absolute;top:0}#facebook ._7w6w ._8lma{padding-top:24px}#facebook ._7w6w ._8r-6{background-color:#fff9d1}#facebook ._7w6w ._8wpq:not(._8r-6){background-color:#fffdf2}#facebook ._7w6w ._310t{background-color:#fff;border:1px solid #ccd0d5;border-radius:6px;box-shadow:0 0 0 1px rgba(0, 0, 0, .15);overflow:hidden;padding:12px}._8wfp{background-color:#1877f2;border-radius:16px;bottom:72px;box-shadow:0 2px 8px 0 var(--fds-black-alpha-10);color:#fff;left:50%;opacity:.9;padding:8px 16px;position:absolute;transform:translateX(-50%)}._8wfp:hover{opacity:1;text-decoration:none}._7w6w ._7pj4{justify-content:flex-end} ._54v0{padding:19px 39px}._54v1{padding:14px 10px}._618k{padding:19px 14px 14px 14px}._54v3{background:url(/rsrc.php/v3/yF/r/A1VaeY-VzWU.png) no-repeat;background-position:0 4px;background-size:11px 11px;color:#1c1e21;display:inline;font-size:14px;line-height:16px;overflow:hidden;padding-left:16px;text-align:left}._618l{align-items:center;color:rgba(0, 0, 0, .75);display:flex;flex-direction:row;font-size:20px;justify-content:center}._618m{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-15px -622px;height:14px;margin:2px 5px 0 1px;width:14px}._54v6{color:#4b4f56;font-size:12px;line-height:15px;text-align:left}._618n{color:rgba(0, 0, 0, .60);font-size:12px;line-height:15px;text-align:center}._4xa_{margin:10px 0 10px 0}._1r3p{margin:19px 0 14px 0}._16l_{text-align:center}._16m0{color:#3578e5;font-size:12px;line-height:14px}._16m4,._4xb1{color:#90949c;font-size:10px;line-height:14px;text-align:center}._1r3o{color:rgba(0, 0, 0, .40);font-size:12px;text-align:center}._54v2{margin-bottom:5px;text-align:left}._1z7j{width:282px} ._7qmy{display:block;font-size:12px;margin-bottom:8px}._7qmu{margin-right:10px}._7qme{margin-bottom:9px}._7qmd,._51l0 ._29_7 ._3058 ._7qm8._7qmd{border-radius:0;border-style:none;max-width:100%}._7qmt ._10sf{opacity:.5}._7qmt:hover ._10sf{opacity:1}._7qmx{background-color:#ebedf0;border-radius:4px;padding:12px 36px;white-space:normal}._7qmf{visibility:hidden}._7qmw{position:absolute;width:128px}._7qmv{position:absolute;width:428px} ._tih{overflow:hidden}._49or{background-color:#fff;min-width:170px}._4cra{display:flex;flex-direction:column;justify-content:center}._3rnp{line-height:0}.__nm._49ou .__6j{margin:6px 8px}._49or._5k0r{min-width:14px}._49or .__6j,._324d .__6j{margin-bottom:4px;margin-left:4px;margin-right:6px;margin-top:4px}._5rw4{position:static}._1z_6{position:relative;top:-25px}._18p0{align-items:center;border-top:1px rgba(0, 0, 0, .1) solid;display:flex;height:30px;justify-content:center;position:relative;text-align:center}._18p1{color:#0084ff}._18oz .__6k{font-weight:normal}._18oz .__6l{display:none}._vjv._5rw4{position:absolute}._5rw4:hover{text-decoration:none}._5rw4:hover .__6k{text-decoration:underline}._tii{display:block;margin:20px auto}.__6k{color:#1d2129;font-weight:600;overflow:hidden}._324d .__6k,._49or .__6k{font-size:12px;line-height:16px;max-height:32px}._324d ._1dw9,._49or ._1dw9{max-height:16px}._324d ._2xsq.__6k,._49or ._2xsq.__6k{font-size:11px;line-height:14px;max-height:70px}._324d .__6k{margin-right:9px}.__6l{color:#1d2129;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._324d .__6l,._49or .__6l{font-size:12px;line-height:16px}.__6m{color:#90949c;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._324d .__6m,._49or .__6m{font-size:10px;line-height:16px}._tij{position:absolute;right:5px;top:5px}._8mjb{display:grid}._4crc{cursor:pointer}._1nc6 ._3fyk{padding:4px 5px 3px 6px}._1nc7 ._3fyk{padding:4px 6px 3px 5px}.__6j._43kk{border-bottom:6px solid white;border-left:10px solid white;border-right:10px solid white;border-top:6px solid white;margin-bottom:0;margin-left:0;margin-right:0;margin-top:0}._3dug.__6j._43kk{margin:0}._6ude{flex-flow:column} ._29ew{clear:both;display:flex}._29ex{border-radius:50%;flex-grow:0;vertical-align:middle}._29ey{flex-grow:1;flex-shrink:0;vertical-align:middle}._439n{align-self:flex-end;flex-grow:0} ._4kgv ._4qeb{border-radius:50%;overflow:hidden}._asv{align-items:center;background-color:rgba(0, 0, 0, .05);display:flex;justify-content:center;overflow:hidden}._asw{background:#0084ff;color:#fff}._asv._asw{margin-right:0} ._7q1j{display:flex;flex-shrink:0;position:relative}._7t0d{display:flex}._7q1k{border-radius:50%}._7q0v{border-radius:50%;overflow:hidden;position:absolute;right:0;top:0}._7q1i{border-radius:50%;bottom:0;left:0;overflow:hidden;position:absolute}._7q1l{border-radius:50%;overflow:hidden;position:absolute;right:0}._7q1m{border-radius:50%;left:50%;overflow:hidden;position:absolute}._7q1n{border-radius:50%;left:0;overflow:hidden;position:absolute}._7q1p{align-items:center;background-color:rgba(0, 0, 0, .05);display:flex;justify-content:center}._7q1q{color:#000;font-size:18px;font-weight:600;padding-left:4px} ._87u_{position:relative}._87v3{border-radius:50%}._87v2{background-color:#42b72a;border-radius:50%;bottom:0;position:absolute;right:0} ._1mjb{color:rgba(153, 153, 153, 1);font-size:14px;height:30px;white-space:nowrap}._1mjb object{height:0;width:0}._1mjb a:hover{text-decoration:none}._1mj2{display:inline-block;float:left;height:30px;position:relative}._1mj4{height:30px;left:0;overflow:hidden;position:absolute;top:0}._1mj3 ._1mj4{border-right:1px solid #657fb1;transition:all .2s linear}._3__- ._1mj3 ._1mj4{border-right:none}._1miz{background-color:#fff;border:1px solid #ccc;display:block;height:28px}#facebook ._7w6w ._2e-7 ._1miz{border-radius:0}._7w6w ._1mjb._2poz{border-radius:6px}._3__- ._1miz{background-color:#f1f0f0;border:1px solid transparent}._3__- ._3e5f._1miz{background-color:#4080ff}._4yjw ._1miz{border-bottom:1px solid #ccc}._16ys ._1miz{border-top:1px solid #ccc}._1mj4 ._1miz{border-color:#4267b2}._3__- ._1mj4 ._1miz{border-color:transparent}._1miz,._1mi-,._1mj0{border-radius:12px}._4yjw ._1miz,._4yjw ._1mi-,._4yjw ._1mj0{border-bottom-left-radius:0;border-bottom-right-radius:0}._1mj4 ._1miz{background-color:#7596c8;color:#fff}._3__- ._1mj4 ._1miz{background-color:rgba(0, 0, 0, .20)}._dzj ._3__- ._1mj4 ._3e5f._1miz{background-color:rgba(255, 255, 255, .15)}._1mj4 ._1mi-,._1mj4 ._1mj0{color:#fff}._1mjb ._1mj2 ._1mj4 ._1miz:hover{background-color:#7596c8}._3__- ._1mjb ._1mj2 ._1mj4 ._1miz:hover{background-color:transparent;background-image:linear-gradient( rgba(0, 0, 0, .10), rgba(0, 0, 0, .10) )}._dzj ._3__- ._1mj4 ._3e5f._1miz:hover{background-image:linear-gradient( rgba(255, 255, 255, .3), rgba(255, 255, 255, .3) )}._1mj1{border-bottom:2px solid #e5e4e4;height:0;margin-left:28px;margin-right:44px;padding-top:13px}._3__- ._1mj1{border-bottom:2px solid #4b4f56}._3__- ._3e5f ._1mj1,._1mj4 ._1mj1{border-bottom-color:#fff}._1mi-{background:transparent;float:left;padding:0 10px}._1mj0{background:transparent;color:rgba(153, 153, 153, 1);display:inline-block;float:right;font-size:12px;line-height:28px;padding:0 10px}._3__- ._1mj0{color:#4b4f56}._3__- ._3e5f ._1mj0,._3__- ._1mj4 ._1mj0{color:#fff}._1mj5{color:rgba(153, 153, 153, 1);display:block;line-height:28px;position:relative;vertical-align:middle}._3qi6{padding:0 10px}._1mj7{display:inline-block;font-size:12px;font-weight:bold;height:28px;vertical-align:middle}._1mj8{display:inline-block;font-size:12px;padding:0 10px}._1mj9{border-left:1px solid #bbb;display:inline-block;height:28px;padding:0 8px}._1mjb i{display:inline-block;vertical-align:top}._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-84px -127px;height:14px;margin-top:7px;width:8px}._3__- ._3e5f ._1mi_,._1mj4 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-87px -255px}._4g4x ._1mi_{background-image:url(/rsrc.php/v3/y0/r/tb-rMa-mQQ-.gif);background-repeat:no-repeat;background-size:16px 11px;background-position:0 0;height:11px;margin-top:9px;width:16px}._1mj3 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-87px -269px;height:10px;margin-top:9px;width:8px}._3__- ._1mj3 ._3e5f ._1mi_,._1mj3 ._1mj4 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -513px}._1mj6{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-17px -470px;height:16px;margin-top:6px;width:15px}._1mja{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:0 -622px;height:14px;margin-top:7px;width:13px}._454y._1mjb,._454y ._1mj2{height:30px}._454y ._1mj4{height:30px}._454y ._1mj3 ._1mj4{border-right:0}._454y ._1mj2 ._1mj4 ._1miz:hover{background-color:transparent;background-image:linear-gradient( rgba(0, 0, 0, .10), rgba(0, 0, 0, .10) )}._454y ._1miz{background-color:transparent;border:0;height:16px;padding:7px 12px}._454y ._1mj1{border-bottom:1px solid #c1c0c0;padding-top:7px}._nd_ ._454y ._1mj1{border-bottom:1px solid #fff}._454y ._1mj4 ._1mj1{border-bottom-color:#bec3c9}._nd_ ._454y ._1mj4 ._1mj1{border-bottom-color:#fff}._454y ._1mi-{background-color:inherit;padding:0}._454y ._1mj0{background-color:#c1c0c0;border-radius:16px;color:#fff;font-size:12px;height:16px;line-height:16px}._nd_ ._454y ._1mj0{background-color:#fff;color:#0084ff}._5sxi._s1- ._454y ._1mj0{color:rgba(0, 0, 0, 1)}._nd_ ._454y ._1mj0::selection{background-color:rgba(0, 132, 255, .2)}._454y ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-17px -573px;height:16px;margin-top:0;width:16px}._nd_ ._454y ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-68px -573px}._454y ._1mj4 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-17px -573px}._nd_ ._454y ._1mj4 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-68px -573px}._454y ._4g4x ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-34px -556px;animation:rotateSpinner 1.2s linear infinite;height:16px;margin-top:0;width:16px}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}._nd_ ._454y ._4g4x ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-51px -556px}._454y ._1mj3 ._1mi_{height:16px;margin-top:0;width:16px}._454y ._1mj3 ._1mj4 ._1mi_,._454y ._1mj3 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:0 -573px}._nd_ ._454y ._1mj3 ._1mj4 ._1mi_,._nd_ ._454y ._1mj3 ._1mi_{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-51px -573px} ._3l6h._3l6h{display:inline}._3l6h .img.img{top:0}._3l6h+._3l6h{margin-left:8px} ._2mpc ._ajk>span{float:right}._5o79 ._2mpc ._ajk>span{margin-top:6px}._5o79 ._1wpi{color:#90949c}._1wpi{color:#dddfe2}._5o79 ._ajk{font-size:10px}._ajk{display:block;margin-bottom:22px}._45l2,._nd_ ._45l2 .uiLinkSubtle{color:#ccc;font-size:10px;text-decoration:none}._17y7 ._5ye7{color:#90949c}@media all and (min-width: 1600px){._5o79 ._ajk{font-size:12px}} ._4kd2{padding-bottom:30px}._4kd3 ._4kd2 ._4kd4 ._nd_:last-of-type ._4kd5{background-color:#f5f6f7;border-radius:4px;box-sizing:border-box;color:#7f7f7f;max-width:100%;padding:10px 12px;width:100%}._4kd3 ._4kd5 ::selection{background-color:rgba(0, 132, 255, .2)}._561k{border-top:1px solid #ccc;-webkit-font-smoothing:antialiased;margin-top:10px;padding-top:8px}._561l{color:#ccc;font-size:11px;font-weight:bold} ._3thf{background-color:#fff;border:solid 1px 1px solid rgba(0, 0, 0, .10);border-radius:4px;box-shadow:0 0 1px rgba(0,0,0,.1);box-sizing:border-box;font-size:14px;line-height:18px}._1hm4{width:100%}._1hm6{color:1px solid rgba(0, 0, 0, .10);font-family:"Helvetica-Bold";font-weight:bold;padding:8px 8px 0 8px}._1hm7{color:rgba(0, 0, 0, 1);font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;padding:0 8px 8px 8px} ._5qd2{color:#444950;display:block;max-width:100%;position:relative}._5qd2 ._4mnv{display:inline-block;margin-right:4px;vertical-align:middle}._5qd8{color:#444950;display:block;text-decoration:none}._5qd7{padding-top:4px}._1nc7 ._5qd7{padding-left:4px;padding-right:3px}._1nc6 ._5qd7{padding-left:3px;padding-right:4px}._5qd8:hover{text-decoration:none}._5qd9,._5qd1,._nvv{border-bottom:1px solid rgba(137, 143, 156, .20);padding-bottom:10px}._5qd9{padding-top:10px;text-align:center}._33x3{border-bottom:1px solid rgba(137, 143, 156, .20);padding-bottom:16px;text-align:center}._nvw{margin-top:4px}._5qco{font-size:12px;padding:8px 0 5px 0}._5qcp{line-height:16px}._5qcq{color:#90949c;font-size:11px;-webkit-font-smoothing:antialiased;font-weight:bold}._5qcs{display:inline-block;font-weight:bold;margin-right:4px}._5qcr{display:inline-block;margin-right:4px}._5qct{display:inline-block}._5qd0{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._nvv{padding:4px 0}._rou{left:-15px;margin-bottom:-10px;top:-13px}._5qd2 ._1krf{left:0;max-width:100%;top:-1px}._4o8z{color:#0084ff;margin:16px 0 12px;text-align:center}._5i_d._3-50{width:326px}._33x2{padding:6px 0;width:auto}._nvj{padding-top:0}._5qd5{padding:6px 12px;width:auto}._5qd5 ._3-4x{line-height:18px;margin-bottom:2px}._5qd5 ._3-4y{line-height:18px}._5qd5 ._5qd9{padding-bottom:17px;padding-top:5px}._5qd5 ._5qco{color:#444950;font-size:14px;padding-bottom:0;padding-top:8px}._5qd5 ._3-52{line-height:18px;padding-right:12px;width:50%}._5qd5 ._3-53{line-height:18px;padding-left:0}._5qd5 ._5qcq{color:#929292;font-size:12px;-webkit-font-smoothing:auto;font-weight:normal;line-height:18px}._5qd5 ._3-53{text-align:left}._5qd5 ._3-54{line-height:36px;text-align:right}._5qd5 ._3-55{padding-bottom:6px}._5qd5 ._3-54 a{color:#0084ff;text-decoration:none}._5qd5 ._rou{left:-12px;margin-bottom:-4px;top:-10px}._5qd5 ._1krg{padding-top:120px}._5qd4{background-color:#fff;border:1px solid #ebedf0;border-radius:4px;overflow:hidden;padding:6px 10px;width:200px}._5qd4 ._3-52{width:38%}._5qd4 ._5qco{padding-bottom:10px}._5qd4 ._rou{left:-10px;top:-10px}._5qd4 ._1krg{padding-top:110px}._56oy ._5qd2 ._4mnw{min-width:inherit} #facebook .uiIconText._3_io{display:inline-block;padding-left:16px;position:relative}#facebook._51l0 .uiIconText._3_io{padding-left:0}#facebook .uiIconText._3_io .img{top:1px} ._b4_{border:1px solid rgba(0, 0, 0, .1);border-radius:4px;float:left;margin-top:1px}._2o0z{border-radius:inherit}._2o0_{background-color:#fff;border-radius:50%;display:flex}._4uz1{align-items:center;background-color:#e04c60;border-top-left-radius:inherit;border-top-right-radius:inherit;color:#fff;display:flex;font-weight:bold}._2o1d{flex-grow:1}._4uy-{color:#8d949e;margin-bottom:2px}._4uz0{word-wrap:break-word} ._7ox8{color:green;padding-bottom:5px;size:20px} ._3fk6{margin-bottom:4px;min-width:240px;width:400px}._429x{border-radius:inherit;width:180px}._3fk6 ._429x{width:100%}._429_{background-color:#fff;border-top-left-radius:inherit;border-top-right-radius:inherit}._42ad,._42ad ._42ac:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}._435g ._429_._42a1{background-color:#3578e5}._429_._42a1{background-color:#ef6632}._429_._42a2{background-color:#42b72a}._429_._429z{background-color:#fa3e3e}._429_._1i6c{background-color:#3578e5}._429_ ._ohf{max-width:75%}._42a4{height:32px;text-align:center;width:32px}._3e7u ._42a4{height:24px;width:24px}._42a4 .img{vertical-align:middle}._42a4::before{content:'\200B';display:inline-block;height:100%;vertical-align:middle}._42a5{text-align:right}._42a5 ._42a7{color:#1d2129;font-size:14px;line-height:16px}._42a5 ._42a6{color:#90949c;font-size:12px;line-height:14px}._3e7u ._42a5 ._42a7{font-size:12px;line-height:16px}._3e7u ._42a5 ._42a6{font-size:10px;line-height:12px}._42a2 ._42a5 ._42a7,._429z ._42a5 ._42a7,._42a1 ._42a5 ._42a7,._1i6c ._42a5 ._42a7{color:#fff}._42a2 ._42a5 ._42a6,._429z ._42a5 ._42a6,._42a1 ._42a5 ._42a6,._1i6c ._42a5 ._42a6{color:rgba(255, 255, 255, .8)}._42ab ._42a7{color:#1d2129;font-size:13px;line-height:16px}._42ab ._42a6{color:#90949c;font-size:12px;line-height:14px}._7lk7{font-size:12px;margin-left:6px;margin-right:6px}._3e7u ._42ab ._42a7{font-size:12px;line-height:16px}._3e7u ._42ab ._42a6{font-size:10px;line-height:14px}._42ab ._42a8 ._42a9{border-top:1px solid #dddfe2;margin-top:0;padding-top:12px}._42ad ._71l-{text-decoration:none}._42ad ._42ac{background-color:#fff;border:0;border-top:1px solid #dddfe2;color:#3578e5;cursor:pointer;display:block;font-size:14px;height:40px;width:100%}._3e7u ._42ad ._42ac{font-size:12px;height:33px}._42a3{color:#fa3e3e}._3e7u ._429y{font-size:12px;line-height:16px}._1jof{height:32px;text-align:center;width:32px}._1jof::before{content:"";display:inline-block;height:100%;vertical-align:middle;width:0}._1jof ._1jog{display:inline-block;max-height:32px;max-width:32px;vertical-align:middle}._1i6m{align-items:center;display:flex;flex-direction:column}._1i6n{color:#3578e5;font-size:20px;font-weight:300}._6b20{color:#1c1e21}._1i6o{color:#444950;font-size:12px;font-weight:200;text-align:center}._6b24{color:#90949c}._8duu{color:#90949c;font-size:14px;line-height:16px;margin:12px 0;padding-left:44px}.fbNubFlyout ._1i6n{font-size:14px;font-weight:400}.fbNubFlyout ._1i6o{font-weight:200;text-align:left}.webMessengerMessageGroup ._429x{border:1px solid #dddfe2;margin-top:8px;width:280px} ._4_8n{background-color:#000;background-color:rgba(0, 0, 0, .8);bottom:0;cursor:pointer;height:40px;left:0;padding:0 10px;position:absolute;right:0;transition:opacity .3s;z-index:1}._4_8n:before{content:'';display:inline-block;height:100%;vertical-align:middle}._4_8j{color:#ccc;display:inline-block;font-size:13px;font-weight:bold;vertical-align:middle}._4_8n .lfloat,._4_8n .rfloat,._4_8n ._ohe,._4_8n ._ohf{height:100%}.marginLeft ._4_8j{margin-left:10px}.marginRight ._4_8j{margin-right:10px}._535k{vertical-align:middle} ._4_8k{color:#ccc;padding:3px 5px}._4_8k:hover{background-color:transparent;background-color:rgba(255, 255, 255, .2);border-color:transparent;border-radius:2px;color:#fff;text-decoration:none} ._4-od{display:inline-block;margin:0 auto;max-height:100%;max-width:100%;position:relative;vertical-align:middle} ._4-oa{border-radius:8px;display:block;height:46px;margin-top:-23px;opacity:.4;position:absolute;top:50%;transition:opacity .2s;width:27px;z-index:1}._4-oa:hover,._516a ._2bbb,._516b ._2bbc,._516a ._4-ob,._516b ._4-oc{opacity:1}._4-ob{background-image:url(/rsrc.php/v3/yF/r/zAYR2BVH6tO.png);background-repeat:no-repeat;background-size:65px 784px;background-position:0 -65px;left:20px}._4-oc{background-image:url(/rsrc.php/v3/yF/r/zAYR2BVH6tO.png);background-repeat:no-repeat;background-size:65px 784px;background-position:-28px -65px;right:20px} ._4-oh{display:inline-block;height:100%;vertical-align:middle}._4-of{background-color:#000;display:inline-block;position:relative;text-align:center;-webkit-user-select:none}._4-of._51jp{background:#000000 url(/rsrc.php/v3/y7/r/pgEFhPxsWZX.gif) no-repeat center center}._4-oi{border:rgba(255, 255, 255, .1) 1px solid;box-sizing:border-box;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}._4-og{height:100%}._4-of._50-l ._50-m{opacity:0} ._3y64{background-color:#fff;border:solid 1px 1px solid rgba(0, 0, 0, .10);border-radius:4px;box-shadow:0 0 1px rgba(0, 0, 0, .1);box-sizing:border-box;font-size:14px;line-height:18px}._15vy{border-top-left-radius:4px;border-top-right-radius:4px;width:100%}._15v-{color:1px solid rgba(0, 0, 0, .10);font-family:"Helvetica-Bold";font-weight:bold;padding:8px 8px 0 8px}._15v_{color:rgba(0, 0, 0, 1);font-family:Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;padding:0 8px 8px 8px} ._59s7 ._5rq-{background-color:#e9ebee;padding:0}._8hcr{height:600px}._5r5i{background:#fff}._5r5h ._5r5i{width:688px}._5r5f{background:url(/rsrc.php/v3/yX/r/pimvkTpd6ag.gif) repeat;height:193px;position:relative;text-align:center}._5r5j{bottom:0;left:0;position:absolute}._5r5j._8hez{left:-6px}._5r5k{position:absolute;right:12px;top:15px}._5r5l{color:#424242;font-size:28px;font-weight:bold;margin-bottom:10px;max-width:550px}._5r5m{color:#a8a8a8;display:inline-block;max-height:100px;max-width:360px;overflow:hidden}._5r5n{margin-right:13px;vertical-align:-5px}._5rzk,._5rzl{bottom:0;position:absolute;width:100%}._5rzk{top:193px}._5rzk._8hca{right:0;top:220px}._5rzl{top:39px}._5rzl._8hct{top:66px}._5r5h ._5rzk{left:-15px;position:relative;top:0;width:705px}._7vw3{display:none}._5r5h ._5rzl{position:static}._5r5r{padding-left:2px}._59s7 ._5r5r{padding:0;padding-top:14px}._5r5r ._5rr1{margin-top:7px}._5r5h ._5r5r{margin-top:14px;padding-left:1px}._5r5s{max-height:88px;max-width:88px}._5r5e{margin:100px 0;text-align:center}._5r5i ._5r5g{background:#fff;border-bottom:none}._5r5g ._5r5c{display:inline-block;text-decoration:none}._5r5c ._5rq_{color:#1c1e21}._5r5t{margin-right:11px;position:relative;top:1px} ._6b7x,._6b7w{position:absolute;width:100%;z-index:5}._6b7x{bottom:77px}._6b7w{bottom:57px}._6b7w._6ei8{bottom:103px}._3-yi{background-color:#fff;border:1px solid #fff;border-radius:50px;cursor:pointer;display:table;-webkit-filter:drop-shadow(0 2px 8px rgba(0, 0, 0, .1));margin:0 auto;padding:6px 10px 6px 10px}._3-yj{margin-right:6px;vertical-align:middle} ._8tx7{cursor:pointer;position:absolute;right:27px;top:27px} ._56jj{display:inline-block;overflow:hidden;position:relative}._56jj ._56wb{left:0;position:absolute;top:0}._56lv{border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;left:0;position:absolute;top:0}._56ma{display:inline-block;left:0;overflow:hidden;position:absolute;top:0}._56t5{transition-duration:1s;transition-property:width, height, left, top, border-radius} .ButtonImg{background-repeat:no-repeat;display:inline-block;height:10px;margin-top:2px;vertical-align:top;width:9px;height:14px}.ButtonImg.addConnection{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -207px;width:11px}.ButtonImg.addToProfile{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-75px -142px;width:14px}.ButtonImg.allowAccess{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-62px -381px;width:12px}.ButtonImg.back{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-89px -97px;width:5px}.ButtonImg.block{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -344px;width:10px}.ButtonImg.bookmark{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-12px -406px;width:12px}.ButtonImg.check{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-66px -436px}.ButtonImg.connect{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -359px;width:10px}.ButtonImg.create{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-59px -590px;height:10px;width:8px}.ButtonImg.create.selected{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-51px -590px}.ButtonImg.download{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-28px -436px}.ButtonImg.edit{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -374px;width:10px}.ButtonImg.feature{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -222px;width:11px}.ButtonImg.forward{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-89px -112px;width:8px}.ButtonImg.friendLists{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-76px -590px;width:8px}.ButtonImg.like{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-37px -406px;width:12px}.ButtonImg.message{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-47px -451px;height:12px}.ButtonImg.placePin{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-28px -451px;height:13px}.ButtonImg.poke{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-62px -396px;width:12px}.ButtonImg.privacy{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -436px}.ButtonImg.remove{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-9px -455px}.ButtonImg.search{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-11px -421px;width:11px}.ButtonImg.settings{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -389px;width:10px}.ButtonImg.share{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-76px -244px;width:8px}.ButtonImg.subscribe{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-80px -421px;width:11px;height:12px}.ButtonImg.signal{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-8px -607px}.ButtonImg.tag{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-34px -421px;width:11px}.ButtonImg.takePhoto{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-57px -421px;height:14px;width:11px}.ButtonImg.takePhoto.selected{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-46px -421px}.ButtonImg.trashCan{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-85px -488px}.ButtonImg.unfollow{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-25px -607px}.ButtonImg.videoCall{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-50px -244px;width:13px;height:10px}.ButtonImg.voteDown{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-28px -436px}.ButtonImg.voteUp{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-repeat:no-repeat;background-size:97px 650px;background-position:-47px -436px} ._zq_ ._17az{bottom:58px;position:absolute;right:20px;top:initial;transform:initial;z-index:9999}._zq_ ._3bxe{bottom:42px;line-height:1.34}._1c1o{text-align:center}._31bl{position:relative}._183c{position:relative}._1elq{display:block;position:relative}._31bn ._17az{height:100%;outline:none;position:absolute;right:10px;top:50%;transform:translateY(-50%);width:100%;z-index:1}._1ziy .fbPhotosPhotoTagboxes{display:none}._b4x{height:476px;position:relative;width:714px}._b4y{color:#4b4f56;font-size:16px;font-weight:lighter;margin-bottom:20px;text-align:left}._b4z{background-color:#f5f6f7;box-sizing:border-box;height:476px;left:0;overflow:auto;padding:18px;position:absolute;top:0;width:238px}._go6{background-color:#fff;border:1px solid #ebedf0;border-radius:3px;font-size:14px;margin:5px 0;padding:5px}._go6 div{padding-right:8px;width:130px}._go6 ._god{padding-left:8px;width:154px}._go6 img{padding-right:12px;width:32px}._go6 img,._go6 div,._go6 ._goe{cursor:pointer;display:inline-block;vertical-align:middle}._b4-{height:476px;position:absolute;right:0;top:0;width:476px}._183d{cursor:pointer;outline:none;position:relative}._183e:after{background-image:url(/rsrc.php/v3/yj/r/GbfweIhSB9S.png);background-repeat:no-repeat;background-size:25px 122px;background-position:0 0;bottom:8px;content:'';display:inline-block;height:24px;position:absolute;right:8px;width:24px}._183f{color:#1d2129;display:inline-block;float:left;font-size:14px;width:70%}._183g{display:inline-block;float:right}._b52,._1l8g .stageActions{height:476px;position:relative;width:476px}._64e6 ._3wte,._31bn ._3wte{background-image:url(/rsrc.php/v3/yF/r/zAYR2BVH6tO.png);background-repeat:no-repeat;background-size:65px 784px;background-position:0 -152px;height:24px;margin:auto;position:absolute;right:10px;top:10px;width:24px}._zq_ ._3wte{background-image:url(/rsrc.php/v3/yF/r/zAYR2BVH6tO.png);background-repeat:no-repeat;background-size:65px 784px;background-position:0 -152px;height:24px;margin:auto;position:absolute;right:55px;top:10px;width:24px;z-index:9999}._tz- ._3wte{right:75px;top:18px}._2nw8 ._3wte{margin:28px;top:0}._2nw8 ._tz- ._3wte{margin:32px;top:0}._63th ._17az{bottom:48px;position:absolute;right:10px;top:initial;transform:initial;z-index:9999}._63th ._3wte{background-image:url(/rsrc.php/v3/yF/r/zAYR2BVH6tO.png);background-repeat:no-repeat;background-size:65px 784px;background-position:0 -152px;height:24px;margin:28px;position:absolute;right:75px;top:0;width:24px;z-index:9999}._3603:after{background-image:url(/rsrc.php/v3/yj/r/GbfweIhSB9S.png);background-repeat:no-repeat;background-size:25px 122px;background-position:0 0;bottom:12px;content:'';display:inline-block;height:24px;position:absolute;right:12px;width:24px}._64e6{border-radius:inherit;height:400px;width:400px}._64e6 ._2vjf,._64e6 ._2vjf .img{border-radius:inherit}._64e6 ._17az{height:100%;outline:none;position:absolute;right:10px;top:50%;transform:translateY(-50%);width:100%;z-index:1}._64e6 ._kp_,._64e6 ._3o6m,._64e6 ._4trl{border-radius:inherit}._64ks{background-image:linear-gradient(to top, rgba(0,0,0,.30) 0%,rgba(0,0,0,0) 100%);border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:70%;z-index:1}._3v3t{background-size:cover;border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}._2j6q{opacity:0;transition:opacity 1s}._2j6r{opacity:1;transition:opacity 2s}._2j6s{opacity:0}._2j6p{opacity:1}._66p5{bottom:8px;height:100px;position:absolute;right:10px;width:40px}._3r7_{bottom:0;position:absolute;width:40px}._zq_ ._66p5{bottom:60px;right:74px;z-index:9999}._tz- ._66p5{bottom:68px;right:89px}._24cp ._17az{bottom:12px;position:absolute;right:12px;top:initial;transform:initial;z-index:9999} .sp_NiMRnNBghB4_2x{background-image:url(/rsrc.php/v3/y1/r/NwiFQ0vwPh7.png);background-size:97px 650px;background-repeat:no-repeat;display:inline-block;height:16px;width:16px}.sp_NiMRnNBghB4_2x.sx_36b518{width:4px;height:4px;background-position:-90px -142px}.sp_NiMRnNBghB4_2x.sx_e9407e{width:12px;height:12px;background-position:-57px -451px}.sp_NiMRnNBghB4_2x.sx_d73cf8{width:12px;height:12px;background-position:-70px -451px}.sp_NiMRnNBghB4_2x.sx_6022eb{width:24px;height:24px;background-position:-37px -255px}.sp_NiMRnNBghB4_2x.sx_c43278{width:24px;height:24px;background-position:-62px -255px}.sp_NiMRnNBghB4_2x.sx_1163f1{width:12px;height:12px;background-position:-83px -451px}.sp_NiMRnNBghB4_2x.sx_f1112d{width:12px;height:12px;background-position:-84px -470px}.sp_NiMRnNBghB4_2x.sx_c04228{background-position:-33px -470px}.sp_NiMRnNBghB4_2x.sx_ba239b{width:24px;height:24px;background-position:0 -281px}.sp_NiMRnNBghB4_2x.sx_52e58c{background-position:-50px -470px}.sp_NiMRnNBghB4_2x.sx_12e54f{width:12px;height:12px;background-position:-29px -622px}.sp_NiMRnNBghB4_2x.sx_6a247f{background-position:-67px -470px}.sp_NiMRnNBghB4_2x.sx_5c6cef{width:24px;height:24px;background-position:-25px -281px}.sp_NiMRnNBghB4_2x.sx_77e00f{width:48px;height:48px;background-position:0 -158px}.sp_NiMRnNBghB4_2x.sx_191d41{background-position:0 -488px}.sp_NiMRnNBghB4_2x.sx_3dea76{background-position:-17px -488px}.sp_NiMRnNBghB4_2x.sx_154717{background-position:-34px -488px}.sp_NiMRnNBghB4_2x.sx_2675c1{width:20px;height:20px;background-position:-75px -281px}.sp_NiMRnNBghB4_2x.sx_e2eb25{width:20px;height:20px;background-position:-75px -302px}.sp_NiMRnNBghB4_2x.sx_f58a36{background-position:-51px -488px}.sp_NiMRnNBghB4_2x.sx_d0b36a{width:12px;height:12px;background-position:-42px -622px}.sp_NiMRnNBghB4_2x.sx_5cc221{background-position:-68px -488px}.sp_NiMRnNBghB4_2x.sx_e84eb3{background-position:0 -505px}.sp_NiMRnNBghB4_2x.sx_ad6dfb{background-position:-17px -505px}.sp_NiMRnNBghB4_2x.sx_c0933e{width:24px;height:24px;background-position:-50px -281px}.sp_NiMRnNBghB4_2x.sx_f73056{width:24px;height:24px;background-position:0 -306px}.sp_NiMRnNBghB4_2x.sx_98e7cb{width:20px;height:20px;background-position:-75px -323px}.sp_NiMRnNBghB4_2x.sx_ccffd4{background-position:-34px -505px}.sp_NiMRnNBghB4_2x.sx_ea2c46{background-position:-51px -505px}.sp_NiMRnNBghB4_2x.sx_b2201e{background-position:-68px -505px}.sp_NiMRnNBghB4_2x.sx_954a82{background-position:0 -522px}.sp_NiMRnNBghB4_2x.sx_7b4539{width:24px;height:24px;background-position:-25px -306px}.sp_NiMRnNBghB4_2x.sx_d833eb{background-position:-17px -522px}.sp_NiMRnNBghB4_2x.sx_05ab58{background-position:-34px -522px}.sp_NiMRnNBghB4_2x.sx_58c2d8{background-position:-51px -522px}.sp_NiMRnNBghB4_2x.sx_148aa1{background-position:-68px -522px}.sp_NiMRnNBghB4_2x.sx_a0468b{background-position:0 -539px}.sp_NiMRnNBghB4_2x.sx_db7339{background-position:-17px -539px}.sp_NiMRnNBghB4_2x.sx_384fd1{width:12px;height:12px;background-position:-55px -622px}.sp_NiMRnNBghB4_2x.sx_99e0fd{width:24px;height:24px;background-position:-50px -306px}.sp_NiMRnNBghB4_2x.sx_79ffa9{width:12px;height:12px;background-position:-68px -622px}.sp_NiMRnNBghB4_2x.sx_37ee6c{width:12px;height:12px;background-position:-81px -622px}.sp_NiMRnNBghB4_2x.sx_6740de{width:12px;height:12px;background-position:0 -637px}.sp_NiMRnNBghB4_2x.sx_de2cb0{width:12px;height:12px;background-position:-13px -637px}.sp_NiMRnNBghB4_2x.sx_08d881{width:12px;height:12px;background-position:-26px -637px}.sp_NiMRnNBghB4_2x.sx_c53cad{background-position:-34px -539px}.sp_NiMRnNBghB4_2x.sx_d8d488{background-position:-51px -539px}.sp_NiMRnNBghB4_2x.sx_6db95c{background-position:-68px -539px}.sp_NiMRnNBghB4_2x.sx_b05f57{background-position:0 -556px}.sp_NiMRnNBghB4_2x.sx_c442b2{width:60px;height:60px;background-position:0 -97px}.sp_NiMRnNBghB4_2x.sx_26c5a6{width:13px;height:13px;background-position:-15px -622px}.sp_NiMRnNBghB4_2x.sx_378737{width:11px;height:14px;background-position:-85px -207px}.selected .sp_NiMRnNBghB4_2x.sx_378737{background-position:-74px -207px}.sp_NiMRnNBghB4_2x.sx_4f7bda{width:14px;height:14px;background-position:-75px -142px}.selected .sp_NiMRnNBghB4_2x.sx_4f7bda{background-position:-61px -142px}.sp_NiMRnNBghB4_2x.sx_e6b29b{width:12px;height:14px;background-position:-62px -381px}.selected .sp_NiMRnNBghB4_2x.sx_e6b29b{background-position:-50px -381px}.sp_NiMRnNBghB4_2x.sx_2b959f{width:9px;height:14px;background-position:-28px -436px}.selected .sp_NiMRnNBghB4_2x.sx_2b959f{background-position:-19px -436px}.sp_NiMRnNBghB4_2x.sx_903ef5{width:9px;height:14px;background-position:-47px -436px}.selected .sp_NiMRnNBghB4_2x.sx_903ef5{background-position:-38px -436px}.sp_NiMRnNBghB4_2x.sx_d58cb5{width:5px;height:14px;background-position:-89px -97px}.selected .sp_NiMRnNBghB4_2x.sx_d58cb5{background-position:-84px -97px}.sp_NiMRnNBghB4_2x.sx_b15832{width:10px;height:14px;background-position:-85px -344px}.selected .sp_NiMRnNBghB4_2x.sx_b15832{background-position:-75px -344px}.sp_NiMRnNBghB4_2x.sx_de2ca6{width:12px;height:14px;background-position:-12px -406px}.selected .sp_NiMRnNBghB4_2x.sx_de2ca6{background-position:0 -406px}.sp_NiMRnNBghB4_2x.sx_e5f3a4{width:9px;height:14px;background-position:-66px -436px}.selected .sp_NiMRnNBghB4_2x.sx_e5f3a4{background-position:-57px -436px}.sp_NiMRnNBghB4_2x.sx_6e0b2a{width:10px;height:14px;background-position:-85px -359px}.selected .sp_NiMRnNBghB4_2x.sx_6e0b2a{background-position:-75px -359px}.sp_NiMRnNBghB4_2x.sx_1e9b7c{width:8px;height:14px;background-position:-59px -590px}.selected .sp_NiMRnNBghB4_2x.sx_1e9b7c{background-position:-51px -590px}.sp_NiMRnNBghB4_2x.sx_65bbdb{width:10px;height:14px;background-position:-85px -374px}.selected .sp_NiMRnNBghB4_2x.sx_65bbdb{background-position:-75px -374px}.sp_NiMRnNBghB4_2x.sx_07c0d7{width:11px;height:14px;background-position:-85px -222px}.selected .sp_NiMRnNBghB4_2x.sx_07c0d7{background-position:-74px -222px}.sp_NiMRnNBghB4_2x.sx_14688a{width:5px;height:14px;background-position:-89px -112px}.selected .sp_NiMRnNBghB4_2x.sx_14688a{background-position:-84px -112px}.sp_NiMRnNBghB4_2x.sx_e6fa0a{width:8px;height:14px;background-position:-76px -590px}.selected .sp_NiMRnNBghB4_2x.sx_e6fa0a{background-position:-68px -590px}.sp_NiMRnNBghB4_2x.sx_de1c97{width:12px;height:14px;background-position:-37px -406px}.selected .sp_NiMRnNBghB4_2x.sx_de1c97{background-position:-25px -406px}.sp_NiMRnNBghB4_2x.sx_9c258b{width:9px;height:13px;background-position:-28px -451px}.selected .sp_NiMRnNBghB4_2x.sx_9c258b{background-position:-19px -451px}.sp_NiMRnNBghB4_2x.sx_f805e0{width:12px;height:14px;background-position:-62px -396px}.selected .sp_NiMRnNBghB4_2x.sx_f805e0{background-position:-50px -396px}.sp_NiMRnNBghB4_2x.sx_f5daa9{width:9px;height:14px;background-position:-85px -436px}.selected .sp_NiMRnNBghB4_2x.sx_f5daa9{background-position:-76px -436px}.sp_NiMRnNBghB4_2x.sx_f3c9b4{width:9px;height:14px;background-position:-9px -455px}.selected .sp_NiMRnNBghB4_2x.sx_f3c9b4{background-position:0 -455px}.sp_NiMRnNBghB4_2x.sx_f52641{width:11px;height:14px;background-position:-11px -421px}.selected .sp_NiMRnNBghB4_2x.sx_f52641{background-position:0 -421px}.sp_NiMRnNBghB4_2x.sx_b0daeb{width:9px;height:12px;background-position:-47px -451px}.selected .sp_NiMRnNBghB4_2x.sx_b0daeb{background-position:-38px -451px}.sp_NiMRnNBghB4_2x.sx_854d99{width:10px;height:14px;background-position:-85px -389px}.selected .sp_NiMRnNBghB4_2x.sx_854d99{background-position:-75px -389px}.sp_NiMRnNBghB4_2x.sx_9a38a5{width:12px;height:10px;background-position:-76px -244px}.selected .sp_NiMRnNBghB4_2x.sx_9a38a5{background-position:-64px -244px}.sp_NiMRnNBghB4_2x.sx_d93822{width:8px;height:14px;background-position:-8px -607px}.selected .sp_NiMRnNBghB4_2x.sx_d93822{background-position:0 -607px}.sp_NiMRnNBghB4_2x.sx_cac0c9{width:11px;height:12px;background-position:-80px -421px}.selected .sp_NiMRnNBghB4_2x.sx_cac0c9{background-position:-69px -421px}.sp_NiMRnNBghB4_2x.sx_c1c89d{width:11px;height:14px;background-position:-34px -421px}.selected .sp_NiMRnNBghB4_2x.sx_c1c89d{background-position:-23px -421px}.sp_NiMRnNBghB4_2x.sx_039753{width:11px;height:14px;background-position:-57px -421px}.selected .sp_NiMRnNBghB4_2x.sx_039753{background-position:-46px -421px}.sp_NiMRnNBghB4_2x.sx_2a3cb7{width:11px;height:12px;background-position:-85px -488px}.sp_NiMRnNBghB4_2x.sx_c854d5{width:8px;height:14px;background-position:-25px -607px}.selected .sp_NiMRnNBghB4_2x.sx_c854d5{background-position:-17px -607px}.sp_NiMRnNBghB4_2x.sx_b2fea8{width:13px;height:10px;background-position:-50px -244px}.selected .sp_NiMRnNBghB4_2x.sx_b2fea8{background-position:-37px -244px}.sp_NiMRnNBghB4_2x.sx_bff364{background-position:-17px -556px}.sp_NiMRnNBghB4_2x.sx_5759c8{height:17px;background-position:0 -470px}.sp_NiMRnNBghB4_2x.sx_b28af0{width:24px;height:24px;background-position:0 -331px}.sp_NiMRnNBghB4_2x.sx_891ecc{width:24px;height:24px;background-position:-25px -331px}.sp_NiMRnNBghB4_2x.sx_4a385c{width:24px;height:24px;background-position:-50px -331px}.sp_NiMRnNBghB4_2x.sx_8c1e1b{width:12px;height:12px;background-position:-39px -637px}.sp_NiMRnNBghB4_2x.sx_5363c2{width:12px;height:12px;background-position:-52px -637px}.sp_NiMRnNBghB4_2x.sx_9db5c7{width:14px;height:14px;background-position:-34px -607px}.sp_NiMRnNBghB4_2x.sx_bc3ff4{width:14px;height:14px;background-position:-49px -607px}.sp_NiMRnNBghB4_2x.sx_789820{width:12px;height:12px;background-position:-65px -637px}.sp_NiMRnNBghB4_2x.sx_1dd838{width:14px;height:14px;background-position:-64px -607px}.sp_NiMRnNBghB4_2x.sx_cdd7b5{width:14px;height:14px;background-position:-79px -607px}.sp_NiMRnNBghB4_2x.sx_8edf82{width:12px;height:12px;background-position:-78px -637px}.sp_NiMRnNBghB4_2x.sx_876d49{width:24px;height:24px;background-position:0 -356px}.sp_NiMRnNBghB4_2x.sx_8928d2{width:18px;height:18px;background-position:0 -436px}.sp_NiMRnNBghB4_2x.sx_3f645e{width:36px;height:36px;background-position:0 -207px}.sp_NiMRnNBghB4_2x.sx_3d6b2d{background-position:-34px -556px}.sp_NiMRnNBghB4_2x.sx_d4b46a{background-position:-51px -556px}.sp_NiMRnNBghB4_2x.sx_6756ee{width:24px;height:24px;background-position:-25px -356px}.sp_NiMRnNBghB4_2x.sx_74c969{width:40px;height:40px;background-position:-49px -158px}.sp_NiMRnNBghB4_2x.sx_8852d1{width:36px;height:36px;background-position:-37px -207px}.sp_NiMRnNBghB4_2x.sx_362699{width:36px;height:36px;background-position:0 -244px}.sp_NiMRnNBghB4_2x.sx_e25440{width:24px;height:24px;background-position:-50px -356px}.sp_NiMRnNBghB4_2x.sx_99e669{width:24px;height:24px;background-position:0 -381px}.sp_NiMRnNBghB4_2x.sx_c6d9d5{width:24px;height:24px;background-position:-25px -381px}.sp_NiMRnNBghB4_2x.sx_0fc4f0{width:22px;height:44px;background-position:-61px -97px}.sp_NiMRnNBghB4_2x.sx_7cd8de{background-position:-68px -556px}.sp_NiMRnNBghB4_2x.sx_2d5e00{background-position:0 -573px}.sp_NiMRnNBghB4_2x.sx_f5d24e{background-position:-17px -573px}.sp_NiMRnNBghB4_2x.sx_be4f55{background-position:-34px -573px}.sp_NiMRnNBghB4_2x.sx_f734ec{background-position:-51px -573px}.sp_NiMRnNBghB4_2x.sx_bab372{background-position:-68px -573px}.sp_NiMRnNBghB4_2x.sx_e977f7{background-position:0 -590px}.sp_NiMRnNBghB4_2x.sx_f77960{background-position:-17px -590px}.sp_NiMRnNBghB4_2x.sx_4663c3{background-position:-34px -590px}.sp_NiMRnNBghB4_2x.sx_80000b{width:14px;height:14px;background-position:0 -622px}.sp_NiMRnNBghB4_2x.sx_9cac26{width:8px;height:10px;background-position:-87px -269px}.sp_NiMRnNBghB4_2x.sx_121454{width:8px;height:10px;background-position:-85px -513px}.sp_NiMRnNBghB4_2x.sx_78eb9d{width:8px;height:13px;background-position:-84px -127px}.sp_NiMRnNBghB4_2x.sx_1cc36e{width:8px;height:13px;background-position:-87px -255px}.sp_NiMRnNBghB4_2x.sx_52b959{width:15px;height:17px;background-position:-17px -470px}.sp_NiMRnNBghB4_2x.sx_3b8c90{width:96px;height:96px;background-position:0 0}.sp_NiMRnNBghB4_2x.sx_d97712{width:11px;height:11px;background-position:-85px -501px} #bootloader_Y5Zml{height:42px;}.bootloader_Y5Zml{display:block!important;}
1,121.516484
11,990
0.790452
6d3779553d64a1effdaca14e307f0f28173cea85
8,059
ts
TypeScript
src/services/BotlistService.ts
DRSchlaubi/Nino
ce982c34035ac141cca85ff07eb71e82dc82a9d4
[ "MIT" ]
122
2020-05-01T15:04:53.000Z
2022-03-29T03:54:55.000Z
src/services/BotlistService.ts
DRSchlaubi/Nino
ce982c34035ac141cca85ff07eb71e82dc82a9d4
[ "MIT" ]
43
2020-05-07T12:52:00.000Z
2022-01-28T00:19:00.000Z
src/services/BotlistService.ts
DRSchlaubi/Nino
ce982c34035ac141cca85ff07eb71e82dc82a9d4
[ "MIT" ]
40
2020-05-22T11:08:40.000Z
2022-02-10T20:08:58.000Z
/** * Copyright (c) 2019-2021 Nino * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* eslint-disable camelcase */ import { Service, Inject } from '@augu/lilith'; import { HttpClient } from '@augu/orchid'; import { Logger } from 'tslog'; import Discord from '../components/Discord'; import Config from '../components/Config'; @Service({ priority: 1, name: 'botlists', }) export default class BotlistsService { @Inject private readonly discord!: Discord; @Inject private readonly logger!: Logger; @Inject private readonly config!: Config; @Inject private readonly http!: HttpClient; #interval?: NodeJS.Timer; async load() { const botlists = this.config.getProperty('botlists'); if (botlists === undefined) { this.logger.warn("`botlists` is missing, don't need to add it if running privately."); return Promise.resolve(); } this.logger.info('Built scheduler for posting to botlists!'); this.#interval = setInterval(this.post.bind(this), 86400000).unref(); } dispose() { if (this.#interval) clearInterval(this.#interval); } async post() { const list: { name: 'Discord Services' | 'Discord Boats' | 'Discord Bots' | 'top.gg' | 'Delly' | 'Bots for Discord'; success: boolean; data: Record<string, any>; }[] = []; let success = 0; let errored = 0; const botlists = this.config.getProperty('botlists')!; if (botlists === undefined) return; if (botlists.dservices !== undefined) { this.logger.info('Found Discord Services token, now posting...'); await this.http .request({ url: `https://api.discordservices.net/bot/${this.discord.client.user.id}/stats`, method: 'POST', data: { server_count: this.discord.client.guilds.size, }, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.dservices, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'Discord Services', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [discordservices.net]:', ex)); } if (botlists.dboats !== undefined) { this.logger.info('Found Discord Boats token, now posting...'); await this.http .request({ data: { server_count: this.discord.client.guilds.size, }, method: 'POST', url: `https://discord.boats/api/bot/${this.discord.client.user.id}`, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.dboats, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'Discord Boats', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [discord.boats]:', ex)); } if (botlists.dbots !== undefined) { this.logger.info('Found Discord Bots token, now posting...'); await this.http .request({ url: `https://discord.bots.gg/api/v1/bots/${this.discord.client.user.id}/stats`, method: 'POST', data: { shardCount: this.discord.client.shards.size, guildCount: this.discord.client.guilds.size, }, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.dbots, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'Discord Bots', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [discord.bots.gg]:', ex)); } if (botlists.topgg !== undefined) { this.logger.info('Found top.gg token, now posting...'); await this.http .request({ url: `https://top.gg/api/bots/${this.discord.client.user.id}/stats`, method: 'POST', data: { server_count: this.discord.client.guilds.size, shard_count: this.discord.client.shards.size, }, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.topgg, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'top.gg', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [top.gg]:', ex)); } // Ice is a cute boyfriend btw <3 if (botlists.delly !== undefined) { this.logger.info('Found Discord Extreme List token, now posting...'); await this.http .request({ url: `https://api.discordextremelist.xyz/v2/bot/${this.discord.client.user.id}/stats`, method: 'POST', data: { guildCount: this.discord.client.guilds.size, shardCount: this.discord.client.shards.size, }, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.delly, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'Delly', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [Delly]:', ex)); } if (botlists.bfd !== undefined) { this.logger.info('Found Bots for Discord token, now posting...'); const res = await this.http .request({ method: 'POST', url: `https://botsfordiscord.com/api/bot/${this.discord.client.user.id}`, data: { server_count: this.discord.client.guilds.size, }, headers: { 'Content-Type': 'application/json', 'Authorization': botlists.bfd, }, }) .then((res) => { res.statusCode === 200 ? success++ : errored++; list.push({ name: 'Bots for Discord', success: res.statusCode === 200, data: res.json(), }); }) .catch((ex) => this.logger.warn('Unable to parse JSON [Bots for Discord]:', ex)); } const successRate = ((success / list.length) * 100).toFixed(2); this.logger.info( [ `ℹ️ listly posted to ${list.length} botlists with a success rate of ${successRate}%`, 'Serialized output will be displayed:', ].join('\n') ); for (const botlist of list) { this.logger.info(`${botlist.success ? '✔' : '❌'} ${botlist.name}`, botlist.data); } } }
32.10757
108
0.562104
18dab236f5eba517722ad7f74704eeb2065f7a06
472
dart
Dart
lib/screens/egg_machine/egg_machine_subtab.dart
nachoapps/dadguide-flutter
c3a9f3d664ac91541a4f4b80d971f6bf986b784d
[ "MIT" ]
16
2019-08-11T16:12:43.000Z
2020-09-05T08:33:08.000Z
lib/screens/egg_machine/egg_machine_subtab.dart
nachoapps/dadguide-flutter
c3a9f3d664ac91541a4f4b80d971f6bf986b784d
[ "MIT" ]
187
2019-08-10T19:54:45.000Z
2020-07-27T12:03:08.000Z
lib/screens/egg_machine/egg_machine_subtab.dart
nachoapps/dadguide-flutter
c3a9f3d664ac91541a4f4b80d971f6bf986b784d
[ "MIT" ]
15
2019-08-11T16:13:21.000Z
2021-02-27T03:58:54.000Z
import 'package:dadguide2/components/firebase/analytics.dart'; import 'package:dadguide2/components/ui/navigation.dart'; import 'package:flutter/material.dart'; import 'egg_machine_content.dart'; class EggMachineScreen extends StatelessWidget { final EggMachineArgs args; EggMachineScreen(this.args) { screenChangeEvent(runtimeType.toString()); } @override Widget build(BuildContext context) { return EggMachineTabbedViewWidget(args.machines); } }
24.842105
62
0.783898
fde1f680bc80ec73ce3421ad06458bf1a94bf20b
848
css
CSS
legacy/results/most_wanted_otus/most_wanted_otus.css
GLOMICON/emp
c1f752d1ae4c009328bbdcecf9666dbd4dac39b6
[ "BSD-3-Clause" ]
1
2020-01-30T15:06:26.000Z
2020-01-30T15:06:26.000Z
legacy/results/most_wanted_otus/most_wanted_otus.css
https-github-com-peadrakw-p1/emp
3bc8984ec56c3fcc93e8241ac4cdb88177772cf6
[ "BSD-3-Clause" ]
null
null
null
legacy/results/most_wanted_otus/most_wanted_otus.css
https-github-com-peadrakw-p1/emp
3bc8984ec56c3fcc93e8241ac4cdb88177772cf6
[ "BSD-3-Clause" ]
null
null
null
body { font-family: helvetica; font-size: 10pt; } img { border: none; width: 150px; height: 150px; } table#most_wanted_otus_table{ width: 100%; border-spacing: 1px; background-color: #ddd; } table#most_wanted_otus_table tr{ width: 100%; /* border: 1px solid black;*/ } table#most_wanted_otus_table tr:nth-child(odd){ background-color: #e1f9fe; } table#most_wanted_otus_table tr:nth-child(even){ background-color: #fff; } table#most_wanted_otus_table tr:nth-child(even) table tr{ background-color: #fff; } th { font-family: helvetica; background-color: #eee; } ul { list-style-type: none; /* font-size: 8pt;*/ } ul li { width: 100%; height: 100%; } div.key { border: 1px solid black; margin-right: .5em; float: left; width: 15px; height: 15px; }
15.142857
57
0.633255
1255b0cb7c174b15182155edeb600be7ccfb3f69
1,189
cs
C#
WTS/Features/AppExtension/SampleAppExtensions/SampleAppHost/ViewModels/MainViewModel.cs
mvegaca/PoC
06ca8a8c00ad6f98d8d9ce33a4415bb2f2e05204
[ "Apache-2.0" ]
null
null
null
WTS/Features/AppExtension/SampleAppExtensions/SampleAppHost/ViewModels/MainViewModel.cs
mvegaca/PoC
06ca8a8c00ad6f98d8d9ce33a4415bb2f2e05204
[ "Apache-2.0" ]
1
2018-11-24T12:58:23.000Z
2018-11-24T12:58:23.000Z
WTS/Features/AppExtension/SampleAppExtensions/SampleAppHost/ViewModels/MainViewModel.cs
mvegaca/PoC
06ca8a8c00ad6f98d8d9ce33a4415bb2f2e05204
[ "Apache-2.0" ]
null
null
null
using System; using System.Windows.Input; using SampleAppHost.Helpers; using SampleAppHost.Services; namespace SampleAppHost.ViewModels { public class MainViewModel : Observable { public ICommand DebugCommand { get; } public MainViewModel() { DebugCommand = new RelayCommand(OnDebugCommandExecute); } public async void OnDebugCommandExecute() { foreach (var extension in App.ExtensionsService.Extensions) { extension.Enable(); var request = new ExtensionRequest(); await request.AddParameterAsync("Parameter01", "Hello World"); await request.AddParameterAsync("Parameter02", 2018); await request.AddParameterAsync("Parameter03", new DateTime(2018, 3, 19)); var response = await extension.InvokeAsync(request); var response01 = await response.GetValueAsync<string>("Response01"); var response02 = await response.GetValueAsync<int>("Response02"); var response03 = await response.GetValueAsync<DateTime>("Response03"); } } } }
33.971429
90
0.619849
bc672a70719853353cdbdf8278807cff93d51085
20,748
lua
Lua
hammerspoon/.hammerspoon/Spoons/EmmyLua.spoon/annotations/hs.pasteboard.lua
xaviervalarino/dotfiles
e108e2edfadd8c18b6a19079cef40d12d00c4b52
[ "MIT" ]
4
2017-04-19T06:03:16.000Z
2022-03-31T02:25:09.000Z
hammerspoon/.hammerspoon/Spoons/EmmyLua.spoon/annotations/hs.pasteboard.lua
xaviervalarino/dotfiles
e108e2edfadd8c18b6a19079cef40d12d00c4b52
[ "MIT" ]
null
null
null
hammerspoon/.hammerspoon/Spoons/EmmyLua.spoon/annotations/hs.pasteboard.lua
xaviervalarino/dotfiles
e108e2edfadd8c18b6a19079cef40d12d00c4b52
[ "MIT" ]
null
null
null
--# selene: allow(unused_variable) ---@diagnostic disable: unused-local -- Inspect/manipulate pasteboards (more commonly called clipboards). Both the system default pasteboard and custom named pasteboards can be interacted with. -- -- This module is based partially on code from the previous incarnation of Mjolnir by [Steven Degutis](https://github.com/sdegutis/). ---@class hs.pasteboard local M = {} hs.pasteboard = M -- An array whose elements are a table containing the content types for each element on the clipboard. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- -- Returns: -- * an array with each index representing an object on the pasteboard. If the pasteboard contains only one element, this is equivalent to `{ hs.pasteboard.contentTypes(name) }`. function M.allContentTypes(name, ...) end -- Invokes callback when the specified pasteoard has changed or the timeout is reached. -- -- Parameters: -- * `name` - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * `timeout` - an optional number, default 2.0, specifying the time in seconds that this function should wait for a change to the specified pasteboard before timing out. -- * `callback` - a required callback function that will be invoked when either the specified pasteboard contents have changed or the timeout has been reached. The function should expect one boolean argument, true if the pasteboard contents have changed or false if timeout has been reached. -- -- Returns: -- * None -- -- Notes: -- * This function can be used to capture the results of a copy operation issued programatically with `hs.application:selectMenuItem` or `hs.eventtap.keyStroke` without resorting to creating your own timers: -- ~~~ -- hs.eventtap.keyStroke({"cmd"}, "c", 0) -- or whatever method you want to trigger the copy -- hs.pasteboard.callbackWhenChanged(5, function(state) -- if state then -- local contents = hs.pasteboard.getContents() -- -- do what you want with contents -- else -- error("copy timeout") -- or whatever fallback you want when it timesout -- end -- end) -- ~~~ function M.callbackWhenChanged(name, timeout, callback, ...) end -- Gets the number of times the pasteboard owner has changed -- -- Parameters: -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * A number containing a count of the times the pasteboard owner has changed -- -- Notes: -- * This is useful for seeing if the pasteboard has been updated by another process ---@return number function M.changeCount(name, ...) end -- Clear the contents of the pasteboard -- -- Parameters: -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * None function M.clearContents(name, ...) end -- Return the UTI strings of the data types for the first pasteboard item on the specified pasteboard. -- -- Parameters: -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * a table containing the UTI strings of the data types for the first pasteboard item. function M.contentTypes(name, ...) end -- Deletes a custom pasteboard -- -- Parameters: -- * name - A string containing the name of the pasteboard -- -- Returns: -- * None -- -- Notes: -- * You can not delete the system pasteboard, this function should only be called on custom pasteboards you have created function M.deletePasteboard(name, ...) end -- Gets the contents of the pasteboard -- -- Parameters: -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * A string containing the contents of the pasteboard, or nil if an error occurred function M.getContents(name, ...) end -- Return the pasteboard type identifier strings for the specified pasteboard. -- -- Parameters: -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * a table containing the pasteboard type identifier strings function M.pasteboardTypes(name, ...) end -- Returns all values in the first item on the pasteboard in a table that maps a UTI value to the raw data of the item -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- -- Returns: -- a mapping from a UTI value to the raw data function M.readAllData(name, ...) end -- Returns the first item on the pasteboard with the specified UTI. The data on the pasteboard must be encoded as a keyed archive object conforming to NSKeyedArchiver. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to retrieve. -- -- Returns: -- * a lua item representing the archived data if it can be decoded. Generates an error if the data is in the wrong format. -- -- Notes: -- * NSKeyedArchiver specifies an architecture-independent format that is often used in OS X applications to store and transmit objects between applications and when storing data to a file. It works by recording information about the object types and key-value pairs which make up the objects being stored. -- * Only objects which have conversion functions built in to Hammerspoon can be converted. A string representation describing unrecognized types wil be returned. If you find a common data type that you believe may be of interest to Hammerspoon users, feel free to contribute a conversion function or make a request in the Hammerspoon Google group or Github site. -- * Some applications may define their own classes which can be archived. Hammerspoon will be unable to recognize these types if the application does not make the object type available in one of its frameworks. You *may* be able to load the necessary framework with `package.loadlib("/Applications/appname.app/Contents/Frameworks/frameworkname.framework/frameworkname", "*")` before retrieving the data, but a full representation of the data in Hammerspoon is probably not possible without support from the Application's developers. function M.readArchiverDataForUTI(name, uti, ...) end -- Returns one or more `hs.drawing.color` tables from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the colors on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first color on the clipboard, or a table of all colors on the clipboard if the `all` parameter is provided and set to true. Returns nil if no colors are present. function M.readColor(name, all, ...) end -- Returns the first item on the pasteboard with the specified UTI as raw data -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to retrieve. -- -- Returns: -- * a lua string containing the raw data of the specified pasteboard item -- -- Notes: -- * The UTI's of the items on the pasteboard can be determined with the [hs.pasteboard.allContentTypes](#allContentTypes) and [hs.pasteboard.contentTypes](#contentTypes) functions. ---@return string function M.readDataForUTI(name, uti, ...) end -- Returns one or more `hs.image` objects from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the urls on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first image on the clipboard, or a table of all images on the clipboard if the `all` parameter is provided and set to true. Returns nil if no images are present. ---@return hs.image function M.readImage(name, all, ...) end -- Returns the first item on the pasteboard with the specified UTI as a property list item -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to retrieve. -- -- Returns: -- * a lua item representing the property list value of the pasteboard item specified -- -- Notes: -- * The UTI's of the items on the pasteboard can be determined with the [hs.pasteboard.allContentTypes](#allContentTypes) and [hs.pasteboard.contentTypes](#contentTypes) functions. -- * Property lists consist only of certain types of data: tables, strings, numbers, dates, binary data, and Boolean values. function M.readPListForUTI(name, uti, ...) end -- Returns one or more `hs.sound` objects from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the urls on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first sound on the clipboard, or a table of all sounds on the clipboard if the `all` parameter is provided and set to true. Returns nil if no sounds are present. ---@return hs.sound function M.readSound(name, all, ...) end -- Returns one or more strings from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the urls on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first string on the clipboard, or a table of all strings on the clipboard if the `all` parameter is provided and set to true. Returns nil if no strings are present. -- -- Notes: -- * almost all string and styledText objects are internally convertible and will be available with this method as well as [hs.pasteboard.readStyledText](#readStyledText). If the item is actually an `hs.styledtext` object, the string will be just the text of the object. function M.readString(name, all, ...) end -- Returns one or more `hs.styledtext` objects from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the urls on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first styledtext object on the clipboard, or a table of all styledtext objects on the clipboard if the `all` parameter is provided and set to true. Returns nil if no styledtext objects are present. -- -- Notes: -- * almost all string and styledText objects are internally convertible and will be available with this method as well as [hs.pasteboard.readString](#readString). If the item on the clipboard is actually just a string, the `hs.styledtext` object representation will have no attributes set ---@return hs.styledtext function M.readStyledText(name, all, ...) end -- Returns one or more strings representing file or resource urls from the clipboard, or nil if no compatible objects are present. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * all - an optional boolean indicating whether or not all (true) of the urls on the clipboard should be returned, or just the first (false). Defaults to false. -- -- Returns: -- * By default the first url on the clipboard, or a table of all urls on the clipboard if the `all` parameter is provided and set to true. Returns nil if no urls are present. function M.readURL(name, all, ...) end -- Sets the contents of the pasteboard -- -- Parameters: -- * contents - A string to be placed in the pasteboard -- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard -- -- Returns: -- * True if the operation succeeded, otherwise false ---@return boolean function M.setContents(contents, name, ...) end -- Returns a table indicating what content types are available on the pasteboard. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- -- Returns: -- * a table which may contain any of the following keys set to the value true: -- * string - at least one element which can be represented as a string is on the pasteboard -- * styledText - at least one element which can be represented as an `hs.styledtext` object is on the pasteboard -- * sound - at least one element which can be represented as an `hs.sound` object is on the pasteboard -- * image - at least one element which can be represented as an `hs.image` object is on the pasteboard -- * URL - at least one element on the pasteboard represents a URL, either to a local file or a remote resource -- * color - at least one element on the pasteboard represents a color, representable as a table as described in `hs.drawing.color` -- -- Notes: -- * almost all string and styledText objects are internally convertible and will return true for both keys -- * if the item on the clipboard is actually just a string, the `hs.styledtext` object representation will have no attributes set -- * if the item is actually an `hs.styledtext` object, the string representation will be the text without any attributes. function M.typesAvailable(name, ...) end -- Returns the name of a new pasteboard with a name that is guaranteed to be unique with respect to other pasteboards on the computer. -- -- Parameters: -- * None -- -- Returns: -- * a unique pasteboard name -- -- Notes: -- * to properly manage system resources, you should release the created pasteboard with [hs.pasteboard.deletePasteboard](#deletePasteboard) when you are certain that it is no longer necessary. ---@return string function M.uniquePasteboard() end -- Stores in the pasteboard a given table of UTI to data mapping all at once -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * a mapping from a UTI value to the raw data -- -- Returns: -- * True if the operation succeeded, otherwise false (which most likely means ownership of the pasteboard has changed) ---@return boolean function M.writeAllData(name, table, ...) end -- Sets the pasteboard to the contents of the data and assigns its type to the specified UTI. The data will be encoded as an archive conforming to NSKeyedArchiver. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to set. -- * data - any type representable in Lua which will be converted into the appropriate NSObject types and archived with NSKeyedArchiver. All Lua basic types are supported as well as those NSObject types handled by Hammerspoon modules (NSColor, NSStyledText, NSImage, etc.) -- * add - an optional boolean value specifying if data with other UTI values should retain. This value must be strictly either true or false if given, to avoid ambiguity with preceding parameters. -- -- Returns: -- * True if the operation succeeded, otherwise false (which most likely means ownership of the pasteboard has changed) -- -- Notes: -- * NSKeyedArchiver specifies an architecture-independent format that is often used in OS X applications to store and transmit objects between applications and when storing data to a file. It works by recording information about the object types and key-value pairs which make up the objects being stored. -- * Only objects which have conversion functions built in to Hammerspoon can be converted. -- * A full list of NSObjects supported directly by Hammerspoon is planned in a future Wiki article. ---@return boolean function M.writeArchiverDataForUTI(name, uti, data, add, ...) end -- Sets the pasteboard to the contents of the data and assigns its type to the specified UTI. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to set. -- * data - a string specifying the raw data to assign to the pasteboard. -- * add - an optional boolean value specifying if data with other UTI values should retain. This value must be strictly either true or false if given, to avoid ambiguity with preceding parameters. -- -- Returns: -- * True if the operation succeeded, otherwise false (which most likely means ownership of the pasteboard has changed) -- -- Notes: -- * The UTI's of the items on the pasteboard can be determined with the [hs.pasteboard.allContentTypes](#allContentTypes) and [hs.pasteboard.contentTypes](#contentTypes) functions. ---@return boolean function M.writeDataForUTI(name, uti, data, add, ...) end -- Sets the pasteboard contents to the object or objects specified. -- -- Parameters: -- * object - an object or table of objects to set the pasteboard to. The following objects are recognized: -- * a lua string, which can be received by most applications that can accept text from the clipboard -- * `hs.styledtext` object, which can be received by most applications that can accept a raw NSAttributedString (often converted internally to RTF, RTFD, HTML, etc.) -- * `hs.sound` object, which can be received by most applications that can accept a raw NSSound object -- * `hs.image` object, which can be received by most applications that can accept a raw NSImage object -- * a table with the `url` key and value representing a file or resource url, which can be received by most applications that can accept an NSURL object to represent a file or a remote resource -- * a table with keys as described in `hs.drawing.color` to represent a color, which can be received by most applications that can accept a raw NSColor object -- * an array of one or more of the above objects, allowing you to place more than one object onto the clipboard. -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- -- Returns: -- * true or false indicating whether or not the clipboard contents were updated. -- -- Notes: -- * Most applications can only receive the first item on the clipboard. Multiple items on a clipboard are most often used for intra-application communication where the sender and receiver are specifically written with multiple objects in mind. ---@return boolean function M.writeObjects(object, name, ...) end -- Sets the pasteboard to the contents of the data and assigns its type to the specified UTI. -- -- Parameters: -- * name - an optional string indicating the pasteboard name. If nil or not present, defaults to the system pasteboard. -- * uti - a string specifying the UTI of the pasteboard item to set. -- * data - a lua type which can be represented as a property list value. -- * add - an optional boolean value specifying if data with other UTI values should retain. This value must be strictly either true or false if given, to avoid ambiguity with preceding parameters. -- -- Returns: -- * True if the operation succeeded, otherwise false (which most likely means ownership of the pasteboard has changed) -- -- Notes: -- * The UTI's of the items on the pasteboard can be determined with the [hs.pasteboard.allContentTypes](#allContentTypes) and [hs.pasteboard.contentTypes](#contentTypes) functions. -- * Property lists consist only of certain types of data: tables, strings, numbers, dates, binary data, and Boolean values. ---@return boolean function M.writePListForUTI(name, uti, data, add, ...) end
58.610169
536
0.744409
bea8ec1ae703c1cd287c46d70d8af22caa75c07f
2,070
tsx
TypeScript
packages/radio/__tests__/radio.test.tsx
Nature-UI/nature-ui
05eb891d282d37b015eb1d37adf06378629454f4
[ "MIT" ]
48
2021-01-29T05:02:52.000Z
2022-03-01T17:22:01.000Z
packages/radio/__tests__/radio.test.tsx
Nature-UI/nature-ui
05eb891d282d37b015eb1d37adf06378629454f4
[ "MIT" ]
8
2021-01-29T10:02:20.000Z
2022-02-02T10:57:20.000Z
packages/radio/__tests__/radio.test.tsx
Nature-UI/nature-ui
05eb891d282d37b015eb1d37adf06378629454f4
[ "MIT" ]
2
2021-01-31T03:26:39.000Z
2021-05-01T16:32:55.000Z
import { render } from '@nature-ui/test-utils'; import { Radio, useRadio, UseRadioProps } from '../src'; describe('@nature-ui/radio', () => { test('Radio renders correctly', () => { const { asFragment } = render(<Radio size='lg' color='blue-500' />); expect(asFragment()).toMatchSnapshot(); }); test('has proper aria and data attributes', async () => { const Component = (props: UseRadioProps = {}) => { const { getCheckboxProps, getInputProps } = useRadio(props); return ( <label> <input data-testid='input' {...getInputProps()} /> <div data-testid='checkbox' {...getCheckboxProps()} /> </label> ); }; const utils = render(<Component name='name' value='' id='id' />); const input = utils.getByTestId('input'); const checkbox = utils.getByTestId('checkbox'); expect(input).toHaveAttribute('name', 'name'); expect(input).toHaveAttribute('id', 'id'); expect(input).toHaveAttribute('value', ''); expect(input).not.toBeDisabled(); expect(input).not.toHaveAttribute('aria-required'); expect(input).not.toHaveAttribute('aria-invalid'); expect(input).not.toHaveAttribute('aria-disabled'); expect(checkbox).toHaveAttribute('aria-hidden', 'true'); expect(checkbox).not.toHaveAttribute('data-active'); expect(checkbox).not.toHaveAttribute('data-hover'); expect(checkbox).not.toHaveAttribute('data-checked'); expect(checkbox).not.toHaveAttribute('data-focus'); expect(checkbox).not.toHaveAttribute('data-readonly'); // render with various flags enabled utils.rerender(<Component isDisabled isInvalid isReadOnly isRequired />); expect(input).toHaveAttribute('aria-required'); expect(input).toHaveAttribute('aria-invalid'); expect(input).toHaveAttribute('aria-disabled'); expect(input).toBeDisabled(); expect(checkbox).toHaveAttribute('data-readonly'); // input is not truly disabled if focusable utils.rerender(<Component isDisabled isFocusable />); expect(input).not.toBeDisabled(); }); });
38.333333
77
0.663768
bb7f960114120f23e92ba5da1075a128f7385954
2,309
cs
C#
src/Microsoft.DocAsCode.Plugins/RootedFileAbstractLayer.cs
brianlehr/docs-test-temp
03027c8c43d2fdb1d28d04f8a9d6cf67071bcc64
[ "MIT" ]
1
2016-08-03T03:59:50.000Z
2016-08-03T03:59:50.000Z
src/Microsoft.DocAsCode.Plugins/RootedFileAbstractLayer.cs
brianlehr/docs-test-temp
03027c8c43d2fdb1d28d04f8a9d6cf67071bcc64
[ "MIT" ]
null
null
null
src/Microsoft.DocAsCode.Plugins/RootedFileAbstractLayer.cs
brianlehr/docs-test-temp
03027c8c43d2fdb1d28d04f8a9d6cf67071bcc64
[ "MIT" ]
null
null
null
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.DocAsCode.Plugins { using System.Collections.Generic; using System.Collections.Immutable; using System.IO; public class RootedFileAbstractLayer : IFileAbstractLayer { private readonly IFileAbstractLayer _impl; public RootedFileAbstractLayer(IFileAbstractLayer impl) { _impl = impl; } public bool CanRead => true; public bool CanWrite => true; public IEnumerable<string> GetAllInputFiles() => _impl.GetAllInputFiles(); public bool Exists(string file) => Path.IsPathRooted(file) ? File.Exists(file) : _impl.Exists(file); public Stream OpenRead(string file) => Path.IsPathRooted(file) ? File.OpenRead(file) : _impl.OpenRead(file); public Stream Create(string file) { if (Path.IsPathRooted(file)) { var dir = Path.GetDirectoryName(file); if (!string.IsNullOrEmpty(dir)) { Directory.CreateDirectory(dir); } return File.Create(file); } return _impl.Create(file); } public void Copy(string sourceFileName, string destFileName) { if (Path.IsPathRooted(sourceFileName) || Path.IsPathRooted(destFileName)) { var dir = Path.GetDirectoryName(destFileName); if (!string.IsNullOrEmpty(dir)) { Directory.CreateDirectory(dir); } File.Copy(sourceFileName, destFileName, true); File.SetAttributes(destFileName, FileAttributes.Normal); } else { _impl.Copy(sourceFileName, destFileName); } } public ImmutableDictionary<string, string> GetProperties(string file) => Path.IsPathRooted(file) ? ImmutableDictionary<string, string>.Empty : _impl.GetProperties(file); public string GetPhysicalPath(string file) => Path.IsPathRooted(file) ? file : _impl.GetPhysicalPath(file); } }
33.463768
108
0.5877
f4d856921ed21dde6d53e7982daddd2a3d9cc13c
284
ts
TypeScript
src/stackoverflow/59311270/functions.ts
mrdulin/jest-codelab
d85f355c18a62658a5e153dff8ead691c1c9cf7a
[ "MIT" ]
86
2019-09-15T13:34:42.000Z
2022-03-25T17:34:30.000Z
src/stackoverflow/59311270/functions.ts
mrdulin/jest-codelab
d85f355c18a62658a5e153dff8ead691c1c9cf7a
[ "MIT" ]
3
2018-10-09T04:31:30.000Z
2020-09-06T07:26:42.000Z
src/stackoverflow/59311270/functions.ts
mrdulin/jest-codelab
d85f355c18a62658a5e153dff8ead691c1c9cf7a
[ "MIT" ]
31
2020-02-19T10:12:41.000Z
2022-03-05T12:15:45.000Z
export interface IEventData {} export function processEvent() { return (event: IEventData) => { const eventType = exports.getEventType(event); return eventType; }; } function getEventType(event: IEventData): string { return ''; } exports.getEventType = getEventType;
18.933333
50
0.714789
43a0fa32225cab422688ef891d8de35bdf318391
99
ts
TypeScript
src/Objects/SpinnerBonusTick.ts
kionell/osu-standard-stable
22a2ca1c7354e2bcf76da51bb7736a27bdb2ff1d
[ "MIT" ]
2
2021-12-17T06:36:09.000Z
2022-01-19T14:02:13.000Z
src/Objects/SpinnerBonusTick.ts
kionell/osu-standard-stable
22a2ca1c7354e2bcf76da51bb7736a27bdb2ff1d
[ "MIT" ]
null
null
null
src/Objects/SpinnerBonusTick.ts
kionell/osu-standard-stable
22a2ca1c7354e2bcf76da51bb7736a27bdb2ff1d
[ "MIT" ]
1
2021-12-17T06:35:40.000Z
2021-12-17T06:35:40.000Z
import { SpinnerTick } from './SpinnerTick'; export class SpinnerBonusTick extends SpinnerTick {}
24.75
52
0.777778
a9e9fa1af89de9a8ebd97c011016cdbeedb23cf8
489
php
PHP
backend/views/menu/add.php
yingyingguai/baijia
77148356ffafe315f8e7d6bed2d51bd5f7341766
[ "BSD-3-Clause" ]
1
2018-12-10T06:00:37.000Z
2018-12-10T06:00:37.000Z
backend/views/menu/add.php
yingyingguai/baijia
77148356ffafe315f8e7d6bed2d51bd5f7341766
[ "BSD-3-Clause" ]
null
null
null
backend/views/menu/add.php
yingyingguai/baijia
77148356ffafe315f8e7d6bed2d51bd5f7341766
[ "BSD-3-Clause" ]
null
null
null
<?php $form = \yii\bootstrap\ActiveForm::begin(); echo $form->field($model,'label')->textInput()->label("名称"); echo $form->field($model,'parent_id')->dropDownList($menu_options,['prompt'=>'--请选择上级菜单--'])->label('上级菜单'); echo $form->field($model,'url')->dropDownList($options,['prompt'=>'--请选择路由--'])->label('地址(路由)'); echo $form->field($model,'sort')->textInput()->label('排序'); echo \yii\bootstrap\Html::submitButton("提交",['class=>btn btn-primary']); \yii\bootstrap\ActiveForm::end();
54.333333
109
0.656442
1dd959fd04592f4c3add6b57f17d882d9e4597c4
12,815
ps1
PowerShell
src/PowerShell/PSBouncyCastleCertChainGenerationScript.ps1
ryanspletzer/scripts
613ea6432c7d4484f920b4acb21753a5fbb17236
[ "MIT" ]
2
2018-02-25T23:13:34.000Z
2018-03-27T11:34:08.000Z
src/PowerShell/PSBouncyCastleCertChainGenerationScript.ps1
ryanspletzer/Scripts
613ea6432c7d4484f920b4acb21753a5fbb17236
[ "MIT" ]
null
null
null
src/PowerShell/PSBouncyCastleCertChainGenerationScript.ps1
ryanspletzer/Scripts
613ea6432c7d4484f920b4acb21753a5fbb17236
[ "MIT" ]
null
null
null
<# .SYNOPSIS A script for generating a certificate chain for development / testing purposes using the PSBouncyCastle module, which wraps the Bouncy Castle C# library. .PARAMETER CompanyName CompanyName will be used in the subject name and other attributes of the certificates. Specify -CompanyName as a parameter for this script or be interactively prompted for one. .PARAMETER CompanyWebsite The company website for the issuer. .PARAMETER SSLSubjectCN The SSL Subject common name. .PARAMETER SSLSANs The SSL Subject alternative names in a string array. .PARAMETER Organization The organization for the child certificates (can be different from the issuer). .PARAMETER Location The location for the child certificates (usually city). .PARAMETER Country The country abbrevation for the child certificates. .PARAMETER DocEncryptionSubjectCN The Subject common name for the document encryption certificate (can be whatever you want). .PARAMETER PfxPassword Optional password to use to secure the Pfx certificates. .PARAMETER OutputDirectory Output directory path where the certificate chain files will be exported. Specify -OutputPath as a paramter for this script or be interactively promptd for one. .LINKS This script is based on examples provided by PSBouncyCastle PowerShell module's author Roger Lipscombe. Module: https://github.com/rlipscombe/PSBouncyCastle Blog Posts: http://blog.differentpla.net/blog/2013/04/17/how-do-i-use-bouncy-castle-from-powershell http://blog.differentpla.net/blog/2013/04/17/powershell-bouncy-castle-and-extended-key-usage http://blog.differentpla.net/blog/2013/04/17/powershell-bouncy-castle-and-subject-alternative-names References: http://www.bouncycastle.org/wiki/display/JA1/X.509+Public+Key+Certificate+and+Certification+Request+Generation .NOTES This script models its cert chain after DigiCert's root and intermediate attribute usage. Child certs that are created are an SSL certificate as well as a document encryption certificate. SSL is useful for IIS purposes. Document encryption is useful for PowerShell Desired State Configuration encryption of secrets in the MOF file. More child certs could be created for different uses (like client authentication) but this fit my needs for now. This script purposefully does not include Authority Information Access attribute for OCSP, cRL Distribution Points attribute or Certificate Policies, or Extended Validation attributes, as these are often environment- and/or browser-specific. #> param ( [ValidateNotNullOrEmpty()] [String] $CompanyName = (Read-Host -Prompt "Enter a the issuing company name"), [ValidateNotNullOrEmpty()] [String] $CompanyWebSite = (Read-Host -Prompt "Enter the issuing company website in the form www.company.com"), [ValidateNotNullOrEmpty()] [String] $SSLSubjectCN = (Read-Host -Prompt "Enter subject common name for SSL cert (hint: wildcard or standard URL)"), [String[]] $SSLSANs = (Read-Host -Prompt "Enter a comma-separated list of subject alternative names for SSL").Split(","), [ValidateNotNullOrEmpty()] [String] $Organization = (Read-Host -Prompt "Enter organization (can be same or different from issuing company name)"), [ValidateNotNullOrEmpty()] [String] $Location = (Read-Host -Prompt "Enter the location / site"), [ValidateNotNullOrEmpty()] [String] $Country = (Read-Host -Prompt "Enter the country abbreviation"), [ValidateNotNullOrEmpty()] [String] $DocEncryptionSubjectCN = (Read-Host -Prompt "Enter the subject common name for doc encryption cert (anything)"), [ValidateNotNullOrEmpty()] [SecureString] $PfxPassword = (Read-Host -Prompt "Enter the Pfx password" -AsSecureString), [ValidateScript({ (Test-Path -Path $_ -PathType Container) })] [ValidateNotNullOrEmpty()] [String] $OutputDirectory = (Read-Host -Prompt "Enter an output directory path") ) #region Install the Module if need be. # You can hand copy into Program Files\WindowsPowerShell\Modules if you like and skip these lines. # Below requires that git is available in your PATH to call. If not, pop into the Git Shell and run this. if (-not (Get-Module -Name PSBouncyCastle -ListAvailable)) { Set-Location (Join-Path (Split-Path $PROFILE) 'Modules') git clone https://github.com/rlipscombe/PSBouncyCastle.git } #endregion Import-Module -Name PSBouncyCastle #region Generate the Root Certificate Write-Verbose -Message "Generating Root Certificate" $random = New-SecureRandom $serialNumber = New-SerialNumber -Random $random $certificateGenerator = New-CertificateGenerator $certificateGenerator.SetSerialNumber($serialNumber) $signatureAlgorithm = "SHA1WITHRSAENCRYPTION" $certificateGenerator.SetSignatureAlgorithm($signatureAlgorithm) $subjectName = "C=$Country,O=$CompanyName,OU=$CompanyWebSite,CN=$CompanyName Global Root CA" $subjectDN = New-Object Org.BouncyCastle.Asn1.X509.X509Name($subjectName) $issuerDN = $subjectDN $certificateGenerator.SetIssuerDN($issuerDN) $certificateGenerator.SetSubjectDN($subjectDN) $notBefore = [DateTime]::UtcNow.Date $certificateGenerator.SetNotBefore($notBefore) $notAfter = $notBefore.AddYears(30) $certificateGenerator.SetNotAfter($notAfter) $subjectKeyPair = New-KeyPair -Random $random $certificateGenerator.SetPublicKey($subjectKeyPair.Public) $issuerKeyPair = $subjectKeyPair $issuerSerialNumber = $serialNumber $authorityKeyIdentifier = New-AuthorityKeyIdentifier -name $issuerDN -publicKey $issuerKeyPair.Public -serialNumber $issuerSerialNumber $subjectKeyIdentifier = New-SubjectKeyIdentifier -publicKey $subjectKeyPair.Public $certificateGenerator | Add-AuthorityKeyIdentifier -authorityKeyIdentifier $authorityKeyIdentifier | Add-SubjectKeyIdentifier -subjectKeyIdentifier $subjectKeyIdentifier | Add-BasicConstraints -isCertificateAuthority $true | Add-KeyUsage -DigitalSignature -KeyCertSign -CrlSign | Add-ExtendedKeyUsage -ServerAuthentication -ClientAuthentication -EmailProtection -CodeSigning -TimeStamping | Out-Null $certificate = $certificateGenerator.Generate($issuerKeyPair.Private, $random) $result = ConvertFrom-BouncyCastleCertificate -certificate $certificate -subjectKeyPair $subjectKeyPair -friendlyName $CompanyName Export-Certificate -Certificate $result -OutputFile ($OutputDirectory.TrimEnd("\") + "\root.pfx") -OutputFormat 'DER' -X509ContentType "Pfx" -Password $PfxPassword Write-Verbose -Message "Root Certificate Generated" #endregion #region Generate the Intermediate Signing Certificate Write-Verbose -Message "Generating Intermediate Signing Certificate" $serialNumber = New-SerialNumber -Random $random $certificateGenerator = New-CertificateGenerator $certificateGenerator.SetSerialNumber($serialNumber) $signatureAlgorithm = "SHA256WITHRSAENCRYPTION" $certificateGenerator.SetSignatureAlgorithm($signatureAlgorithm) $certificateGenerator.SetIssuerDN($issuerDN) $subjectName = "C=$Country,O=$CompanyName,CN=$CompanyName SHA 2 Intermediate CA" $subjectDN = New-Object Org.BouncyCastle.Asn1.X509.X509Name($subjectName) $certificateGenerator.SetSubjectDN($subjectDN) $notBefore = [DateTime]::UtcNow.Date $certificateGenerator.SetNotBefore($notBefore) $notAfter = $notBefore.AddYears(29) $certificateGenerator.SetNotAfter($notAfter) $subjectKeyPair = New-KeyPair -Random $random $certificateGenerator.SetPublicKey($subjectKeyPair.Public) $authorityKeyIdentifier = New-AuthorityKeyIdentifier -name $issuerDN -publicKey $issuerKeyPair.Public -serialNumber $issuerSerialNumber $subjectKeyIdentifier = New-SubjectKeyIdentifier -publicKey $subjectKeyPair.Public $certificateGenerator | Add-AuthorityKeyIdentifier -authorityKeyIdentifier $authorityKeyIdentifier | Add-SubjectKeyIdentifier -subjectKeyIdentifier $subjectKeyIdentifier | Add-BasicConstraints -isCertificateAuthority $true | Add-KeyUsage -DigitalSignature -KeyCertSign -CrlSign | Add-ExtendedKeyUsage -ServerAuthentication -ClientAuthentication -EmailProtection -CodeSigning -TimeStamping | Out-Null $certificate = $certificateGenerator.Generate($issuerKeyPair.Private) $result = ConvertFrom-BouncyCastleCertificate -certificate $certificate -subjectKeyPair $subjectKeyPair -friendlyName "$CompanyName SHA 2 Intermediate CA" $issuerSerialNumber = $serialNumber $issuerKeyPair = $subjectKeyPair $issuerDN = $subjectDN Export-Certificate -Certificate $result -OutputFile ($OutputDirectory.TrimEnd("\") + "\intermediate.pfx") -OutputFormat 'DER' -X509ContentType "Pfx" -Password $PfxPassword Write-Verbose -Message "Intermediate Signing Certificate Generated" #endregion #region Generate the SSL Certificate Write-Verbose -Message "Generating SSL Certificate" $serialNumber = New-SerialNumber -Random $random $certificateGenerator = New-CertificateGenerator $certificateGenerator.SetSerialNumber($serialNumber) $signatureAlgorithm = "SHA256WITHRSAENCRYPTION" $certificateGenerator.SetSignatureAlgorithm($signatureAlgorithm) $certificateGenerator.SetIssuerDN($issuerDN) $subjectName = "C=$Country,L=$Location,O=$Organization,CN=$SSLSubjectCN" $subjectDN = New-Object Org.BouncyCastle.Asn1.X509.X509Name($subjectName) $certificateGenerator.SetSubjectDN($subjectDN) $notBefore = [DateTime]::UtcNow.Date $certificateGenerator.SetNotBefore($notBefore) $notAfter = $notBefore.AddYears(29) $certificateGenerator.SetNotAfter($notAfter) $subjectKeyPair = New-KeyPair -Random $random $certificateGenerator.SetPublicKey($subjectKeyPair.Public) $authorityKeyIdentifier = New-AuthorityKeyIdentifier -name $issuerDN -publicKey $issuerKeyPair.Public -serialNumber $issuerSerialNumber $subjectKeyIdentifier = New-SubjectKeyIdentifier -publicKey $subjectKeyPair.Public $certificateGenerator | Add-AuthorityKeyIdentifier -authorityKeyIdentifier $authorityKeyIdentifier | Add-SubjectKeyIdentifier -subjectKeyIdentifier $subjectKeyIdentifier | Add-BasicConstraints -isCertificateAuthority $false | Add-KeyUsage -DigitalSignature -KeyEncipherment | Add-ExtendedKeyUsage -ServerAuthentication -ClientAuthentication | Add-SubjectAlternativeName -DnsName $SSLSANs | Out-Null $certificate = $certificateGenerator.Generate($issuerKeyPair.Private) $result = ConvertFrom-BouncyCastleCertificate -certificate $certificate -subjectKeyPair $subjectKeyPair -friendlyName $SSLSubjectCN Export-Certificate -Certificate $result -OutputFile ($OutputDirectory.TrimEnd("\") + "\ssl.pfx") -OutputFormat 'DER' -X509ContentType "Pfx" -Password $PfxPassword Write-Verbose -Message "SSL Certificate Generated" #endregion #region Generate the Document Encryption Certificate Write-Verbose -Message "Generating Document Encryption Certificate" $serialNumber = New-SerialNumber -Random $random $certificateGenerator = New-CertificateGenerator $certificateGenerator.SetSerialNumber($serialNumber) $signatureAlgorithm = "SHA256WITHRSAENCRYPTION" $certificateGenerator.SetSignatureAlgorithm($signatureAlgorithm) $certificateGenerator.SetIssuerDN($issuerDN) $subjectName = "C=$Country,L=$Location,O=$Organization,CN=$DocEncryptionSubjectCN" $subjectDN = New-Object Org.BouncyCastle.Asn1.X509.X509Name($subjectName) $certificateGenerator.SetSubjectDN($subjectDN) $notBefore = [DateTime]::UtcNow.Date $certificateGenerator.SetNotBefore($notBefore) $notAfter = $notBefore.AddYears(29) $certificateGenerator.SetNotAfter($notAfter) $subjectKeyPair = New-KeyPair -Random $random $certificateGenerator.SetPublicKey($subjectKeyPair.Public) $authorityKeyIdentifier = New-AuthorityKeyIdentifier -name $issuerDN -publicKey $issuerKeyPair.Public -serialNumber $issuerSerialNumber $subjectKeyIdentifier = New-SubjectKeyIdentifier -publicKey $subjectKeyPair.Public $certificateGenerator | Add-AuthorityKeyIdentifier -authorityKeyIdentifier $authorityKeyIdentifier | Add-SubjectKeyIdentifier -subjectKeyIdentifier $subjectKeyIdentifier | Add-BasicConstraints -isCertificateAuthority $false | Add-KeyUsage -DigitalSignature -KeyEncipherment | Add-ExtendedKeyUsage -Oid "1.3.6.1.4.1.311.80.1" | Out-Null $certificate = $certificateGenerator.Generate($issuerKeyPair.Private) $result = ConvertFrom-BouncyCastleCertificate -certificate $certificate -subjectKeyPair $subjectKeyPair -friendlyName $DocEncryptionSubjectCN Export-Certificate -Certificate $result -OutputFile ($OutputDirectory.TrimEnd("\") + "\docencryption.pfx") -OutputFormat 'DER' -X509ContentType "Pfx" -Password $PfxPassword Write-Verbose -Message "Document Encryption Certificate Generated" #endregion
50.254902
172
0.787671
6a16535dffdb19dc8a320602be072de67c52fb89
41
lua
Lua
app/arrowdata9.lua
emersonhsieh/swipemaze
bc382ef5ad8f59cd610d0539c2e572841ee77545
[ "MIT" ]
null
null
null
app/arrowdata9.lua
emersonhsieh/swipemaze
bc382ef5ad8f59cd610d0539c2e572841ee77545
[ "MIT" ]
null
null
null
app/arrowdata9.lua
emersonhsieh/swipemaze
bc382ef5ad8f59cd610d0539c2e572841ee77545
[ "MIT" ]
null
null
null
--my global space local M = {} return M
13.666667
18
0.634146
4d2cf792e5616ac2e673787cc9de3c3f14cbb4f1
895
cs
C#
src/Microsoft.AspNet.WebHooks.Receivers.VSTS/Payloads/BuildCompletedRequest.cs
smunish/AspNetWebHooks
0e18442a05db4fa4bb9b4604079215bf0423763e
[ "Apache-2.0" ]
97
2018-01-21T00:02:12.000Z
2022-03-31T07:42:17.000Z
src/Microsoft.AspNet.WebHooks.Receivers.VSTS/Payloads/BuildCompletedRequest.cs
smunish/AspNetWebHooks
0e18442a05db4fa4bb9b4604079215bf0423763e
[ "Apache-2.0" ]
53
2018-01-19T19:06:55.000Z
2022-03-14T10:52:16.000Z
src/Microsoft.AspNet.WebHooks.Receivers.VSTS/Payloads/BuildCompletedRequest.cs
niranjanphadke/Test
a2d811b16554fa552e49012096543aa818f5caa3
[ "Apache-2.0" ]
95
2018-01-20T21:14:38.000Z
2022-03-31T07:42:19.000Z
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Newtonsoft.Json; namespace Microsoft.AspNet.WebHooks.Payloads { /// <summary> /// Describes the request of the build. /// </summary> public class BuildCompletedRequest { /// <summary> /// Gets the identifier of the request. /// </summary> [JsonProperty("id")] public int Id { get; set; } /// <summary> /// Gets the URL of the request. /// </summary> [JsonProperty("url")] public Uri Url { get; set; } /// <summary> /// Gets the user associated with the request. /// </summary> [JsonProperty("requestedFor")] public ResourceUser RequestedFor { get; set; } } }
27.121212
111
0.586592
b0707e3087d3b8b9a86e0ca6a856ccdc634efea8
4,176
py
Python
tensorflow_graphics/projects/points_to_3Dobjects/transforms/preprocessor.py
Liang813/graphics
71ab1775228a0a292427551350cbb62bfa8bd01a
[ "Apache-2.0" ]
2,759
2019-01-08T10:40:34.000Z
2022-03-28T13:49:37.000Z
tensorflow_graphics/projects/points_to_3Dobjects/transforms/preprocessor.py
Liang813/graphics
71ab1775228a0a292427551350cbb62bfa8bd01a
[ "Apache-2.0" ]
262
2019-04-28T12:25:49.000Z
2022-03-24T19:35:15.000Z
tensorflow_graphics/projects/points_to_3Dobjects/transforms/preprocessor.py
Liang813/graphics
71ab1775228a0a292427551350cbb62bfa8bd01a
[ "Apache-2.0" ]
380
2019-05-09T00:14:45.000Z
2022-03-31T12:48:25.000Z
# Copyright 2020 The TensorFlow Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Preprocess.""" # python3 import inspect from google3.third_party.tensorflow_models.object_detection.core import preprocessor def preprocess(tensor_dict, preprocess_options, func_arg_map=None, preprocess_vars_cache=None): """Preprocess sample before the batch is created. Inspired by: google3.third_party.tensorflow_models.object_detection.core.preprocessor preprocessor Args: tensor_dict: dictionary that contains images, boxes, and can contain other things as well. preprocess_options: It is a list of tuples, where each tuple contains a function and a dictionary that contains arguments and their values. func_arg_map: mapping from preprocessing functions to arguments that they expect to receive and return. For each key (which is the function), there should be a list with the keys in the tensor_dict. The order of the list should be the same as the order in the function arguments. Its values can also be None if the input argument is not used. preprocess_vars_cache: PreprocessorCache object that records previously performed augmentations. Updated in-place. If this function is called multiple times with the same non-null cache, it will perform deterministically. Returns: tensor_dict: which contains the preprocessed images, bounding boxes, etc. Raises: ValueError: (a) If the functions passed to Preprocess are not in func_arg_map. (b) If the arguments that a function needs do not exist in tensor_dict. The output of the function should return the tensors that will be assigned to tensor_dict keys using the same order mapping as the input in func_arg_map. Example to resize image: preprocess_options = [(preprocessor.resize_image, {'new_height': 600, 'new_width': 1024})] func_arg_map = {preprocessor.resize_to_range: (fields.InputDataFields.image)} """ if func_arg_map is None: func_arg_map = preprocessor.get_default_func_arg_map() # Preprocess inputs based on preprocess_options for option in preprocess_options: func, params = option if func not in func_arg_map: raise ValueError('The function %s does not exist in func_arg_map' % (func.__name__)) arg_names = func_arg_map[func] if isinstance(arg_names[0], (list, tuple)): arg_names_input, arg_names_output = arg_names else: arg_names_input, arg_names_output = arg_names, arg_names arg_names_input = [a if a in tensor_dict else None for a in arg_names_input] # for a in arg_names_input: # if a is not None and a not in tensor_dict: # raise ValueError('The function %s requires argument %s' % # (func.__name__, a)) def get_arg(key): return tensor_dict[key] if key is not None else None args = [get_arg(a) for a in arg_names_input] if preprocess_vars_cache is not None: arg_spec = inspect.getfullargspec(func) if 'preprocess_vars_cache' in arg_spec.args: params['preprocess_vars_cache'] = preprocess_vars_cache results = func(*args, **params) if not isinstance(results, (list, tuple)): results = (results,) # Removes None args since the return values will not contain those. # arg_names = [ # arg_name for arg_name in arg_names_output if arg_name is not None # ] for res, arg_name in zip(results, arg_names_output): if res is not None: tensor_dict[arg_name] = res return tensor_dict
40.153846
84
0.712883
1a551ed464d04d74bfa042f1350e3a199fa5bb37
141
py
Python
project-mm-2015/src/test/capture_webcam.py
caioviel/project-mm-2015
61a943b79b42929b9003c7af65d9f0c7edaafb7b
[ "MIT" ]
null
null
null
project-mm-2015/src/test/capture_webcam.py
caioviel/project-mm-2015
61a943b79b42929b9003c7af65d9f0c7edaafb7b
[ "MIT" ]
3
2015-04-26T18:35:04.000Z
2015-04-26T20:17:10.000Z
project-mm-2015/src/test/capture_webcam.py
caioviel/project-mm-2015
61a943b79b42929b9003c7af65d9f0c7edaafb7b
[ "MIT" ]
null
null
null
def main(): print "testing capture_webcam" import video video.avconv.AVConverter if __name__ == "__main__": main ()
11.75
34
0.624113
8e5920fab5a81e6c0e7979fb9d6de76e8050f656
609
js
JavaScript
client/build/precache-manifest.0783295750ee73855e0c5ce2a0452696.js
skendall74/googleBooksSearch
75385168f608b7dae7c1d468b9a7a3f9181c3b6d
[ "MIT" ]
null
null
null
client/build/precache-manifest.0783295750ee73855e0c5ce2a0452696.js
skendall74/googleBooksSearch
75385168f608b7dae7c1d468b9a7a3f9181c3b6d
[ "MIT" ]
null
null
null
client/build/precache-manifest.0783295750ee73855e0c5ce2a0452696.js
skendall74/googleBooksSearch
75385168f608b7dae7c1d468b9a7a3f9181c3b6d
[ "MIT" ]
null
null
null
self.__precacheManifest = [ { "revision": "5484b301881c29f5a679", "url": "/static/css/main.d8830cb2.chunk.css" }, { "revision": "5484b301881c29f5a679", "url": "/static/js/main.f6ea9c8a.chunk.js" }, { "revision": "42ac5946195a7306e2a5", "url": "/static/js/runtime~main.a8a9905a.js" }, { "revision": "bd6c54a403127fecc5bf", "url": "/static/js/2.ecb1a62b.chunk.js" }, { "revision": "e5502ba37d6bb108ab8e138369b4b56e", "url": "/static/media/library.e5502ba3.jpg" }, { "revision": "c73a5ec1418a99de37c7261b2c37edfa", "url": "/index.html" } ];
23.423077
51
0.622332
750d2782032a1a06ec4a83c56437132a008745c8
172,490
css
CSS
public/assets/css/toastui-editor.css
Mohammedwm/ecommerce-app
9760fa37adc2c4b001da9fa85684183c6e98287e
[ "MIT" ]
null
null
null
public/assets/css/toastui-editor.css
Mohammedwm/ecommerce-app
9760fa37adc2c4b001da9fa85684183c6e98287e
[ "MIT" ]
null
null
null
public/assets/css/toastui-editor.css
Mohammedwm/ecommerce-app
9760fa37adc2c4b001da9fa85684183c6e98287e
[ "MIT" ]
null
null
null
/*! * @toast-ui/editor * @version 3.1.1 | Wed Oct 27 2021 * @author NHN FE Development Lab <[email protected]> * @license MIT */ .ProseMirror { position: relative; } .ProseMirror { word-wrap: break-word; white-space: pre-wrap; white-space: break-spaces; -webkit-font-variant-ligatures: none; font-variant-ligatures: none; font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */ } .ProseMirror pre { white-space: pre-wrap; } .ProseMirror li { position: relative; } .ProseMirror-hideselection *::selection { background: transparent; } .ProseMirror-hideselection *::-moz-selection { background: transparent; } .ProseMirror-hideselection { caret-color: transparent; } .ProseMirror-selectednode { outline: 2px solid #8cf; } /* Make sure li selections wrap around markers */ li.ProseMirror-selectednode { outline: none; } li.ProseMirror-selectednode:after { content: ""; position: absolute; left: -32px; right: -2px; top: -2px; bottom: -2px; border: 2px solid #8cf; pointer-events: none; } @charset "utf-8"; /* height */ .auto-height, .auto-height .toastui-editor-defaultUI { height: auto; } .auto-height .toastui-editor-md-container { position: relative; } :not(.auto-height) > .toastui-editor-defaultUI, :not(.auto-height) > .toastui-editor-defaultUI > .toastui-editor-main { display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; } :not(.auto-height) > .toastui-editor-defaultUI > .toastui-editor-main { -ms-flex: 1; flex: 1; } /* toastui editor */ .toastui-editor-md-container::after, .toastui-editor-defaultUI-toolbar::after { content: ''; display: block; height: 0; clear: both; } .toastui-editor-main { min-height: 0px; position: relative; height: inherit; box-sizing: border-box; } .toastui-editor-md-container { display: none; overflow: hidden; height: 100%; } .toastui-editor-md-container .toastui-editor { line-height: 1.5; position: relative; } .toastui-editor-md-container .toastui-editor, .toastui-editor-md-container .toastui-editor-md-preview { box-sizing: border-box; padding: 0; height: inherit; } .toastui-editor-md-container .toastui-editor-md-preview { overflow: auto; padding: 0 25px; height: 100%; } .toastui-editor-md-container .toastui-editor-md-preview > p:first-child { margin-top: 0 !important; } .toastui-editor-md-container .toastui-editor-md-preview .toastui-editor-contents { padding-top: 8px; } .toastui-editor-main .toastui-editor-md-tab-style > .toastui-editor, .toastui-editor-main .toastui-editor-md-tab-style > .toastui-editor-md-preview { width: 100%; display: none; } .toastui-editor-main .toastui-editor-md-tab-style > .active { display: block; } .toastui-editor-main .toastui-editor-md-vertical-style > .toastui-editor-tabs { display: none; } .toastui-editor-main .toastui-editor-md-tab-style > .toastui-editor-tabs { display: block; } .toastui-editor-main .toastui-editor-md-vertical-style .toastui-editor { width: 50%; } .toastui-editor-main .toastui-editor-md-vertical-style .toastui-editor-md-preview { width: 50%; } .toastui-editor-main .toastui-editor-md-splitter { display: none; height: 100%; width: 1px; background-color: #ebedf2; position: absolute; left: 50%; } .toastui-editor-main .toastui-editor-md-vertical-style .toastui-editor-md-splitter { display: block; } .toastui-editor-ww-container { display: none; overflow: hidden; height: inherit; background-color: #fff; } .auto-height .toastui-editor-main-container { position: relative; } .toastui-editor-main-container { position: absolute; line-height: 1; color: #222; width: 100%; height: inherit; } .toastui-editor-ww-container > .toastui-editor { height: inherit; position: relative; width: 100%; } .toastui-editor-ww-container .toastui-editor-contents { overflow: auto; box-sizing: border-box; margin: 0px; padding: 16px 25px 0px 25px; height: inherit; } .toastui-editor-ww-container .toastui-editor-contents p { margin: 0; } .toastui-editor-md-mode .toastui-editor-md-container, .toastui-editor-ww-mode .toastui-editor-ww-container { display: block; z-index: 20; } .toastui-editor-md-mode .toastui-editor-md-vertical-style { display: -ms-flexbox; display: flex; } .toastui-editor-main.hidden, .toastui-editor-defaultUI.hidden { display: none; } /* default UI Styles */ .toastui-editor-defaultUI .ProseMirror { padding: 18px 25px; } .toastui-editor-defaultUI { position: relative; border: 1px solid #dadde6; height: 100%; font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕', 'Nanum Barun Gothic', '맑은고딕', 'Malgun Gothic', sans-serif; border-radius: 4px; } .toastui-editor-defaultUI button { color: #333; height: 28px; font-size: 13px; cursor: pointer; border: none; border-radius: 2px; } .toastui-editor-defaultUI .toastui-editor-ok-button { min-width: 63px; height: 32px; background-color: #00a9ff; color: #fff; outline-color: #009bf2; } .toastui-editor-defaultUI .toastui-editor-ok-button:hover { background-color: #009bf2; } .toastui-editor-defaultUI .toastui-editor-close-button { min-width: 63px; height: 32px; background-color: #f7f9fc; border: 1px solid #dadde6; margin-right: 5px; outline-color: #cbcfdb; } .toastui-editor-defaultUI .toastui-editor-close-button:hover { border-color: #cbcfdb; } /* mode switch tab */ .toastui-editor-mode-switch { background-color: #fff; border-top: 1px solid #dadde6; font-size: 12px; text-align: right; height: 28px; padding-right: 10px; border-radius: 0 0 3px 3px; } .toastui-editor-mode-switch .tab-item { display: inline-block; width: 96px; height: 24px; line-height: 24px; text-align: center; background: #f7f9fc; color: #969aa5; margin-top: -1px; margin-right: -1px; cursor: pointer; border: 1px solid #dadde6; border-radius: 0 0 4px 4px; font-weight: 500; box-sizing: border-box; } .toastui-editor-mode-switch .tab-item.active { border-top: 1px solid #fff; background-color: #fff; color: #555; } /* markdown tab */ .toastui-editor-defaultUI .toastui-editor-md-tab-container { float: left; height: 45px; font-size: 13px; background: #f7f9fc; border-bottom: 1px solid #ebedf2; border-top-left-radius: 3px; } .toastui-editor-md-tab-container .toastui-editor-tabs { margin-left: 15px; height: 100%; } .toastui-editor-md-tab-container .tab-item { display: inline-block; width: 70px; height: 33px; line-height: 33px; font-size: 12px; font-weight: 500; text-align: center; background: #eaedf1; color: #969aa5; cursor: pointer; border: 1px solid #dadde6; border-radius: 4px 4px 0 0; box-sizing: border-box; margin-top: 13px; } .toastui-editor-md-tab-container .tab-item.active { border-bottom: 1px solid #fff; background-color: #fff; color: #555; } .toastui-editor-md-tab-container .tab-item:last-child { margin-left: -1px; } /* toolbar */ .toastui-editor-defaultUI-toolbar { display: -ms-flexbox; display: flex; padding: 0 25px; height: 45px; background-color: #f7f9fc; border-bottom: 1px solid #ebedf2; border-radius: 3px 3px 0 0; } .toastui-editor-toolbar { height: 46px; box-sizing: border-box; } .toastui-editor-toolbar-divider { display: inline-block; width: 1px; height: 18px; background-color: #e1e3e9; margin: 14px 12px; } .toastui-editor-toolbar-group { display: -ms-flexbox; display: flex; } .toastui-editor-defaultUI-toolbar button { box-sizing: border-box; cursor: pointer; width: 32px; height: 32px; padding: 0; border-radius: 3px; margin: 7px 5px; border: 1px solid #f7f9fc; } .toastui-editor-defaultUI-toolbar button:not(:disabled):hover { border: 1px solid #e4e7ee; background-color: #fff; } .toastui-editor-defaultUI-toolbar .scroll-sync { display: inline-block; position: relative; width: 70px; height: 10px; text-align: center; line-height: 10px; color: #81858f; cursor: pointer; } .toastui-editor-defaultUI-toolbar .scroll-sync::before { content: 'Scroll'; position: absolute; left: 0; font-size: 14px; } .toastui-editor-defaultUI-toolbar .scroll-sync.active::before { color: #00a9ff; } .toastui-editor-defaultUI-toolbar .scroll-sync input { opacity: 0; width: 0; height: 0; } .toastui-editor-defaultUI-toolbar .switch { position: absolute; top: 0; left: 45px; right: 0; bottom: 0; background-color: #d6d8de; -webkit-transition: .4s; transition: .4s; border-radius: 50px; } .toastui-editor-defaultUI-toolbar input:checked + .switch { background-color: #acddfa; } .toastui-editor-defaultUI-toolbar .switch::before { position: absolute; content: ''; height: 14px; width: 14px; left: 0px; bottom: -2px; background-color: #94979f; -webkit-transition: .4s; transition: .4s; border-radius: 50%; } .toastui-editor-defaultUI-toolbar input:checked + .switch::before { background-color: #00a9ff; -webkit-transform: translateX(12px); -moz-transform: translateX(12px); -ms-transform: translateX(12px); transform: translateX(12px); } .toastui-editor-dropdown-toolbar .scroll-sync { margin: 0 5px; } .toastui-editor-dropdown-toolbar { position: absolute; height: 46px; z-index: 30; border-radius: 2px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08); border: 1px solid #dadde6; background-color: #f7f9fc; display: -ms-flexbox; display: flex; } .toastui-editor-toolbar-item-wrapper { margin: 7px 5px; height: 32px; line-height: 32px; } /* toolbar popup */ .toastui-editor-popup { width: 400px; margin-right: auto; background: #fff; z-index: 30; position: absolute; border-radius: 2px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08); border: 1px solid #dadde6; } .toastui-editor-popup-body { padding: 15px; font-size: 12px; } .toastui-editor-popup-body label { font-weight: 600; color: #555; display: block; margin: 20px 0 5px; } .toastui-editor-popup-body .toastui-editor-button-container { text-align: right; margin-top: 20px; } .toastui-editor-popup-body input[type='text'] { width: calc(100% - 26px); height: 30px; padding: 0 12px; border-radius: 2px; border: 1px solid #e1e3e9; color: #333; } .toastui-editor-popup-body input[type='text']:focus { outline: 1px solid #00a9ff; border-color: transparent; } .toastui-editor-popup-body input[type='text'].disabled { background-color: #f7f9fc; border-color: #e1e3e9; color: #969aa5; } .toastui-editor-popup-body input[type='file'] { opacity: 0; border: none; width: 1px; height: 1px; position: absolute; top: 0; left: 0; } .toastui-editor-popup-body input.wrong, .toastui-editor-popup-body span.wrong { border-color: #fa2828; } .toastui-editor-popup-add-link .toastui-editor-popup-body, .toastui-editor-popup-add-image .toastui-editor-popup-body { padding: 0 20px 20px; } .toastui-editor-popup-add-image .toastui-editor-tabs { margin: 5px 0 10px; } .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item { display: inline-block; width: 60px; height: 40px; line-height: 40px; border-bottom: 1px solid #dadde6; color: #333; font-size: 13px; font-weight: 600; text-align: center; cursor: pointer; box-sizing: border-box; } .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item:hover { border-bottom: 1px solid #cbcfdb; } .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item.active { color: #00a9ff; border-bottom: 2px solid #00a9ff; } .toastui-editor-popup-add-image .toastui-editor-file-name { width: 58%; display: inline-block; border-radius: 2px; border: 1px solid #e1e3e9; color: #dadde6; height: 30px; line-height: 30px; padding: 0 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; } .toastui-editor-popup-add-image .toastui-editor-file-name.has-file { color: #333; } .toastui-editor-popup-add-image .toastui-editor-file-select-button { width: 33%; margin-left: 5px; height: 32px; border-radius: 2px; border: 1px solid #dadde6; background-color: #f7f9fc; vertical-align: top; } .toastui-editor-popup-add-image .toastui-editor-file-select-button:hover { border-color: #cbcfdb; } .toastui-editor-popup-add-table { width: auto; } .toastui-editor-popup-add-table .toastui-editor-table-selection { position: relative; } .toastui-editor-popup-add-table .toastui-editor-table-cell { display: table-cell; width: 20px; height: 20px; border: 1px solid #e1e3e9; background: #fff; box-sizing: border-box; } .toastui-editor-popup-add-table .toastui-editor-table-cell.header { background: #f7f9fc; } .toastui-editor-popup-add-table .toastui-editor-table-row { display: table-row; } .toastui-editor-popup-add-table .toastui-editor-table { display: table; border-collapse: collapse; } .toastui-editor-popup-add-table .toastui-editor-table-selection-layer { position: absolute; top: 0; left: 0; border: 1px solid #00a9ff; background: rgba(0, 169, 255, 0.1); z-index: 30; } .toastui-editor-popup-add-table .toastui-editor-table-description { margin: 5px 0 0; text-align: center; color: #333 } .toastui-editor-popup-add-heading { width: auto; } .toastui-editor-popup-add-heading .toastui-editor-popup-body { padding: 0; } .toastui-editor-popup-add-heading h1, .toastui-editor-popup-add-heading h2, .toastui-editor-popup-add-heading h3, .toastui-editor-popup-add-heading h4, .toastui-editor-popup-add-heading h5, .toastui-editor-popup-add-heading h6, .toastui-editor-popup-add-heading ul, .toastui-editor-popup-add-heading p { padding: 0; margin: 0; } .toastui-editor-popup-add-heading ul { padding: 5px 0; list-style: none; } .toastui-editor-popup-add-heading ul li { padding: 4px 12px; cursor: pointer; } .toastui-editor-popup-add-heading ul li:hover { background-color: #dff4ff; } .toastui-editor-popup-add-heading h1 { font-size: 24px; } .toastui-editor-popup-add-heading h2 { font-size: 22px; } .toastui-editor-popup-add-heading h3 { font-size: 20px; } .toastui-editor-popup-add-heading h4 { font-size: 18px; } .toastui-editor-popup-add-heading h5 { font-size: 16px; } .toastui-editor-popup-add-heading h6 { font-size: 14px; } /* table context menu */ .toastui-editor-context-menu { position: absolute; width: auto; min-width: 197px; color: #333; border-radius: 2px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08); border: 1px solid #dadde6; z-index: 30; padding: 5px 0; background-color: #fff; } .toastui-editor-context-menu .menu-group { list-style: none; border-bottom: 1px solid #ebedf2; padding: 0; margin: 0; font-size: 13px; } .toastui-editor-context-menu .menu-group:last-child { border-bottom: none !important; } .toastui-editor-context-menu .menu-item { height: 32px; line-height: 32px; padding: 0 14px; cursor: pointer; } .toastui-editor-context-menu span { display: inline-block; } .toastui-editor-context-menu span::before { background: url(data:image/png;base64,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) no-repeat; background-size: 466px 146px; content: ''; width: 20px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 10px; } .toastui-editor-context-menu .add-row-up::before { background-position: 3px -104px; } .toastui-editor-context-menu .add-row-down::before { background-position: -19px -104px; } .toastui-editor-context-menu .remove-row::before { background-position: -41px -104px; } .toastui-editor-context-menu .add-column-left::before { background-position: -63px -104px; } .toastui-editor-context-menu .add-column-right::before { background-position: -85px -104px; } .toastui-editor-context-menu .remove-column::before { background-position: -111px -104px; } .toastui-editor-context-menu .align-column-left::before { background-position: -129px -104px; } .toastui-editor-context-menu .align-column-center::before { background-position: -151px -104px; } .toastui-editor-context-menu .align-column-right::before { background-position: -173px -104px; } .toastui-editor-context-menu .remove-table::before { background-position: -197px -104px; } .toastui-editor-context-menu .disabled span::before { opacity: 0.3; } .toastui-editor-context-menu li:not(.disabled):hover { background-color: #dff4ff; } .toastui-editor-context-menu li.disabled { color: #c9ccd5; } .toastui-editor-tooltip { position: absolute; background-color: #444; z-index: 40; padding: 4px 7px; font-size: 12px; border-radius: 3px; color: #fff; font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕', 'Nanum Barun Gothic', '맑은고딕', 'Malgun Gothic', sans-serif; } .toastui-editor-tooltip .arrow { content: ''; display: inline-block; width: 10px; height: 10px; background-color: #444; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); position: absolute; top: -3px; left: 6px; z-index: -1; } .toastui-editor-toolbar-icons { background: url(data:image/png;base64,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) no-repeat; background-size: 466px 146px; } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) { .toastui-editor-toolbar-icons, .toastui-editor-context-menu span::before { background: url(data:image/png;base64,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P0A9dgflJJi2Szl5led4F57jlvpECs/6vuTjuhR3dAo961VP9UoRby5eaGBuxz2Zy/3pyiWBlJEiA/s5FHaEnU170tGmBChvV5O1/Zske9dQ3upqiLdbfuL3hTpvY+q8m3ELRkrj1xLs36Md8A17jhOutYwTnYufJw89tLmvbxmhJagIVEmgaoW0yvjlXQREQASakkA77LJL42wfGmdpGiktpZBagaFRfQqNsDNGSykNldFTUQ6+3ZQFWEJlRsA6pVmzZjML1sks0hoiosy9vMoqq2wVjg7VEMNQkHbLTzEI7tOqdCoeTd1nn7dK2tjwf2F5Gsro3cVhdS4CItCcBKSQNud9kVQiIAIikIqAjZLSQNu8lGeujZiyW8pvs7mHI6W2tb/tlF28jigvcRfSmLUpw+doZDQvxM0Xb40zpbLKiE03nWtLiOpVRp1A7ZYfl6+4yTPqo5hO4nndFPt4fi+OHTv2Qb5x/Y+4P9lFQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAREQAQ6mYDfyZlX3kVABESgnQgc/WRhlf5F3j6Dvjdw6UT/mnbKm/IiAiIgAiIgAiLQngSkkLbnfVWuREAEOohA7+OFsc8v8w4peN43yfZGlnW/y9t/9kT/2g7CoKyKgAiIgAiIgAi0IIGeFpRZIouACIhA3QSOm1fY4A3f28MiWqXg/fyCyf7CuiMdhQiOmFc4YOEy7zsk/fZhyRe89ww7b8GTI+YXthv0vBO9gjcZ8TdoUBYWer43r8vzzpk1yb+vQWkqmVEmcPQjhY36+rzv0amzI6I0qqy5XC9kdGDumDHeSRdv5T/n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vaXiGC338PM8x9WSftjWO6CWsArTOAKhollR2UwjEc9wdYeNvhHCevQvqneamUs5jzhd3GlMemI2KtUTUyq89dBYDwAArSK8cWt+zbJmtNII6bA8tdAI6TC5wxP7rtbACm97tkR/K+ssVude9DBm+gqV+JM9a3q/rfW7Vklpya19CNCr94HCAFOk3LRd33u1u8vbhSlgLfWJFJ71famHrqt0Z6ivplBf17v2qFIymV1n07LtaITNJW+jus8B3NjU09sxzQZqmWVeETWcACNtV1PespspVUcOKG/XMLpUV0O83fITx3nEo4WNB1d4N+O2Rdw9yc7z+z1GRr/RrCOjSTInuTHq+3naNz3U4dcnXZebCLQDAeo+HSIgAiLQeQTaYZfdI+YV9qGhUrGR0moKqZVGlG2bxnzGaCmloTJ6Ksrotzvv6eisHFunNGvWHiHX64xyzl8eO8bbKhwdqlmUdstPMYjgqwH/9I6mQ/F4OhKYzTvi+F82kzjtksn+3SOuyEEERKApCUghbcrbIqFEQAREIB0BGyXF5+ZlfCdN2S3jvXku2UgpCveJNDxtp+xh64hylNKm/s1jaPYcjYzmSLnJoq5lplSGWVhIY2yuLSGqVxl1MrVbfly+4qZtXnT0Q96kPs/btKvgjUc5fbHH9x6cMdG39Ws6REAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAEREAERAACviiIgAiIgAgMJ7DPPvvshMuNoeueN9xww5zhPnQmAiIgAiIgAiIgAiKQBYGeLCJRHCIgAiLQTgR839++UCiMtzyZHUMKaTvd4AzzctBBB627bNmydxDl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UvksxkDZi5yw9xKm1xzi5RjlMLe10HTi3YPCeTZ1ZPD5F2TYieT/wnPzFPb+vr6+zTDdxmA2a0Yjo3aDdIiACIiACIhADgS6ysRpa5gadTQyrUblqSHp0GgyZTTYwCghwWBNqflJuNZop2rucTV+S+Wjmjiq8VsqvbzdU8tIebDNVtxuusEGRjTArcPi2piQ+9Eg3yN2LqsI1EMgdflMmwhK4ADldgr+o3JLXRaN+DMD5GyU1prXQjMKfarF4eQhbp/fppy/FzOujM4kHU3TdaBkioAIiIAIiEDGBEoqpLaGibQyb2QkyD8qa8Ro7Ng60cX2C+0JojW/E0qF7aAbrRslL2faLyb57qGfmFPjrVWUp0zKQ6PTy5toFfmx0ZzbkMfKdqCMWqMdt+LG/XN8f/E3dch9axjWpgW33QGvtqgfKtyYzO5hNeWzgkzDLlu55XcEv1eHXchgLTRxFsJnYwfsd/GL775rQ7j2fHwGpfgorg1bX1oki05FQAREQAREQAREoHMJMBp2s02Rsx/2MxwJs8fctcuuA9MhJpuxbMrvU8XZtZEfysZetkau+JrORaDZCFBex1OP/drVZUXmNfGRzHpl57lYm867iTw32y5atGi9euNTeBEQAREQAREQgXQEgo+Dp/MqX81IgAbUm2iUXYBs8+nJvyguIw2sYzifRO/+cYwEBN8AiV+XXQREQASalYApo9Rh5dZCm+jX2rTe+Ohms+ZHcomACIiACIiACIiACIiACIiACLQIAUZDvx4fEaXz7SwbEcXtmrg7SuueLZIliSkCIiACIiACIpBAoOQa0gS/chIBERABERCBhhBg1LMRa6EbkhclIgIiIAIiIAIiIAIiIAIiIAIi0GIEtBa6xW6YxBUBERABERABERABERABERABERABERABERABERCBViHw/wHIAHUN1iL6RwAAAABJRU5ErkJggg==) no-repeat; background-size: 466px 146px; } } .toastui-editor-toolbar-icons { background-position-y: 3px; } .toastui-editor-toolbar-icons:disabled { opacity: 0.3; } .toastui-editor-toolbar-icons.heading { background-position-x: 3px; } .toastui-editor-toolbar-icons.bold { background-position-x: -23px; } .toastui-editor-toolbar-icons.italic { background-position-x: -49px; } .toastui-editor-toolbar-icons.strike { background-position-x: -75px; } .toastui-editor-toolbar-icons.hrline { background-position-x: -101px; } .toastui-editor-toolbar-icons.quote { background-position-x: -127px; } .toastui-editor-toolbar-icons.bullet-list { background-position-x: -153px; } .toastui-editor-toolbar-icons.ordered-list { background-position-x: -179px; } .toastui-editor-toolbar-icons.task-list { background-position-x: -205px; } .toastui-editor-toolbar-icons.indent { background-position-x: -231px; } .toastui-editor-toolbar-icons.outdent { background-position-x: -257px; } .toastui-editor-toolbar-icons.table { background-position-x: -283px; } .toastui-editor-toolbar-icons.image { background-position-x: -309px; } .toastui-editor-toolbar-icons.link { background-position-x: -334px; } .toastui-editor-toolbar-icons.code { background-position-x: -361px; } .toastui-editor-toolbar-icons.codeblock { background-position-x: -388px; } .toastui-editor-toolbar-icons.more { background-position-x: -412px; } .toastui-editor-toolbar-icons:not(:disabled).active { background-position-y: -23px; } @media only screen and (max-width: 480px) { .toastui-editor-popup { max-width: 300px; margin-left: -150px; } .toastui-editor-dropdown-toolbar { max-width: none; } } /* z-index basis -1: pseudo element 20 - preview, wysiwyg 30 - wysiwyg code block language editor, popup, context menu 40 - tooltip */ .ProseMirror { font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕', 'Nanum Barun Gothic', '맑은고딕', 'Malgun Gothic', sans-serif; color: #222; font-size: 13px; overflow-y: auto; overflow-X: hidden; height: calc(100% - 36px); } .ProseMirror .placeholder { color: #999; } .ProseMirror:focus { outline: none; } .ProseMirror-selectednode { outline: none; } table.ProseMirror-selectednode { border-radius: 2px; outline: 2px solid #00a9ff; } .html-block.ProseMirror-selectednode { border-radius: 2px; outline: 2px solid #00a9ff; } .toastui-editor-contents { margin: 0; padding: 0; font-size: 13px; font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕', 'Nanum Barun Gothic', '맑은고딕', 'Malgun Gothic', sans-serif; z-index: 20; } .toastui-editor-contents *:not(table) { line-height: 160%; box-sizing: content-box; } .toastui-editor-contents i, .toastui-editor-contents cite, .toastui-editor-contents em, .toastui-editor-contents var, .toastui-editor-contents address, .toastui-editor-contents dfn { font-style: italic; } .toastui-editor-contents strong { font-weight: bold; } .toastui-editor-contents p { margin: 10px 0; color: #222; } .toastui-editor-contents > h1:first-of-type, .toastui-editor-contents > div > div:first-of-type h1 { margin-top: 14px; } .toastui-editor-contents h1, .toastui-editor-contents h2, .toastui-editor-contents h3, .toastui-editor-contents h4, .toastui-editor-contents h5, .toastui-editor-contents h6 { font-weight: bold; color: #222; } .toastui-editor-contents h1 { font-size: 24px; line-height: 28px; border-bottom: 3px double #999; margin: 52px 0 15px 0; padding-bottom: 7px; } .toastui-editor-contents h2 { font-size: 22px; line-height: 23px; border-bottom: 1px solid #dbdbdb; margin: 20px 0 13px 0; padding-bottom: 7px; } .toastui-editor-contents h3 { font-size: 20px; margin: 18px 0 2px; } .toastui-editor-contents h4 { font-size: 18px; margin: 10px 0 2px; } .toastui-editor-contents h3, .toastui-editor-contents h4 { line-height: 18px; } .toastui-editor-contents h5 { font-size: 16px; } .toastui-editor-contents h6 { font-size: 14px; } .toastui-editor-contents h5, .toastui-editor-contents h6 { line-height: 17px; margin: 9px 0 -4px; } .toastui-editor-contents del { color: #999; } .toastui-editor-contents blockquote { margin: 14px 0; border-left: 4px solid #e5e5e5; padding: 0 16px; color: #999; } .toastui-editor-contents blockquote p, .toastui-editor-contents blockquote ul, .toastui-editor-contents blockquote ol { color: #999; } .toastui-editor-contents blockquote > :first-child { margin-top: 0; } .toastui-editor-contents blockquote > :last-child { margin-bottom: 0; } .toastui-editor-contents pre, .toastui-editor-contents code { font-family: Consolas, Courier, 'Apple SD 산돌고딕 Neo', -apple-system, 'Lucida Grande', 'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', 'Segoe UI', '돋움', dotum, sans-serif; border: 0; border-radius: 0; } .toastui-editor-contents pre { margin: 2px 0 8px; padding: 18px; background-color: #f4f7f8; } .toastui-editor-contents code { color: #c1798b; background-color: #f9f2f4; padding: 2px 3px; letter-spacing: -0.3px; border-radius: 2px; } .toastui-editor-contents pre code { padding: 0; color: inherit; white-space: pre-wrap; background-color: transparent; } .toastui-editor-contents img { margin: 4px 0 10px; box-sizing: border-box; vertical-align: top; max-width: 100%; } .toastui-editor-contents table { border: 1px solid rgba(0, 0, 0, 0.1); margin: 12px 0 14px; color: #222; width: auto; border-collapse: collapse; box-sizing: border-box; } .toastui-editor-contents table th, .toastui-editor-contents table td { border: 1px solid rgba(0, 0, 0, 0.1); padding: 5px 14px 5px 12px; height: 32px; } .toastui-editor-contents table th { background-color: #555; font-weight: 300; color: #fff; padding-top: 6px; } .toastui-editor-contents th p { margin: 0; color: #fff; } .toastui-editor-contents td p { margin: 0; padding: 0 2px; } .toastui-editor-contents td.toastui-editor-cell-selected { background-color: #d8dfec; } .toastui-editor-contents th.toastui-editor-cell-selected { background-color: #908f8f; } .toastui-editor-contents ul, .toastui-editor-contents menu, .toastui-editor-contents ol, .toastui-editor-contents dir { display: block; list-style-type: none; padding-left: 24px; margin: 6px 0 10px; color: #222; } .toastui-editor-contents ol { list-style-type: none; counter-reset: li; } .toastui-editor-contents ol > li { counter-increment: li; } .toastui-editor-contents ul > li::before, .toastui-editor-contents ol > li::before { display: inline-block; position: absolute; } .toastui-editor-contents ul > li::before { content: ''; margin-top: 6px; margin-left: -17px; width: 5px; height: 5px; border-radius: 50%; background-color: #ccc; } .toastui-editor-contents ol > li::before { content: '.' counter(li); margin-left: -28px; width: 24px; text-align: right; direction: rtl; color: #aaa; } .toastui-editor-contents ul ul, .toastui-editor-contents ul ol, .toastui-editor-contents ol ol, .toastui-editor-contents ol ul { margin-top: 0 !important; margin-bottom: 0 !important; } .toastui-editor-contents ul li, .toastui-editor-contents ol li { position: relative; } .toastui-editor-contents ul p, .toastui-editor-contents ol p { margin: 0; } .toastui-editor-contents hr { border-top: 1px solid #eee; margin: 16px 0; } .toastui-editor-contents a { text-decoration: underline; color: #4b96e6; } .toastui-editor-contents a:hover { color: #1f70de; } .toastui-editor-contents .image-link { position: relative; } .toastui-editor-contents .image-link:hover::before { content: ''; position: absolute; width: 30px; height: 30px; right: 0px; border-radius: 50%; border: 1px solid #c9ccd5; background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj4KICAgICAgICA8ZyBzdHJva2U9IiM1NTUiIHN0cm9rZS13aWR0aD0iMS41Ij4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8Zz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy42NjUgMTUuMDdsLTEuODE5LS4wMDJjLTEuNDg2IDAtMi42OTItMS4yMjgtMi42OTItMi43NDR2LS4xOTJjMC0xLjUxNSAxLjIwNi0yLjc0NCAyLjY5Mi0yLjc0NGgzLjg0NmMxLjQ4NyAwIDIuNjkyIDEuMjI5IDIuNjkyIDIuNzQ0di4xOTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDAwIC00NTgxKSB0cmFuc2xhdGUoOTk1IDQ1NzYpIHRyYW5zbGF0ZSg1IDUpIHNjYWxlKDEgLTEpIHJvdGF0ZSg0NSAzNy4yOTMgMCkiLz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTIuMzI2IDQuOTM0bDEuODIyLjAwMmMxLjQ4NyAwIDIuNjkzIDEuMjI4IDIuNjkzIDIuNzQ0di4xOTJjMCAxLjUxNS0xLjIwNiAyLjc0NC0yLjY5MyAyLjc0NGgtMy44NDVjLTEuNDg3IDAtMi42OTItMS4yMjktMi42OTItMi43NDRWNy42OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwMDAgLTQ1ODEpIHRyYW5zbGF0ZSg5OTUgNDU3NikgdHJhbnNsYXRlKDUgNSkgc2NhbGUoMSAtMSkgcm90YXRlKDQ1IDMwLjk5NiAwKSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K') no-repeat; background-position: center; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08); cursor: pointer; } .toastui-editor-contents .task-list-item { border: 0; list-style: none; padding-left: 24px; margin-left: -24px; } .toastui-editor-contents .task-list-item::before { background-repeat: no-repeat; background-size: 18px 18px; background-position: center; content: ''; margin-left: 0; margin-top: 0; border-radius: 2px; height: 18px; width: 18px; position: absolute; left: 0; top: 1px; cursor: pointer; background: transparent url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iI0ZGRiIgc3Ryb2tlPSIjQ0NDIj4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzMCAtMjk2KSB0cmFuc2xhdGUoNzg4IDE5MikgdHJhbnNsYXRlKDI0MiAxMDQpIj4KICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMTciIGhlaWdodD0iMTciIHg9Ii41IiB5PSIuNSIgcng9IjIiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg=='); } .toastui-editor-contents .task-list-item.checked::before { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iIzRCOTZFNiI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2IDBjMS4xMDUgMCAyIC44OTUgMiAydjE0YzAgMS4xMDUtLjg5NSAyLTIgMkgyYy0xLjEwNSAwLTItLjg5NS0yLTJWMkMwIC44OTUuODk1IDAgMiAwaDE0em0tMS43OTMgNS4yOTNjLS4zOS0uMzktMS4wMjQtLjM5LTEuNDE0IDBMNy41IDEwLjU4NSA1LjIwNyA4LjI5M2wtLjA5NC0uMDgzYy0uMzkyLS4zMDUtLjk2LS4yNzgtMS4zMi4wODMtLjM5LjM5LS4zOSAxLjAyNCAwIDEuNDE0bDMgMyAuMDk0LjA4M2MuMzkyLjMwNS45Ni4yNzggMS4zMi0uMDgzbDYtNiAuMDgzLS4wOTRjLjMwNS0uMzkyLjI3OC0uOTYtLjA4My0xLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNTAgLTI5NikgdHJhbnNsYXRlKDc4OCAxOTIpIHRyYW5zbGF0ZSgyNjIgMTA0KSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K'); } .toastui-editor-custom-block .toastui-editor-custom-block-editor { background: #f9f7fd; color: #452d6b; border: solid 1px #dbd4ea; } .toastui-editor-custom-block .toastui-editor-custom-block-view { position: relative; padding: 9px 13px 8px 12px; } .toastui-editor-custom-block.ProseMirror-selectednode .toastui-editor-custom-block-view { border: solid 1px #dbd4ea; border-radius: 2px; } .toastui-editor-custom-block .toastui-editor-custom-block-view .tool { position: absolute; right: 10px; top: 7px; display: none; } .toastui-editor-custom-block.ProseMirror-selectednode .toastui-editor-custom-block-view .tool { display: block; } .toastui-editor-custom-block-view button { vertical-align: middle; width: 15px; height: 15px; margin-left: 8px; padding: 3px; border: solid 1px #cccccc; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6IzU1NTU1NTt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==') no-repeat; background-position: center; background-size: 30px 30px; } .toastui-editor-custom-block-view .info { font-size: 13px; font-weight: bold; color: #5200d0; vertical-align: middle; } .toastui-editor-contents .toastui-editor-ww-code-block { position: relative; } .toastui-editor-contents .toastui-editor-ww-code-block:after { content: attr(data-language); position: absolute; display: inline-block; top: 10px; right: 10px; height: 24px; padding: 3px 35px 0 10px; font-weight: bold; font-size: 13px; color: #333; background: #e5e9ea url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6IzU1NTU1NTt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==') no-repeat; background-position: right; border-radius: 2px; background-size: 30px 30px; cursor: pointer; } .toastui-editor-ww-code-block-language { position: fixed; display: inline-block; width: 100px; height: 27px; right: 35px; border: 1px solid #ccc; border-radius: 2px; background-color: #fff; z-index: 30; } .toastui-editor-ww-code-block-language input { box-sizing: border-box; margin: 0; padding: 0 10px; height: 100%; width: 100%; background-color: transparent; border: none; outline: none; } .toastui-editor-contents-placeholder::before { content: attr(data-placeholder); color: grey; line-height: 160%; position: absolute; } .toastui-editor-md-preview .toastui-editor-contents h1 { min-height: 28px; } .toastui-editor-md-preview .toastui-editor-contents h2 { min-height: 23px; } .toastui-editor-md-preview .toastui-editor-contents blockquote { min-height: 20px; } .toastui-editor-md-preview .toastui-editor-contents li { min-height: 22px; } .toastui-editor-pseudo-clipboard { position: fixed; opacity: 0; width: 0; height: 0; left: -1000px; top: -1000px; z-index: -1; } .toastui-editor-contents .toastui-editor-md-preview-highlight { position: relative; z-index: 0; } .toastui-editor-contents .toastui-editor-md-preview-highlight::after { content: ''; background-color: rgba(255, 245, 131, 0.5); border-radius: 4px; z-index: -1; position: absolute; top: -4px; right: -4px; left: -4px; bottom: -4px; } .toastui-editor-contents h1.toastui-editor-md-preview-highlight::after, .toastui-editor-contents h2.toastui-editor-md-preview-highlight::after { bottom: 0; } .toastui-editor-contents td.toastui-editor-md-preview-highlight::after, .toastui-editor-contents th.toastui-editor-md-preview-highlight::after { display: none; } .toastui-editor-contents th.toastui-editor-md-preview-highlight, .toastui-editor-contents td.toastui-editor-md-preview-highlight { background-color: rgba(255, 245, 131, 0.5); } .toastui-editor-contents th.toastui-editor-md-preview-highlight { color: #222; } .toastui-editor-md-heading1 { font-size: 24px; } .toastui-editor-md-heading2 { font-size: 22px; } .toastui-editor-md-heading3 { font-size: 20px; } .toastui-editor-md-heading4 { font-size: 18px; } .toastui-editor-md-heading5 { font-size: 16px; } .toastui-editor-md-heading6 { font-size: 14px; } .toastui-editor-md-heading.toastui-editor-md-delimiter.setext { line-height: 15px; } .toastui-editor-md-strong, .toastui-editor-md-heading, .toastui-editor-md-list-item-style, .toastui-editor-md-list-item .toastui-editor-md-meta { font-weight: bold; } .toastui-editor-md-emph { font-style: italic; } .toastui-editor-md-strike { text-decoration: line-through; } .toastui-editor-md-strike.toastui-editor-md-delimiter { text-decoration: none; } .toastui-editor-md-delimiter, .toastui-editor-md-thematic-break, .toastui-editor-md-link, .toastui-editor-md-table, .toastui-editor-md-block-quote { color: #ccc; } .toastui-editor-md-code.toastui-editor-md-delimiter { color: #aaa; } .toastui-editor-md-meta, .toastui-editor-md-html, .toastui-editor-md-link.toastui-editor-md-link-url.toastui-editor-md-marked-text { color: #999; } .toastui-editor-md-block-quote .toastui-editor-md-marked-text, .toastui-editor-md-list-item .toastui-editor-md-meta { color: #555; } .toastui-editor-md-table .toastui-editor-md-table-cell { color: #222; } .toastui-editor-md-link.toastui-editor-md-link-desc.toastui-editor-md-marked-text, .toastui-editor-md-list-item-style.toastui-editor-md-list-item-odd { color: #4b96e6; } .toastui-editor-md-list-item-style.toastui-editor-md-list-item-even { color: #cb4848; } .toastui-editor-md-code.toastui-editor-md-marked-text { color: #c1798b; } .toastui-editor-md-code { background-color: rgba(243, 229, 233, 0.5); padding: 2px 0; letter-spacing: -0.3px; } .toastui-editor-md-code.toastui-editor-md-start { padding-left: 2px; border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .toastui-editor-md-code.toastui-editor-md-end { padding-right: 2px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .toastui-editor-md-code-block-line-background { background-color: #f5f7f8; } .toastui-editor-md-code-block-line-background.start, .toastui-editor-md-custom-block-line-background.start { margin-top: 2px; } .toastui-editor-md-code, .toastui-editor-md-code-block { font-family: Consolas, Courier, 'Lucida Grande', '나눔바른고딕', 'Nanum Barun Gothic', '맑은고딕', 'Malgun Gothic', sans-serif; } .toastui-editor-md-custom-block { color: #452d6b; } .toastui-editor-md-custom-block-line-background { background-color: #f9f7fd; } .toastui-editor-md-custom-block .toastui-editor-md-delimiter { color: #b8b3c0; } .toastui-editor-md-custom-block .toastui-editor-md-meta { color: #5200d0; }
108.484277
71,814
0.915386
8e7a0bc5173d4e3725196d03685f3a975fd9ffbd
43
js
JavaScript
frontend/server/__mocks__/minio.js
bcgov/OCWA
e0bd0763ed1e3c0acc498cb1689778b4e22a475c
[ "Apache-2.0" ]
9
2018-09-14T18:03:45.000Z
2021-06-16T16:04:25.000Z
frontend/server/__mocks__/minio.js
bcgov/OCWA
e0bd0763ed1e3c0acc498cb1689778b4e22a475c
[ "Apache-2.0" ]
173
2019-01-18T19:25:05.000Z
2022-01-10T21:15:46.000Z
frontend/server/__mocks__/minio.js
bcgov/OCWA
e0bd0763ed1e3c0acc498cb1689778b4e22a475c
[ "Apache-2.0" ]
3
2018-09-24T15:44:39.000Z
2018-11-24T01:04:37.000Z
module.exports = { Client: jest.fn(), };
10.75
20
0.581395
a489fad52481e8a4f6dadafa7955e28da9e8b37d
1,720
php
PHP
Control/Classic/SocialSharingButtons.php
phpManufakturHeirs/kfTemplateTools
aa3604235bb5e3471cb601fff53e7b88f78fd93f
[ "MIT" ]
null
null
null
Control/Classic/SocialSharingButtons.php
phpManufakturHeirs/kfTemplateTools
aa3604235bb5e3471cb601fff53e7b88f78fd93f
[ "MIT" ]
null
null
null
Control/Classic/SocialSharingButtons.php
phpManufakturHeirs/kfTemplateTools
aa3604235bb5e3471cb601fff53e7b88f78fd93f
[ "MIT" ]
null
null
null
<?php /** * TemplateTools * * @author Team phpManufaktur <[email protected]> * @link https://kit2.phpmanufaktur.de/TemplateTools * @copyright 2014 Ralf Hertsch <[email protected]> * @license MIT License (MIT) http://www.opensource.org/licenses/MIT */ namespace phpManufaktur\TemplateTools\Control\Classic; use Silex\Application; class SocialSharingButtons { protected $app = null; protected static $options = array( 'template_directory' => '@pattern/classic/function/socialsharingbuttons/' ); /** * Constructor * * @param Application $app */ public function __construct(Application $app) { $this->app = $app; } /** * Check the $options and set self::$options * * @param array $options */ protected function checkOptions($options) { if (isset($options['template_directory']) && !empty($options['template_directory'])) { self::$options['template_directory'] = rtrim($options['template_directory'], '/').'/'; } } /** * Create responsive social sharing buttons * * @param array $buttons * @param array $options * @param boolean $prompt * @return string */ public function social_sharing_buttons($buttons=array(), $options=array(), $prompt=true) { // check the options $this->checkOptions($options); // render the buttons $sharing = $this->app['twig']->render( self::$options['template_directory'].'social.sharing.buttons.twig', array('buttons' => $buttons) ); if ($prompt) { echo $sharing; } return $sharing; } }
24.571429
98
0.600581
215ed9d8de3fa53f900a66d0ee89ee4e8b1ec1f9
341
js
JavaScript
src/store/index.js
Cloudtq/rent-cars
0ed0efd4aee311f29b59c4cdc6d674ecdcf20fb0
[ "MIT" ]
null
null
null
src/store/index.js
Cloudtq/rent-cars
0ed0efd4aee311f29b59c4cdc6d674ecdcf20fb0
[ "MIT" ]
1
2021-04-16T09:37:41.000Z
2021-04-16T09:37:41.000Z
src/store/index.js
Cloudtq/rent-cars
0ed0efd4aee311f29b59c4cdc6d674ecdcf20fb0
[ "MIT" ]
null
null
null
import Vue from "vue"; import Vuex from "vuex"; import account from "./modules/account"; import app from "./modules/app"; import config from "./modules/config"; import location from "./modules/location"; Vue.use(Vuex); export default new Vuex.Store({ modules: { location, app, account, config, }, });
21.3125
42
0.633431
2f5d9ea618ecb219eb085f72d14893f7d1b5aab6
955
js
JavaScript
dist-mdi/mdi/cheese.js
maciejg-git/vue-bootstrap-icons
bc60cf77193e15cc72ec7eb7f9949ed8b552e7ec
[ "MIT", "CC-BY-4.0", "MIT-0" ]
null
null
null
dist-mdi/mdi/cheese.js
maciejg-git/vue-bootstrap-icons
bc60cf77193e15cc72ec7eb7f9949ed8b552e7ec
[ "MIT", "CC-BY-4.0", "MIT-0" ]
null
null
null
dist-mdi/mdi/cheese.js
maciejg-git/vue-bootstrap-icons
bc60cf77193e15cc72ec7eb7f9949ed8b552e7ec
[ "MIT", "CC-BY-4.0", "MIT-0" ]
null
null
null
import { h } from 'vue' export default { name: "Cheese", vendor: "Mdi", type: "", tags: ["cheese"], render() { return h( "svg", {"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","class":"v-icon","fill":"currentColor","data-name":"mdi-cheese","innerHTML":"<path d='M11 17.5C11 16.67 11.67 16 12.5 16C12.79 16 13.06 16.09 13.29 16.23L20.75 11.93C20.35 11.22 19.9 10.55 19.41 9.9C19.29 9.96 19.15 10 19 10C18.45 10 18 9.55 18 9C18 8.8 18.08 8.62 18.18 8.46C16.45 6.64 14.34 5.2 12 4.25C11.85 5.24 11 6 10 6C8.9 6 8 5.11 8 4C8 3.72 8.06 3.45 8.16 3.21C7.3 3.08 6.41 3 5.5 3C5.33 3 5.17 3 5 3.03V9.05C6.14 9.28 7 10.29 7 11.5S6.14 13.72 5 13.95V21L11 17.54C11 17.53 11 17.5 11 17.5M14 9C15.11 9 16 9.9 16 11S15.11 13 14 13 12 12.11 12 11 12.9 9 14 9M9 16C8.45 16 8 15.55 8 15S8.45 14 9 14 10 14.45 10 15 9.55 16 9 16M9 10C8.45 10 8 9.55 8 9S8.45 8 9 8 10 8.45 10 9 9.55 10 9 10Z' />"}, ) } }
73.461538
795
0.619895
0f2b749f177da9d0b14c6eb957f6c92eb345ed7b
443
swift
Swift
MozoSDK/Classes/Common/Model/Notification/CustomerComeNotification.swift
Biglabs/mozo-ios-sdk
fd3f5808c3ce12df76ec79668d8afc32cb91c747
[ "MIT" ]
2
2018-10-26T10:43:03.000Z
2020-07-05T08:09:58.000Z
MozoSDK/Classes/Common/Model/Notification/CustomerComeNotification.swift
Biglabs/mozo-ios-sdk
fd3f5808c3ce12df76ec79668d8afc32cb91c747
[ "MIT" ]
3
2018-12-18T02:52:49.000Z
2020-05-07T06:37:36.000Z
MozoSDK/Classes/Common/Model/Notification/CustomerComeNotification.swift
Biglabs/mozo-ios-sdk
fd3f5808c3ce12df76ec79668d8afc32cb91c747
[ "MIT" ]
2
2018-10-09T09:17:18.000Z
2020-05-07T06:25:44.000Z
// // CustomerComeNotification.swift // MozoSDK // // Created by Hoang Nguyen on 11/16/18. // import Foundation import SwiftyJSON public class CustomerComeNotification : RdNotification { public var phoneNo: String? public var isComeIn: Bool? public required init? (json: SwiftyJSON.JSON) { self.phoneNo = json["phoneNo"].string self.isComeIn = json["isComeIn"].bool super.init(json: json) } }
21.095238
56
0.670429
ffdd2dd951cc37665585e112e7ed747772c7d35d
4,638
swift
Swift
Sources/Swiftensor/Engine/Swift/TensorArithmetic.swift
eurus-ai/Eurus
881af3ed0fe7ac545e39c08905c2911f33472c70
[ "Apache-2.0" ]
null
null
null
Sources/Swiftensor/Engine/Swift/TensorArithmetic.swift
eurus-ai/Eurus
881af3ed0fe7ac545e39c08905c2911f33472c70
[ "Apache-2.0" ]
null
null
null
Sources/Swiftensor/Engine/Swift/TensorArithmetic.swift
eurus-ai/Eurus
881af3ed0fe7ac545e39c08905c2911f33472c70
[ "Apache-2.0" ]
null
null
null
// MARK: - Unary public prefix func +<T: SignedNumeric>(arg: Tensor<T>) -> Tensor<T> { return unaryPlus(arg) } public prefix func -<T: SignedNumeric>(arg: Tensor<T>) -> Tensor<T> { return unaryMinus(arg) } // MARK: - Tensor and scalar public func +<T: Arithmetic>(lhs: Tensor<T>, rhs: T) -> Tensor<T> { return add(lhs, rhs) } public func -<T: Arithmetic>(lhs: Tensor<T>, rhs: T) -> Tensor<T> { return subtract(lhs, rhs) } public func *<T: Arithmetic>(lhs: Tensor<T>, rhs: T) -> Tensor<T> { return multiply(lhs, rhs) } public func /<T: Arithmetic>(lhs: Tensor<T>, rhs: T) -> Tensor<T> { return divide(lhs, rhs) } public func %<T: Moduloable>(lhs: Tensor<T>, rhs: T) -> Tensor<T> { return modulo(lhs, rhs) } public func +<T: Arithmetic>(lhs: T, rhs: Tensor<T>) -> Tensor<T> { return add(lhs, rhs) } public func -<T: Arithmetic>(lhs: T, rhs: Tensor<T>) -> Tensor<T> { return subtract(lhs, rhs) } public func *<T: Arithmetic>(lhs: T, rhs: Tensor<T>) -> Tensor<T> { return multiply(lhs, rhs) } public func /<T: Arithmetic>(lhs: T, rhs: Tensor<T>) -> Tensor<T> { return divide(lhs, rhs) } public func %<T: Moduloable>(lhs: T, rhs: Tensor<T>) -> Tensor<T> { return modulo(lhs, rhs) } // MARK: - Tensor and Tensor public func +<T: Arithmetic>(lhs: Tensor<T>, rhs: Tensor<T>) -> Tensor<T> { return add(lhs, rhs) } public func -<T: Arithmetic>(lhs: Tensor<T>, rhs: Tensor<T>) -> Tensor<T> { return subtract(lhs, rhs) } public func *<T: Arithmetic>(lhs: Tensor<T>, rhs: Tensor<T>) -> Tensor<T> { return multiply(lhs, rhs) } public func /<T: Arithmetic>(lhs: Tensor<T>, rhs: Tensor<T>) -> Tensor<T> { return divide(lhs, rhs) } public func %<T: Moduloable>(lhs: Tensor<T>, rhs: Tensor<T>) -> Tensor<T> { return modulo(lhs, rhs) } // MARK: - Unary func unaryPlus<T: SignedNumeric>(_ arg: Tensor<T>) -> Tensor<T> { return apply(arg, +) } func unaryMinus<T: SignedNumeric>(_ arg: Tensor<T>) -> Tensor<T> { return apply(arg, -) } // MARK: - Tensor and scalar func add<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: T) -> Tensor<T> { return apply(lhs) { $0 + rhs } } func add<T: Arithmetic>(_ lhs: T, _ rhs: Tensor<T>) -> Tensor<T> { return apply(rhs) { lhs + $0 } } func subtract<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: T) -> Tensor<T> { return apply(lhs) { $0 - rhs } } func subtract<T: Arithmetic>(_ lhs: T, _ rhs: Tensor<T>) -> Tensor<T> { return apply(rhs) { lhs - $0 }} func multiply<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: T) -> Tensor<T> { return apply(lhs) { $0 * rhs } } func multiply<T: Arithmetic>(_ lhs: T, _ rhs: Tensor<T>) -> Tensor<T> { return apply(rhs) { lhs * $0 } } func divide<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: T) -> Tensor<T> { return apply(lhs) { $0 / rhs } } func divide<T: Arithmetic>(_ lhs: T, _ rhs: Tensor<T>) -> Tensor<T> { return apply(rhs) { lhs / $0 } } func modulo<T: Moduloable>(_ lhs: Tensor<T>, _ rhs: T) -> Tensor<T> { return apply(lhs) { $0 % rhs } } func modulo<T: Moduloable>(_ lhs: T, _ rhs: Tensor<T>) -> Tensor<T> { return apply(rhs) { lhs % $0 } } // MARK: - Tensor and Tensor func add<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: Tensor<T>) -> Tensor<T> { return combine(lhs, rhs, +) } func subtract<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: Tensor<T>) -> Tensor<T> { return combine(lhs, rhs, -) } func multiply<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: Tensor<T>) -> Tensor<T> { return combine(lhs, rhs, *) } func divide<T: Arithmetic>(_ lhs: Tensor<T>, _ rhs: Tensor<T>) -> Tensor<T> { return combine(lhs, rhs, /) } func modulo<T: Moduloable>(_ lhs: Tensor<T>, _ rhs: Tensor<T>) -> Tensor<T> { return combine(lhs, rhs, %) } // MARK: - Scalar public func +=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: T) { lhs = lhs + rhs } public func -=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: T) { lhs = lhs - rhs } public func *=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: T) { lhs = lhs * rhs } public func /=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: T) { lhs = lhs / rhs } public func %=<T: Moduloable>(lhs: inout Tensor<T>, rhs: T) { lhs = lhs % rhs } // MARK: - Tensor public func +=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: Tensor<T>) { lhs = lhs + rhs } public func -=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: Tensor<T>) { lhs = lhs - rhs } public func *=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: Tensor<T>) { lhs = lhs * rhs } public func /=<T: Arithmetic>(lhs: inout Tensor<T>, rhs: Tensor<T>) { lhs = lhs / rhs } public func %=<T: Moduloable>(lhs: inout Tensor<T>, rhs: Tensor<T>) { lhs = lhs % rhs }
25.344262
79
0.600474
ccae75f2e4850daa227f2a43db62c0ae32ab5b9c
1,622
rb
Ruby
lib/chat_core.rb
DigitalHandcraft/cluster-chat
fee29d8cc014b1d6157d269da7e92608605cecbf
[ "BSD-3-Clause" ]
null
null
null
lib/chat_core.rb
DigitalHandcraft/cluster-chat
fee29d8cc014b1d6157d269da7e92608605cecbf
[ "BSD-3-Clause" ]
null
null
null
lib/chat_core.rb
DigitalHandcraft/cluster-chat
fee29d8cc014b1d6157d269da7e92608605cecbf
[ "BSD-3-Clause" ]
null
null
null
require 'bundler/setup' require 'db/mongodb' class ChatCore attr_accessor :db def initialize @db = MongoConnector.new 'arch.rk0der.net', 'clchat' unless @db.get_table_names.include? 'counter' @db.insert 'counter', {col_name: 'users', seq: 0} @db.insert 'counter', {col_name: 'statuses', seq: 0} @db.insert 'counter', {col_name: 'contexts', seq: 0} end end def join ctx, name arr = @db.select 'users', {name: name, ctx_id: ctx} if arr.empty? id = get_next_id 'users' data = { user_id: id, ctx_id: ctx, name: name, created_at: Time.now.utc } @db.insert 'users', data data else arr[0] end end def send user_id, text arr = @db.select 'users', {user_id: user_id} return if arr.empty? usr = arr[0] id = get_next_id 'statuses' data = { status_id: id, user_id: user_id, ctx_id: usr[:ctx_id], text: text, created_at: Time.now.utc } res = @db.insert 'statuses', data {status: res, data:data} end def leave ctx, name unless @db.select('users', {name: name, ctx_id: ctx}).empty? @db.delete 'users', {name: name, ctx_id: ctx} end end def load_statuses ctx, time0, time1 dummy0 = @db.get_objid_from_time(time0) dummy1 = @db.get_objid_from_time(time1) @db.select('statuses', {ctx_id: ctx, "_id": {"$gte": dummy0, "$lte": dummy1}}) end def get_next_id col arr = @db.select 'counter', {col_name: col} ret = arr[0][:seq].to_i @db.update 'counter', {col_name: col}, {seq:ret+1} ret end end
23.852941
82
0.593095
57fded6b8134d2ff914f133550ec243ad6ca7a47
305
php
PHP
src/Adapter/StatementContainerInterface.php
swangoframwork/swango-sql
fbe63953d3465eff213cedd9c8f4f912e5222659
[ "Apache-2.0" ]
null
null
null
src/Adapter/StatementContainerInterface.php
swangoframwork/swango-sql
fbe63953d3465eff213cedd9c8f4f912e5222659
[ "Apache-2.0" ]
null
null
null
src/Adapter/StatementContainerInterface.php
swangoframwork/swango-sql
fbe63953d3465eff213cedd9c8f4f912e5222659
[ "Apache-2.0" ]
null
null
null
<?php namespace Sql\Adapter; interface StatementContainerInterface { /** * Set sql * * @param * $sql * @return mixed */ public function setSql(string $sql); /** * Get sql * * @return mixed */ public function getSql(): string; }
16.052632
40
0.508197
a4919e7c979e66943dcfa34dc8ec77b235d9bc9e
1,051
php
PHP
application/config/theKindlyMallard.php
theKindlyMallard/po_pzsi_schedule
6ed5166eb8bf11de8b50ee9aa27054d9d8cf3c03
[ "MIT" ]
2
2018-05-13T13:51:41.000Z
2018-05-13T13:51:42.000Z
application/config/theKindlyMallard.php
theKindlyMallard/po_pzsi_schedule
6ed5166eb8bf11de8b50ee9aa27054d9d8cf3c03
[ "MIT" ]
19
2018-03-12T11:58:04.000Z
2018-06-11T09:58:07.000Z
application/config/theKindlyMallard.php
theKindlyMallard/po_pzsi_schedule
6ed5166eb8bf11de8b50ee9aa27054d9d8cf3c03
[ "MIT" ]
1
2018-03-03T19:17:39.000Z
2018-03-03T19:17:39.000Z
<?php /** * theKindlyMallard user configuration file. * * @author theKindlyMallard <[email protected]> */ /** * Configuration for: Error reporting * For testing environment display all errors. */ error_reporting(E_ALL); ini_set('display_errors', 1); /** * Configuration for: Project URL */ /** * @var string Application main URL. */ define('APPLICATION_URL', 'http://127.0.0.69/'); /** * @var string Application URL with IP address. */ define('APPLICATION_URL_IP', 'http://127.0.0.69/'); /** * Configuration for: Database */ /** * @var string Type of database. Probably should by always "mysql". */ define('DB_TYPE', 'mysql'); /** * @var string Database URL or localhost if local hosted. */ define('DB_HOST', 'localhost'); /** * @var string Database name to connect. */ define('DB_NAME', 'po_pzsi_student-schedule'); /** * @var string Database user name. */ define('DB_USER', 'po_pzsi'); /** * @var string Database user password. */ define('DB_PASS', 'qwerty');
21.02
68
0.635585
3c0814e11de96fb485ac62382b5e425ed8c37f28
1,535
rs
Rust
examples/hello_world.rs
Fredemus/imgui-rs-knobs
16a736d75adff3d6461f4729c95b55c11e921720
[ "MIT" ]
6
2021-01-26T16:49:13.000Z
2022-03-08T08:45:35.000Z
examples/hello_world.rs
Fredemus/imgui-rs-knobs
16a736d75adff3d6461f4729c95b55c11e921720
[ "MIT" ]
4
2021-02-23T23:48:45.000Z
2022-01-06T19:01:01.000Z
examples/hello_world.rs
Fredemus/imgui-rs-knobs
16a736d75adff3d6461f4729c95b55c11e921720
[ "MIT" ]
2
2021-02-22T22:45:21.000Z
2021-07-29T01:05:41.000Z
use imgui::*; use imgui_knobs::*; mod support; fn main() { let system = support::init(file!()); let mut value = 0.0; let min = -6.0; let max = 6.0; let default = 0.0; let format = im_str!("%.2fdB"); system.main_loop(move |_, ui| { Window::new(im_str!("Hello Knob")) .size([300.0, 300.0], Condition::FirstUseEver) .position([20.0, 20.0], Condition::Appearing) .build(ui, || { ui.set_window_font_scale(1.0); let highlight = ColorSet::new( [0.4, 0.4, 0.8, 1.0], [0.4, 0.4, 0.9, 1.0], [0.5, 0.5, 1.0, 1.0], ); let base = ColorSet::new( [0.4, 0.3, 0.5, 1.0], [0.45, 0.35, 0.55, 1.0], [0.45, 0.35, 0.55, 1.0], ); let lowlight = ColorSet::from([0.0, 0.0, 0.0, 1.0]); draw_wiper_knob( &knob_with_drag( ui, im_str!("Knob"), im_str!("Gain"), &mut value, min, max, default, format, ), &base, &highlight, &lowlight, ); ui.next_column(); }); }); }
29.519231
69
0.327687
8dc239ec907ecc9f60320a1cd61a22bb05033d94
282
js
JavaScript
packages/styleguide/src/route/utility/boxShadow.js
papillonads/papillonads
9813a779cc8f2fea10d24207a1ffa45f54e5ed7a
[ "MIT" ]
1
2021-04-25T02:58:52.000Z
2021-04-25T02:58:52.000Z
packages/styleguide/src/route/utility/boxShadow.js
papillonads/papillonads
9813a779cc8f2fea10d24207a1ffa45f54e5ed7a
[ "MIT" ]
null
null
null
packages/styleguide/src/route/utility/boxShadow.js
papillonads/papillonads
9813a779cc8f2fea10d24207a1ffa45f54e5ed7a
[ "MIT" ]
null
null
null
import { UtilityPage } from '../../pattern/page/UtilityPage' import { utilityPagePath } from '../path' export const boxShadowRoute = { path: utilityPagePath.boxShadow, clientComponent: UtilityPage.BoxShadow.AsyncBoxShadow, serverComponent: UtilityPage.BoxShadow.BoxShadow, }
31.333333
60
0.77305
c66f9842eaf712156bbe0720ec85feb51865bab3
2,234
swift
Swift
SwiftRayTracer/Tests/SwiftRayTracerTests/Render/CameraTest.swift
dooost/Swiftracer
b61a7e12c5f586fcd40b607b93edb47b9e3236a2
[ "MIT" ]
null
null
null
SwiftRayTracer/Tests/SwiftRayTracerTests/Render/CameraTest.swift
dooost/Swiftracer
b61a7e12c5f586fcd40b607b93edb47b9e3236a2
[ "MIT" ]
null
null
null
SwiftRayTracer/Tests/SwiftRayTracerTests/Render/CameraTest.swift
dooost/Swiftracer
b61a7e12c5f586fcd40b607b93edb47b9e3236a2
[ "MIT" ]
null
null
null
import XCTest @testable import SwiftRayTracer final class CameraTest: XCTestCase { func testInit() { let camera = Camera(hsize: 160, vsize: 120, fieldOfView: .pi / 2) XCTAssertEqual(camera.hsize, 160) XCTAssertEqual(camera.vsize, 120) XCTAssertEqual(camera.fieldOfView, .pi / 2) } func testPixelSize() { let camera = Camera(hsize: 200, vsize: 125, fieldOfView: .pi / 2) AssertApproximatelyEqual(camera.pixelSize, 0.01) camera.hsize = 125 camera.vsize = 200 AssertApproximatelyEqual(camera.pixelSize, 0.01) } func testCreateRay() { let camera = Camera(hsize: 201, vsize: 101, fieldOfView: .pi / 2) // Constructing a ray through the center of canvas var ray = camera.createRay(forPixelWithX: 100, y: 50) AssertApproximatelyEqual(ray.origin, Tuple(pointWith: 0, 0, 0)) AssertApproximatelyEqual(ray.direction, Tuple(vectorWith: 0, 0, -1)) // Constructing a ray through a corner of canvas ray = camera.createRay(forPixelWithX: 0, y: 0) AssertApproximatelyEqual(ray.origin, Tuple(pointWith: 0, 0, 0)) AssertApproximatelyEqual(ray.direction, Tuple(vectorWith: 0.66519, 0.33259, -0.66851)) // Constructing a ray when the camera is transformed camera.transform = Transformation.rotation(y: .pi / 4) * Transformation.translation(0, -2, 5) ray = camera.createRay(forPixelWithX: 100, y: 50) AssertApproximatelyEqual(ray.origin, Tuple(pointWith: 0, 2, -5)) AssertApproximatelyEqual(ray.direction, Tuple(vectorWith: sqrt(2) / 2, 0, -sqrt(2) / 2)) } func testRenderWorld() { let world = World.default let camera = Camera(hsize: 11, vsize: 11, fieldOfView: .pi / 2) let from = Tuple(pointWith: 0, 0, -5) let to = Tuple(pointWith: 0, 0, 0) let up = Tuple(vectorWith: 0, 1, 0) camera.transform = Transformation.viewTransform(from: from, to: to, up: up) let canvas = camera.render(world: world) AssertApproximatelyEqual(canvas.getPixel(at: 5, 5), Color(0.38066, 0.47583, 0.2855)) } }
39.192982
101
0.623993
294f64c53557df04e6730f4aa4f15fb3f63e4f54
325
lua
Lua
lua/apprentice/languages/moonscript.lua
adisen99/couleur-nvim
92d1e12bd98ff601328ae748534e7fd46017d900
[ "MIT" ]
15
2021-09-09T08:57:24.000Z
2022-03-29T07:00:35.000Z
lua/apprentice/languages/moonscript.lua
adisen99/couleur-nvim
92d1e12bd98ff601328ae748534e7fd46017d900
[ "MIT" ]
null
null
null
lua/apprentice/languages/moonscript.lua
adisen99/couleur-nvim
92d1e12bd98ff601328ae748534e7fd46017d900
[ "MIT" ]
2
2021-12-27T20:37:05.000Z
2022-03-04T00:08:33.000Z
-- language specific higlights local lush = require("lush") local base = require("apprentice.base") local M = {} M = lush(function() return { moonSpecialOp {base.ApprenticeFg3}, moonExtendedOp {base.ApprenticeFg3}, moonFunction {base.ApprenticeFg3}, moonObject {base.ApprenticeYellow}, } end) return M
19.117647
40
0.707692
ef59d597b85335b58c46f81a6781d3c4c44fc25a
22,913
js
JavaScript
ChartsSpace/PlottersManager.js
AAVikings/CanvasApp
12b9877d05f197c17bdab71a99a9e7a2906b67d8
[ "Apache-2.0" ]
null
null
null
ChartsSpace/PlottersManager.js
AAVikings/CanvasApp
12b9877d05f197c17bdab71a99a9e7a2906b67d8
[ "Apache-2.0" ]
null
null
null
ChartsSpace/PlottersManager.js
AAVikings/CanvasApp
12b9877d05f197c17bdab71a99a9e7a2906b67d8
[ "Apache-2.0" ]
null
null
null
function newPlottersManager () { const MODULE_NAME = 'Plotters Manager' const ERROR_LOG = true const logger = newWebDebugLog() logger.fileName = MODULE_NAME let productPlotters = [] let competitionPlotters = [] let timePeriod = INITIAL_TIME_PERIOD let datetime = NEW_SESSION_INITIAL_DATE let thisObject = { fitFunction: undefined, container: undefined, setDatetime: setDatetime, setTimePeriod: setTimePeriod, positionAtDatetime: positionAtDatetime, draw: draw, getContainer: getContainer, initialize: initialize, finalize: finalize } thisObject.container = newContainer() thisObject.container.initialize(MODULE_NAME) let initializationReady = false let productsPanel let exchange let market return thisObject function finalize (callBackFunction) { try { for (let i = 0; i < productPlotters.length; i++) { if (productPlotters[i].profile !== undefined) { canvas.floatingSpace.profileBalls.destroyProfileBall(productPlotters[i].profile) } /* Destroyd the Note Set */ canvas.floatingSpace.noteSets.destroyNoteSet(productPlotters[i].noteSet) /* Then the panels. */ for (let j = 0; j < productPlotters[i].panels.length; j++) { canvas.panelsSpace.destroyPanel(productPlotters[i].panels[j]) } /* Finally the Storage Objects */ productPlotters[i].storage.finalize() if (productPlotters[i].plotter.finalize !== undefined) { productPlotters[i].plotter.finalize() } productPlotters.splice(i, 1) // Delete item from array. } for (let i = 0; i < competitionPlotters.length; i++) { if (competitionPlotters[i].profile !== undefined) { canvas.floatingSpace.profileBalls.destroyProfileBall(competitionPlotters[i].profile) } /* Destroyd the Note Set */ canvas.floatingSpace.noteSets.destroyNoteSet(competitionPlotters[i].noteSet) /* Then the panels. */ if (competitionPlotters[i].panels !== undefined) { for (let j = 0; j < competitionPlotters[i].panels.length; j++) { canvas.panelsSpace.destroyPanel(competitionPlotters[i].panels[j]) } } /* Finally the Storage Objects */ competitionPlotters[i].storage.finalize() if (competitionPlotters[i].plotter.finalize !== undefined) { competitionPlotters[i].plotter.finalize() } competitionPlotters.splice(i, 1) // Delete item from array. } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] finalize -> err = ' + err.stack) } callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) } } function initialize (pProductsPanel, pExchange, pMarket, callBackFunction) { try { /* Remember the Products Panel */ productsPanel = pProductsPanel exchange = pExchange market = pMarket /* Listen to the event of change of status */ productsPanel.container.eventHandler.listenToEvent('Product Card Status Changed', onProductCardStatusChanged) initializeCompetitionPlotters(onCompetitionPlottersInitialized) function onCompetitionPlottersInitialized (err) { try { switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) return } default: { callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) return } } initializeProductPlotters(onProductPlottersInitialized) function onProductPlottersInitialized (err) { try { switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { initializationReady = true callBackFunction(GLOBAL.DEFAULT_OK_RESPONSE) break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) return } default: { callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) return } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initialize -> onCompetitionPlottersInitialized -> onProductPlottersInitialized -> err = ' + err.stack) } callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initialize -> onCompetitionPlottersInitialized -> err = ' + err.stack) } callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initialize -> err = ' + err.stack) } callBackFunction(GLOBAL.DEFAULT_FAIL_RESPONSE) } } function initializeCompetitionPlotters (callBack) { try { /* Disabling this functionality since it is not currently available */ callBack(GLOBAL.DEFAULT_OK_RESPONSE) return /* At this current version of the platform, we will support only one competition with only one plotter. */ const COMPETITION_HOST = 'AAMasters' const COMPETITION = 'Weekend-Deathmatch' let objName = COMPETITION_HOST + '-' + COMPETITION let storage = newCompetitionStorage(objName) let host = ecosystem.getHost(COMPETITION_HOST) let competition = ecosystem.getCompetition(host, COMPETITION) storage.initialize(host, competition, exchange, market, onCompetitionStorageInitialized) function onCompetitionStorageInitialized (err) { try { switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } default: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } } /* Now we have all the initial data loaded and ready to be delivered to the new instance of the plotter. */ let plotter = getNewPlotter(competition.plotter.devTeam, competition.plotter.codeName, competition.plotter.moduleName) plotter.container.connectToParent(thisObject.container, true, true, false, true, true, true) plotter.container.frame.position.x = thisObject.container.frame.width / 2 - plotter.container.frame.width / 2 plotter.container.frame.position.y = thisObject.container.frame.height / 2 - plotter.container.frame.height / 2 /* We add the profile picture of each participant, because the plotter will need it. */ for (let k = 0; k < competition.participants.length; k++) { let participant = competition.participants[k] let devTeam = ecosystem.getTeam(participant.devTeam) let bot = ecosystem.getBot(devTeam, participant.bot) participant.profilePicture = bot.profilePicture } plotter.fitFunction = thisObject.fitFunction plotter.initialize(competition, storage, datetime, timePeriod, onPlotterInizialized) function onPlotterInizialized (err) { try { switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } default: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } } let competitionPlotter = { plotter: plotter, storage: storage } /* Add the new Active Protter to the Array */ competitionPlotters.push(competitionPlotter) /* Create The Profie Picture FloatingObject */ if (competitionPlotter.plotter.payload !== undefined) { for (let k = 0; k < competition.participants.length; k++) { let participant = competition.participants[k] let devTeam = ecosystem.getTeam(participant.devTeam) let bot = ecosystem.getBot(devTeam, participant.bot) let imageId = participant.devTeam + '.' + participant.profilePicture const TEAM = devTeam.codeName.toLowerCase() const BOT = bot.codeName.toLowerCase() /* let botAvatar = new Image() botAvatar.src = window.canvasApp.context.fbProfileImages.get(TEAM + '-' + BOT) competitionPlotter.plotter.payload[k].profile.title = bot.displayName competitionPlotter.plotter.payload[k].profile.imageId = imageId competitionPlotter.plotter.payload[k].profile.botAvatar = botAvatar canvas.floatingSpace.profileBalls.createNewProfileBall(competitionPlotter.plotter.payload[k], onProfileBallCreated) function onProfileBallCreated (err, pProfileHandle) { competitionPlotter.plotter.payload[k].profile.handle = pProfileHandle } */ } } callBack(GLOBAL.DEFAULT_OK_RESPONSE) } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeCompetitionPlotters -> onCompetitionStorageInitialized -> onPlotterInizialized -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeCompetitionPlotters -> onCompetitionStorageInitialized -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeCompetitionPlotters -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } function initializeProductPlotters (callBack) { try { /* Lets get all the cards that needs to be loaded. */ let initializationCounter = 0 let loadingProductCards = productsPanel.getLoadingProductCards() let okCounter = 0 let failCounter = 0 if (loadingProductCards.length === 0) { callBack(GLOBAL.DEFAULT_OK_RESPONSE) return } for (let i = 0; i < loadingProductCards.length; i++) { /* For each one, we will initialize the associated plotter. */ initializeProductPlotter(loadingProductCards[i], onProductPlotterInitialized) function onProductPlotterInitialized (err) { initializationCounter++ switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { okCounter++ break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { failCounter++ break } default: { failCounter++ break } } if (initializationCounter === loadingProductCards.length) { // This was the last one. /* If less than 50% of plotters are initialized then we return FAIL. */ if (okCounter >= 1) { callBack(GLOBAL.DEFAULT_OK_RESPONSE) } else { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeProductPlotters -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } function initializeProductPlotter (pProductCard, callBack) { try { /* Before Initializing a Plotter, we need the Storage it will use, loaded with the files it will initially need. */ let objName = pProductCard.devTeam.codeName + '-' + pProductCard.bot.codeName + '-' + pProductCard.product.codeName let storage = newProductStorage(objName) /* Before Initializing the Storage, we will put the Product Card to listen to the events the storage will raise every time a file is loaded, so that the UI can somehow show this. There are different types of events. */ for (let i = 0; i < pProductCard.product.dataSets.length; i++) { let thisSet = pProductCard.product.dataSets[i] switch (thisSet.type) { case 'Market Files': { storage.eventHandler.listenToEvent('Market File Loaded', pProductCard.onMarketFileLoaded) } break case 'Daily Files': { storage.eventHandler.listenToEvent('Daily File Loaded', pProductCard.onDailyFileLoaded) } break case 'Single File': { storage.eventHandler.listenToEvent('Single File Loaded', pProductCard.onSingleFileLoaded) } break case 'File Sequence': { storage.eventHandler.listenToEvent('File Sequence Loaded', pProductCard.onFileSequenceLoaded) } break } } storage.initialize(pProductCard.devTeam, pProductCard.bot, pProductCard.product, exchange, market, datetime, timePeriod, onProductStorageInitialized) function onProductStorageInitialized (err) { try { switch (err.result) { case GLOBAL.DEFAULT_OK_RESPONSE.result: { break } case GLOBAL.DEFAULT_FAIL_RESPONSE.result: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } default: { callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) return } } /* Now we have all the initial data loaded and ready to be delivered to the new instance of the plotter. */ let plotter = getNewPlotter(pProductCard.product.plotter.devTeam, pProductCard.product.plotter.codeName, pProductCard.product.plotter.moduleName) plotter.container.connectToParent(thisObject.container, true, true, false, true, true, true) plotter.container.frame.position.x = thisObject.container.frame.width / 2 - plotter.container.frame.width / 2 plotter.container.frame.position.y = thisObject.container.frame.height / 2 - plotter.container.frame.height / 2 plotter.fitFunction = thisObject.fitFunction plotter.initialize(storage, exchange, market, datetime, timePeriod, onPlotterInizialized) function onPlotterInizialized () { try { let productPlotter = { productCard: pProductCard, plotter: plotter, storage: storage, profile: undefined, notes: undefined } /* Let the Plotter listen to the event of Cursor Files loaded, so that it can reack recalculating if needed. */ storage.eventHandler.listenToEvent('Daily File Loaded', plotter.onDailyFileLoaded) /* Lets load now this plotter panels. */ productPlotter.panels = [] for (let i = 0; i < pProductCard.product.plotter.module.panels.length; i++) { let panelConfig = pProductCard.product.plotter.module.panels[i] let parameters = { devTeam: pProductCard.product.plotter.devTeam, plotterCodeName: pProductCard.product.plotter.codeName, moduleCodeName: pProductCard.product.plotter.moduleName, panelCodeName: panelConfig.codeName } let panelOwner = exchange + ' ' + market.assetB + '/' + market.assetA let plotterPanelHandle = canvas.panelsSpace.createNewPanel('Plotter Panel', parameters, panelOwner) let plotterPanel = canvas.panelsSpace.getPanel(plotterPanelHandle, panelOwner) /* Connect Panel to the Plotter via an Event. */ if (panelConfig.event !== undefined) { productPlotter.plotter.container.eventHandler.listenToEvent(panelConfig.event, plotterPanel.onEventRaised) } productPlotter.panels.push(plotterPanelHandle) } /* Create The Profie Picture FloatingObject */ if (productPlotter.plotter.payload !== undefined) { let imageId = pProductCard.bot.devTeam + '.' + pProductCard.bot.profilePicture productPlotter.plotter.payload.profile.subTitle = pProductCard.product.shortDisplayName productPlotter.plotter.payload.profile.title = pProductCard.bot.displayName productPlotter.plotter.payload.profile.imageId = imageId productPlotter.plotter.payload.profile.botAvatar = pProductCard.bot.avatar canvas.floatingSpace.profileBalls.createNewProfileBall(productPlotter.plotter.payload, onProfileBallCreated) function onProfileBallCreated (err, pProfileHandle) { productPlotter.profile = pProfileHandle /* There is no policy yet of what to do if this fails. */ } /* Create the Text Notes */ canvas.floatingSpace.noteSets.createNoteSet(productPlotter.plotter.payload, productPlotter.plotter.container.eventHandler, onNoteSetCreated) function onNoteSetCreated (err, pNoteSetHandle) { productPlotter.noteSet = pNoteSetHandle /* There is no policy yet of what to do if this fails. */ } } /* Add the new Active Protter to the Array */ productPlotters.push(productPlotter) callBack(GLOBAL.DEFAULT_OK_RESPONSE) } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeProductPlotter -> onProductStorageInitialized -> onPlotterInizialized -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeProductPlotter -> onProductStorageInitialized -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } } catch (err) { if (ERROR_LOG === true) { logger.write('[ERROR] initializeProductPlotter -> err = ' + err.stack) } callBack(GLOBAL.DEFAULT_FAIL_RESPONSE) } } function onProductCardStatusChanged (pProductCard) { if (pProductCard.status === PRODUCT_CARD_STATUS.LOADING) { /* Lets see if we can find the Plotter of this card on our Active Plotters list, other wise we will initialize it */ let found = false for (let i = 0; i < productPlotters.length; i++) { if (productPlotters[i].productCard.code === pProductCard.code) { found = true } } if (found === false) { initializeProductPlotter(pProductCard, onProductPlotterInitialized) function onProductPlotterInitialized (err) { /* There is no policy yet of what to do if this fails. */ } } } if (pProductCard.status === PRODUCT_CARD_STATUS.OFF) { /* If the plotter of this card is not on our Active Plotters list, then we remove it. */ for (let i = 0; i < productPlotters.length; i++) { if (productPlotters[i].productCard.code === pProductCard.code) { if (productPlotters[i].profile !== undefined) { canvas.floatingSpace.profileBalls.destroyProfileBall(productPlotters[i].profile) } /* Destroyd the Note Set */ canvas.floatingSpace.noteSets.destroyNoteSet(productPlotters[i].noteSet) /* Then the panels. */ for (let j = 0; j < productPlotters[i].panels.length; j++) { canvas.panelsSpace.destroyPanel(productPlotters[i].panels[j]) } /* Finally the Storage Objects */ productPlotters[i].storage.finalize() if (productPlotters[i].plotter.finalize !== undefined) { productPlotters[i].plotter.container.finalize() productPlotters[i].plotter.finalize() } productPlotters.splice(i, 1) // Delete item from array. return // We already found the product woth changes and processed it. } } } } function setTimePeriod (pTimePeriod) { timePeriod = pTimePeriod if (initializationReady === true) { for (let i = 0; i < productPlotters.length; i++) { let productPlotter = productPlotters[i] productPlotter.productCard.setTimePeriod(timePeriod) productPlotter.storage.setTimePeriod(timePeriod) productPlotter.plotter.setTimePeriod(timePeriod) } for (let i = 0; i < competitionPlotters.length; i++) { let competitionPlotter = competitionPlotters[i] competitionPlotter.plotter.setTimePeriod(timePeriod) } } } function setDatetime (pDatetime) { datetime = pDatetime for (let i = 0; i < productPlotters.length; i++) { let productPlotter = productPlotters[i] productPlotter.productCard.setDatetime(pDatetime) productPlotter.storage.setDatetime(pDatetime) productPlotter.plotter.setDatetime(pDatetime) for (let i = 0; i < competitionPlotters.length; i++) { let competitionPlotter = competitionPlotters[i] competitionPlotter.plotter.setDatetime(datetime) } } } function positionAtDatetime (pDatetime) { for (let i = 0; i < productPlotters.length; i++) { let productPlotter = productPlotters[i] if (productPlotter.plotter.positionAtDatetime !== undefined) { productPlotter.plotter.positionAtDatetime(pDatetime) } } } function getContainer (point) { } function draw () { if (productPlotters === undefined) { return } // We need to wait /* First the Product Plotters. */ for (let i = 0; i < productPlotters.length; i++) { let productPlotter = productPlotters[i] productPlotter.plotter.draw() } /* Then the competition plotters. */ for (let i = 0; i < competitionPlotters.length; i++) { let competitionPlotter = competitionPlotters[i] competitionPlotter.plotter.draw() } } }
42.90824
176
0.607559
6ba8a69bf04fe932b6b92e87cf8b273ff995bbd0
620
swift
Swift
validation-test/compiler_crashers_fixed/02175-swift-scopeinfo-addtoscope.swift
ghostbar/swift-lang.deb
b1a887edd9178a0049a0ef839c4419142781f7a0
[ "Apache-2.0" ]
10
2015-12-25T02:19:46.000Z
2021-11-14T15:37:57.000Z
validation-test/compiler_crashers_fixed/02175-swift-scopeinfo-addtoscope.swift
ghostbar/swift-lang.deb
b1a887edd9178a0049a0ef839c4419142781f7a0
[ "Apache-2.0" ]
2
2016-02-01T08:51:00.000Z
2017-04-07T09:04:30.000Z
validation-test/compiler_crashers_fixed/02175-swift-scopeinfo-addtoscope.swift
ghostbar/swift-lang.deb
b1a887edd9178a0049a0ef839c4419142781f7a0
[ "Apache-2.0" ]
3
2016-04-02T15:05:27.000Z
2019-08-19T15:25:02.000Z
// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing let t: NSObject { override func a<C() in x in c { init() -> Any, A> { } A> a { } typealias A { return z: d : String { protocol B : Bool) -> Int -> { } protocol a { } } } protocol A : a { class A : CollectionType where H) -> U) { var b { } protocol b { protocol P { } } } func a } public var d { } public var b : String { typealias f == [Any) -> T : C() -> ((") get { typealias B : NSObject { } func a<T }
15.121951
87
0.620968
b8f762dec004fa1f348444a5fa15254d5845b7b8
309
h
C
ObjC/UI/UploadProgressViewDemo/UploadProgressViewDemo/ProgressViewController.h
guowilling/iOSDevCollection
ba1569ad09ad06bebe427dc9b3bc3e35605254c3
[ "MIT" ]
1
2017-10-11T08:33:00.000Z
2017-10-11T08:33:00.000Z
ObjC/UI/UploadProgressViewDemo/UploadProgressViewDemo/ProgressViewController.h
guowilling/iOSDevCollection
ba1569ad09ad06bebe427dc9b3bc3e35605254c3
[ "MIT" ]
null
null
null
ObjC/UI/UploadProgressViewDemo/UploadProgressViewDemo/ProgressViewController.h
guowilling/iOSDevCollection
ba1569ad09ad06bebe427dc9b3bc3e35605254c3
[ "MIT" ]
null
null
null
// // ProgressViewController.h // UploadProgressViewDemo // // Created by 郭伟林 on 16/8/27. // Copyright © 2016年 SR. All rights reserved. // #import <UIKit/UIKit.h> #import "UploadProgressView.h" @interface ProgressViewController : UIViewController @property (nonatomic, assign) ProgressType type; @end
18.176471
52
0.737864
ce81924462a6a4522587ce8c291b0633c52aa5c9
8,911
rs
Rust
src/object.rs
tancehao/ConstDB
350d577d3b225bb1625c3dac491c57e0e8153b09
[ "Apache-2.0" ]
25
2022-03-14T13:03:09.000Z
2022-03-20T15:02:34.000Z
src/object.rs
tancehao/ConstDB
350d577d3b225bb1625c3dac491c57e0e8153b09
[ "Apache-2.0" ]
1
2022-03-15T08:53:50.000Z
2022-03-15T08:53:50.000Z
src/object.rs
tancehao/ConstDB
350d577d3b225bb1625c3dac491c57e0e8153b09
[ "Apache-2.0" ]
1
2022-03-15T08:39:17.000Z
2022-03-15T08:39:17.000Z
use std::cmp::max; use std::io::Write; use crate::crdt::list::List; use crate::crdt::lwwhash::{Dict, Set}; use crate::resp::Message; use crate::snapshot::{SnapshotLoader, SnapshotWriter}; use crate::{Bytes, CstError}; use tokio::io::AsyncRead; use crate::crdt::vclock::{MultiVersionVal, Counter}; #[derive(Debug, Clone)] pub struct Object { pub create_time: u64, pub update_time: u64, pub delete_time: u64, pub enc: Encoding, } const OBJECT_ENC_COUNTER: u8 = 0; const OBJECT_ENC_BYTES: u8 = 1; const OBJECT_ENC_DICT: u8 = 2; const OBJECT_ENC_SET: u8 = 3; const OBJECT_ENC_LIST: u8 = 4; const OBJECT_ENC_MVREG: u8 = 5; impl Object { pub fn new(enc: Encoding, ct: u64, dt: u64) -> Self { Object { create_time: ct, update_time: 0, delete_time: dt, enc, } } #[inline] pub fn updated_at(&mut self, uuid: u64) { self.update_time = max(self.update_time, uuid); } pub fn delete_at(&mut self, uuid: u64) -> bool { let alive_before = self.alive(); self.delete_time = max(self.delete_time, uuid); let alive_after = self.alive(); alive_before && !alive_after } #[inline] pub fn alive(&self) -> bool { self.update_time >= self.delete_time } #[inline] pub fn created_before(&self, t: u64) -> bool { self.create_time < t } // apply the data in another object into the current one. // if an object was once of an encoding, and be deleted(softly) later, it still has that encoding. // that says, we avoid type conflicts even the user believes an older entry has been deleted. pub fn merge(&mut self, other: Object) -> Result<(), ()> { let (my_ct, my_dt) = (self.create_time, self.delete_time); let (his_ct, his_dt) = (other.create_time, other.delete_time); let (my_ut, his_ut) = (self.update_time, other.update_time); match (&mut self.enc, other.enc) { (Encoding::Counter(c), Encoding::Counter(oc)) => c.merge(*oc), (Encoding::Bytes(b), Encoding::Bytes(ob)) => { // TODO if my_ct < his_ct { b.0 = ob.0.clone(); } self.create_time = max(my_ct, his_ct); self.delete_time = max(my_dt, his_dt); self.update_time = max(my_ut, his_ut); } (Encoding::LWWDict(d), Encoding::LWWDict(od)) => d.merge(*od), (Encoding::LWWSet(s), Encoding::LWWSet(os)) => s.merge(*os), (Encoding::MVREG(s), Encoding::MVREG(os)) => s.merge(*os), _ => return Err(()), } Ok(()) } pub fn save_snapshot<W: Write>(&self, w: &mut SnapshotWriter<W>) -> Result<(), CstError> { w.write_integer(self.create_time as i64)?; w.write_integer(self.update_time as i64)?; w.write_integer(self.delete_time as i64)?; match &self.enc { Encoding::Counter(i) => { w.write_byte(OBJECT_ENC_COUNTER)?; i.save_snapshot(w) } Encoding::Bytes(b) => { w.write_byte(OBJECT_ENC_BYTES)?; let _ = w.write_bytes(b.as_bytes())?; Ok(()) } Encoding::LWWSet(s) => { w.write_byte(OBJECT_ENC_SET)?; s.save_snapshot(w) } Encoding::LWWDict(d) => { w.write_byte(OBJECT_ENC_DICT)?; d.save_snapshot(w) } Encoding::List(l) => { w.write_byte(OBJECT_ENC_LIST)?; l.save_snapshot(w) } Encoding::MVREG(r) => { w.write_byte(OBJECT_ENC_MVREG)?; r.save_snapshot(w) } } } pub async fn load_snapshot<T: AsyncRead + Unpin>( r: &mut SnapshotLoader<T>, ) -> Result<Self, CstError> { let (ct, mt, dt) = ( r.read_integer().await? as u64, r.read_integer().await? as u64, r.read_integer().await? as u64, ); let enc = match r.read_byte().await? { OBJECT_ENC_COUNTER => Encoding::from(Counter::load_snapshot(r).await?), OBJECT_ENC_BYTES => { let s = r.read_integer().await?; let d = r.read_bytes(s as usize).await?; Encoding::from(Bytes::from(d)) } OBJECT_ENC_SET => Encoding::from(Set::load_snapshot(r).await?), OBJECT_ENC_DICT => Encoding::from(Dict::load_snapshot(r).await?), OBJECT_ENC_LIST => Encoding::from(List::load_snapshot(r).await?), OBJECT_ENC_MVREG => Encoding::from(MultiVersionVal::load_snapshot(r).await?), _ => return Err(CstError::InvalidType), }; Ok(Object { create_time: ct, update_time: mt, delete_time: dt, enc, }) } pub fn describe(&self) -> Message { let (t, m) = match &self.enc { Encoding::Counter(g) => ("counter", g.describe()), Encoding::Bytes(s) => ("bytes", Message::String(s.clone())), Encoding::LWWSet(t) => ("lwwset", t.describe()), Encoding::LWWDict(t) => ("lwwdict", t.describe()), Encoding::List(l) => ("list", l.describe()), Encoding::MVREG(l) => ("mvreg", l.describe()), }; Message::Array(vec![ Message::BulkString(format!("ct: {}", self.create_time).into()), Message::BulkString(format!("mt: {}", self.update_time).into()), Message::BulkString(format!("dt: {}", self.delete_time).into()), Message::BulkString(t.into()), m, ]) } } #[derive(Debug, Clone)] pub enum Encoding { Counter(Box<Counter>), Bytes(Bytes), LWWSet(Box<Set>), LWWDict(Box<Dict>), List(Box<List>), MVREG(Box<MultiVersionVal>), } impl Encoding { pub fn name(&self) -> &'static str { match self { Encoding::Counter(_) => "Counter", Encoding::Bytes(_) => "Bytes", Encoding::LWWDict(_) => "LWWDict", Encoding::LWWSet(_) => "LWWSet", Encoding::List(_) => "List", Encoding::MVREG(_) => "MVRegister", } } pub fn as_counter(&self) -> Result<&Counter, CstError> { match self { Encoding::Counter(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mut_counter(&mut self) -> Result<&mut Counter, CstError> { match self { Encoding::Counter(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_set(&self) -> Result<&Set, CstError> { match self { Encoding::LWWSet(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mut_set(&mut self) -> Result<&mut Set, CstError> { match self { Encoding::LWWSet(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_dict(&self) -> Result<&Dict, CstError> { match self { Encoding::LWWDict(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mut_dict(&mut self) -> Result<&mut Dict, CstError> { match self { Encoding::LWWDict(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_list(&self) -> Result<&List, CstError> { match self { Encoding::List(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mut_list(&mut self) -> Result<&mut List, CstError> { match self { Encoding::List(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mvreg(&self) -> Result<&MultiVersionVal, CstError> { match self { Encoding::MVREG(c) => Ok(c), _ => Err(CstError::InvalidType), } } pub fn as_mut_mvreg(&mut self) -> Result<&mut MultiVersionVal, CstError> { match self { Encoding::MVREG(c) => Ok(c), _ => Err(CstError::InvalidType), } } } impl From<Counter> for Encoding { fn from(c: Counter) -> Self { Encoding::Counter(Box::new(c)) } } impl From<Bytes> for Encoding { fn from(b: Bytes) -> Self { Encoding::Bytes(b) } } impl From<Set> for Encoding { fn from(c: Set) -> Self { Encoding::LWWSet(Box::new(c)) } } impl From<Dict> for Encoding { fn from(c: Dict) -> Self { Encoding::LWWDict(Box::new(c)) } } impl From<List> for Encoding { fn from(l: List) -> Self { Encoding::List(Box::new(l)) } } impl From<MultiVersionVal> for Encoding { fn from(v: MultiVersionVal) -> Self { Encoding::MVREG(Box::new(v)) } }
30.412969
102
0.524296
063a5f987a84e87e9cdac92305d1fc4e375a03a6
1,135
rs
Rust
src/main.rs
Szczurowski/fast-crawler
f3c9eb8126467837294832036c678a4bad0759ed
[ "MIT" ]
null
null
null
src/main.rs
Szczurowski/fast-crawler
f3c9eb8126467837294832036c678a4bad0759ed
[ "MIT" ]
null
null
null
src/main.rs
Szczurowski/fast-crawler
f3c9eb8126467837294832036c678a4bad0759ed
[ "MIT" ]
1
2018-12-02T20:32:29.000Z
2018-12-02T20:32:29.000Z
#![feature(proc_macro_hygiene, decl_macro)] #[macro_use] extern crate rocket; mod bank_client; mod tokio_playground; use self::bank_client::{Currency, get_currency}; // add some logging, preferably via [email protected], log4rs or !simplelog.rs #[get("/<name>/<age>")] fn hello(name: String, age: i32) -> String { let eur_value = get_currency(Currency::EUR); let message = match eur_value { Ok(currency) => currency.to_string(), Err(error) => error }; format!("Hello, {} year old named {}! Eur jest po: {}", age, name, message) } fn main() { rocket::ignite().mount("/hello", routes![hello]).launch(); } extern crate futures; #[cfg(test)] #[macro_use] extern crate pretty_assertions; #[cfg(test)] mod tests { pub fn add(a: i32, b: i32) -> i32 { a + b } #[test] fn test_add() { assert_eq!(add(2, 3), 5); } #[test] fn main3() { use futures::Future; let future = futures::future::ok::<i32, i32>(10); let mapped = future.map(|i| i * 3); let expected = Ok(30); assert_eq!(mapped.wait(), expected); } }
20.636364
79
0.58326
2e4f95504ae12627b933ec15e6392dea2596bad1
3,922
rs
Rust
qvisor/src/runc/shim/service.rs
CentaurusInfra/Quark
1079b36efa7e537f8fec39f037ee5ccc71977e7d
[ "Apache-2.0" ]
null
null
null
qvisor/src/runc/shim/service.rs
CentaurusInfra/Quark
1079b36efa7e537f8fec39f037ee5ccc71977e7d
[ "Apache-2.0" ]
null
null
null
qvisor/src/runc/shim/service.rs
CentaurusInfra/Quark
1079b36efa7e537f8fec39f037ee5ccc71977e7d
[ "Apache-2.0" ]
null
null
null
// Copyright (c) 2021 Quark Container Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. use std::sync::mpsc::{channel, Receiver}; use std::sync::Arc; use containerd_shim::api::*; use containerd_shim::protos::protobuf::{Message, SingularPtrField}; use containerd_shim::protos::ttrpc::context::Context; use containerd_shim::publisher::RemotePublisher; use containerd_shim::spawn; use containerd_shim::util::*; use containerd_shim::Config; use containerd_shim::ExitSignal; use containerd_shim::Result; use containerd_shim::Shim; use containerd_shim::StartOpts; //use super::super::super::qlib::common; //use super::super::super::qlib::common::*; use super::shim_task::*; //pub type ShimResult<T> = std::result::Result<T, containerd_shim::Error>; const GROUP_LABELS: [&str; 2] = [ "io.containerd.runc.v2.group", "io.kubernetes.cri.sandbox-id", ]; // Implementation for shim service, see https://github.com/containerd/containerd/blob/main/runtime/v2/README.md pub struct Service { exit: Arc<ExitSignal>, id: String, namespace: String, } impl Shim for Service { type T = ShimTask; fn new(_runtime_id: &str, id: &str, namespace: &str, _config: &mut Config) -> Self { let exit = Arc::new(ExitSignal::default()); Service { exit: exit.clone(), id: id.to_string(), namespace: namespace.to_string(), } } fn start_shim(&mut self, opts: StartOpts) -> Result<String> { info!("Shim Service start_shim start"); let mut grouping = opts.id.clone(); let spec = read_spec_from_file("")?; debug!("spec is {:?}", &spec); match spec.annotations() { Some(annotations) => { for label in GROUP_LABELS.iter() { if let Some(value) = annotations.get(*label) { grouping = value.to_string(); break; } } } None => {} } let (_, address) = spawn(opts, &grouping, Vec::new())?; write_address(&address)?; info!("Shim Service start_shim end"); Ok(address.to_string()) } fn delete_shim(&mut self) -> Result<DeleteResponse> { info!("Shim Service delete_shim start"); // TODO: revisit this, this should try to read container from pwd and delete //self.task.Destroy()?; let mut resp = DeleteResponse::new(); // sigkill resp.exit_status = 137; resp.exited_at = SingularPtrField::some(timestamp()?); info!("Shim Service delete_shim finish"); Ok(resp) } fn wait(&mut self) { info!("Shim Service wait start"); self.exit.wait(); info!("Shim Service wait finish"); } fn create_task_service(&self, publisher: RemotePublisher) -> Self::T { let (tx, rx) = channel(); let task = ShimTask::New(self.namespace.as_str(), self.exit.clone(), tx); forward(publisher, self.namespace.clone(), rx); task } } fn forward(publisher: RemotePublisher, ns: String, rx: Receiver<(String, Box<dyn Message>)>) { std::thread::spawn(move || { for (topic, e) in rx.iter() { publisher .publish(Context::default(), &topic, &ns, e) .unwrap_or_else(|e| warn!("publish {} to containerd: {}", topic, e)); } }); }
32.683333
111
0.613208
b0866262126ef45cbe1e8cb625eec3cb3688bc1f
2,114
sql
SQL
Database/basic_db.sql
HouariZegai/LSQLApp
5d1de3e61ec243fd536297f10433f4f909639fc7
[ "MIT" ]
156
2019-03-11T18:11:32.000Z
2021-10-10T03:36:37.000Z
Database/basic_db.sql
HouariZegai/LearnSQLApp
5d1de3e61ec243fd536297f10433f4f909639fc7
[ "MIT" ]
null
null
null
Database/basic_db.sql
HouariZegai/LearnSQLApp
5d1de3e61ec243fd536297f10433f4f909639fc7
[ "MIT" ]
22
2019-03-12T13:33:05.000Z
2022-03-17T23:28:15.000Z
-- This database using in exercise type: basic -- -- remove database hospital if exists & create new database -- DROP DATABASE IF EXISTS `basic`; CREATE DATABASE `basic` CHARACTER SET utf8 COLLATE utf8_general_ci; USE `basic`; -- ----------------------------------------------------------------------------- -- -- structure of the table employees -- CREATE TABLE `employees` ( `emp_id` INT PRIMARY KEY AUTO_INCREMENT, `emp_name` VARCHAR(50) NOT NULL, `job_name` VARCHAR(50) NOT NULL, `manager_id` INT, `hire_date` VARCHAR(50) NOT NULL, `salary` DOUBLE NOT NULL, `commission` DOUBLE, `dep_id` INT NOT NULL ); -- -- the content of the table employees -- INSERT INTO `employees` VALUES (68319, 'KAYLING', 'PRESIDENT', NULL, '1991-11-18', 6000.00, NULL, 1001); INSERT INTO `employees` VALUES (66928, 'BLAZE', 'MANAGER', 68319, '1991-05-01', 2750.00, NULL, 3001); INSERT INTO `employees` VALUES (67832, 'CLARE', 'MANAGER', 68319, '1991-06-09', 2550.00, NULL, 1001); INSERT INTO `employees` VALUES (65646, 'JONAS', 'MANAGER', 68319, '1991-04-02', 2957.00, NULL, 2001); INSERT INTO `employees` VALUES (67858, 'SCARLET', 'ANALYST', 65646, '1997-04-19', 3100.00, NULL, 2001); INSERT INTO `employees` VALUES (69062, 'FRANK', 'ANALYST', 65646, '1991-12-03', 3100.00, NULL, 2001); INSERT INTO `employees` VALUES (63679, 'SANDRINE', 'CLERK', 69062, '1990-12-18', 900.00, NULL, 2001); INSERT INTO `employees` VALUES (64989, 'ADELYN', 'SALESMAN', 66928, '1991-02-20', 1700.00, 400.00, 3001); INSERT INTO `employees` VALUES (65271, 'WADE', 'SALESMAN', 66928, '1991-02-22', 1350.00, 600.00, 3001); INSERT INTO `employees` VALUES (66564, 'MADDEN', 'SALESMAN', 66928, '1991-09-28', 1350.00, 1500.00, 3001); INSERT INTO `employees` VALUES (68454, 'TUCKER', 'SALESMAN', 66928, '1991-09-08', 1600.00, 0.00, 3001); INSERT INTO `employees` VALUES (68736, 'ADNRES', 'CLERK', 67858, '1997-05-23', 1200.00, NULL, 2001); INSERT INTO `employees` VALUES (69000, 'JULIUS', 'CLERK', 66928, '1991-12-03', 1050.00, NULL, 3001); INSERT INTO `employees` VALUES (69324, 'MARKER', 'CLERK', 67832, '1992-01-23', 1400.00, NULL, 1001);
46.977778
106
0.660833
e2fe38fede73711f295b74c0569259fe24bd8bea
739
py
Python
singleScript/pyPodSplit.py
Draxnol/pyPodSplit
8580ac13dcea06b842ef9f81c8d5d5365e38ff45
[ "MIT" ]
null
null
null
singleScript/pyPodSplit.py
Draxnol/pyPodSplit
8580ac13dcea06b842ef9f81c8d5d5365e38ff45
[ "MIT" ]
1
2017-12-31T05:55:06.000Z
2017-12-31T05:55:06.000Z
singleScript/pyPodSplit.py
Draxnol/pyPodSplit
8580ac13dcea06b842ef9f81c8d5d5365e38ff45
[ "MIT" ]
null
null
null
from pydub import AudioSegment def getFileName(): filename = input('Please enter the file name') return filename def loadFile(): fileToLoad = getFileName() file = AudioSegment.from_file(fileToLoad) return file def getSliceTimes(): sTimes = [] while True: print("Please Enter a slice time") num = input() if num == 'stop': break intnum = int(num) sTimes.append(intnum * 60000) return sTimes def startSlicing(): startSlice = 0 fileNum = 0 file = loadFile() slicetimes = getSliceTimes() for i in slicetimes: fileVarName = 'tale%i.mp3' %fileNum fileNum += 1 toExport = file[startSlice:i] startSlice = i toExport.export(fileVarName, format='mp3') print('done file') print('task completed') startSlicing()
22.393939
47
0.707713
051f235283028a16225f6fe324d4f0c01552f065
5,106
css
CSS
public/frontend/css/pages/page_coming_soon_v4.css
tradeeco/www.tradee.co
5cc8620368c07fdcfc181d8601197c3e5817975d
[ "MIT" ]
null
null
null
public/frontend/css/pages/page_coming_soon_v4.css
tradeeco/www.tradee.co
5cc8620368c07fdcfc181d8601197c3e5817975d
[ "MIT" ]
null
null
null
public/frontend/css/pages/page_coming_soon_v4.css
tradeeco/www.tradee.co
5cc8620368c07fdcfc181d8601197c3e5817975d
[ "MIT" ]
null
null
null
html { min-height: 100%; position: relative; } body { /* Margin bottom by footer height */ margin-bottom: 540px; font-size: 14px; } /* Coming Soon Page 4 ------------------------------------*/ /* Top */ .bg-top { background: url(../../img/bg/4.jpg) no-repeat scroll center center / cover; position: relative; z-index: 1; } .cover-bg-top { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.6); z-index: -1; } .coming-soon-v4-top h1 { color: #fff; text-transform: uppercase; font-size: 50px; line-height: 1.5; font-weight: 300; } .coming-soon-v4-top p { color: #fff; font-size: 16px; line-height: 1.5; font-weight: 200; max-width: 720px; margin: 0 auto 50px; } /* Middle */ .coming-soon-v4-middle .icon-custom { width: 83px; height: 83px; margin-bottom: 50px; line-height: 90px; } i.icon-lg.icon-line { font-size: 40px; } .coming-soon-v4-middle h2.title-v3-md { color: #000; text-transform: uppercase; font-size: 18px; } .service-box p { color: #999; font-size: 14px; line-height: 1.5; max-width: 230px; margin: 0 auto; } /* Bottom */ .bg-bottom { background: url(../../img/bg/5.jpg) no-repeat scroll center center / cover; position: relative; z-index: 1; } .cover-bg-bottom { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.6); z-index: -1; } .coming-soon-v4-bottom form { max-width: 565px; margin: 0 auto 100px; text-align: center; } .coming-soon-v4-bottom input.form-control { max-width: 365px; float: left; border-radius: 3px !important; height: 45px; padding-left: 40px; } .coming-soon-v4-bottom .input-group:before { position: absolute; top: 9px; left: 14px; content: "\f003"; font-family: FontAwesome; z-index: 5; color: #3498db; font-size: 18px; } .coming-soon-v4-bottom .btn-u { float: right; border-radius: 3px; height: 45px; text-transform: uppercase; font-weight: 200;. } @media (min-width: 580px) { .coming-soon-v4-bottom .btn-u { width: 165px; } } /* Social links */ .coming-soon-v4-bottom .subfooter .social-links li i.fa { font-size: 22px; color: #3498db; } .coming-soon-v4-bottom .subfooter .social-links li a:hover i.fa { color: #1b7fc2; } .coming-soon-v4-bottom .subfooter .copyright-space { color: #8b9195; text-align: center; font-size: 16px; } .copyright { color: #fff; font-size: 14px; } .copyright a { text-decoration: underline; } .subfooter a:hover { color: #fff; } /* Sticky-Footer ------------------------------------*/ .sticky-footer { position: absolute; bottom: 0; width: 100%; /* Set the fixed height of the footer here */ height: 540px; } .sticky-footer .copyright-space { color: #eee; text-align: center; font-size: 14px; } @media (max-width: 992px) { body { margin-bottom: 600px; } .sticky-footer { height: 600px; } } /* Countdown ------------------------------------*/ #defaultCountdown { width: 100%; overflow: hidden; } #defaultCountdown span.countdown-section { padding: 0 20px; margin-bottom: 20px; text-align: center; display: inline-block; position: relative; } #defaultCountdown span.countdown-section:after { content: ""; position: absolute; left: 0; top: 15px; background: #fff; width: 1px; height: 30px; } #defaultCountdown span.countdown-section:first-child:after { display: none; } #defaultCountdown span.countdown-section:last-child { width: 120px; } #defaultCountdown span.countdown-amount { position: relative; color: #fff; display: block; padding: 0 10px; font: 300 56px/1 "Quicksand", sans-serif; } #defaultCountdown span.countdown-period { display: block; color: #fff; font-size: 13px; font-weight: 300; text-transform: uppercase; } @media (max-width: 600px) { #defaultCountdown span.countdown-section:after { top: 9px; height: 20px; } #defaultCountdown span.countdown-section:last-child { width: 100px; } #defaultCountdown span.countdown-amount { font-size: 36px; } #defaultCountdown span.countdown-period { font-size: 11px; } } @media (max-width: 500px) { #defaultCountdown span.countdown-section { padding: 0 10px; } #defaultCountdown span.countdown-section:after { top: 8px; height: 15px; } #defaultCountdown span.countdown-amount { font-size: 28px; font-weight: 500; } #defaultCountdown span.countdown-section:last-child { display: none; } } /* Common heading */ .heading p { color: #8b9195; line-height: 1.2; margin-bottom: 0; text-transform: uppercase; } .heading h2.title-v2 { color: #000; position: relative; margin-bottom: 100px; font-size: 36px; text-transform: uppercase; line-height: 50px !important; } .heading h2.title-v2:after, .coming-soon-v4-middle .icon-custom:after { width: 30px; height: 2px; content: ""; background: #dde1e3; position: absolute; bottom: -30px; left: 50%; margin-left: -15px; } .coming-soon-v4-middle .icon-custom:after { bottom: 135px; } /* Common heading white */ .heading.white p, .heading.white h2.title-v2 { color: #fff; } .heading.white h2.title-v2:after { background: #fff; } #topcontrol:hover { background: #e67e22; }
18.106383
76
0.663729
f4389afc8ef1c7bff3a3475b2f84c4007068a804
1,239
ts
TypeScript
src/app/onas/onas.component.ts
BrunoBebr/super-kucharka
811cf3ee14b98291064862496a6e9739ac8cf5b4
[ "MIT" ]
3
2022-01-17T09:25:57.000Z
2022-02-22T13:56:39.000Z
src/app/onas/onas.component.ts
BrunoBebr/super-kucharka
811cf3ee14b98291064862496a6e9739ac8cf5b4
[ "MIT" ]
1
2022-01-13T15:32:12.000Z
2022-01-13T15:32:23.000Z
src/app/onas/onas.component.ts
BrunoBebr/super-kucharka
811cf3ee14b98291064862496a6e9739ac8cf5b4
[ "MIT" ]
1
2022-01-12T22:46:49.000Z
2022-01-12T22:46:49.000Z
import { Component, OnInit } from '@angular/core'; import {Location} from '@angular/common'; import { faFacebookSquare } from '@fortawesome/free-brands-svg-icons/faFacebookSquare'; import { faTwitterSquare } from '@fortawesome/free-brands-svg-icons/faTwitterSquare'; import { faPinterest } from '@fortawesome/free-brands-svg-icons/faPinterest'; import { ActivatedRoute, Router } from '@angular/router'; @Component({ selector: 'app-onas', templateUrl: './onas.component.html', styleUrls: ['./onas.component.scss'] }) export class OnasComponent implements OnInit { fbIcon = faFacebookSquare; pinIcon = faPinterest; tweetIcon = faTwitterSquare; constructor(private _location: Location, private _route: ActivatedRoute, // <-- Usefull private _router: Router,) { } ngOnInit(): void { } pou(){ console.log("Právě jsi našel tajný easter egg :)"); let audio = new Audio(); audio.src = "../../../assets/audio/pou_song.mp3"; audio.load(); audio.play(); this.delay(60000).then(any=>{ audio.pause(); }); } lastPage() { this._location.back(); } async delay(ms: number) { await new Promise<void>(resolve => setTimeout(()=>resolve(), ms)).then(); } }
24.294118
89
0.662631
435589c840475ea2ce42ccc5e547bc0b62cab253
1,740
ts
TypeScript
packages/modul-components/src/filters/money/money.sandbox.ts
chuckmah/modul
6058da32baca2074951d05f6852b5eb2c0adeb9f
[ "Apache-2.0" ]
24
2017-05-31T18:55:03.000Z
2019-10-04T13:18:38.000Z
packages/modul-components/src/filters/money/money.sandbox.ts
chuckmah/modul
6058da32baca2074951d05f6852b5eb2c0adeb9f
[ "Apache-2.0" ]
429
2017-06-16T12:50:34.000Z
2022-02-26T01:32:14.000Z
packages/modul-components/src/filters/money/money.sandbox.ts
chuckmah/modul
6058da32baca2074951d05f6852b5eb2c0adeb9f
[ "Apache-2.0" ]
10
2017-05-30T19:59:37.000Z
2018-10-01T14:00:26.000Z
import Vue, { PluginObject } from 'vue'; import { Component, Watch } from 'vue-property-decorator'; import DropdownPlugin from '../../components/dropdown/dropdown'; import IntegerfieldPlugin from '../../components/integerfield/integerfield'; import { Enums } from '../../utils/enums/enums'; import { ENGLISH, FRENCH, Messages } from '../../utils/i18n/i18n'; import { MCurrencyType } from '../../utils/money/money'; import { ModulVue } from '../../utils/vue/vue'; import MoneyPlugin from './money'; import WithRender from './money.sandbox.html'; @WithRender @Component export class MMoneySandbox extends Vue { selectedCurrency: MCurrencyType = MCurrencyType.CAD; selectedLanguage: string = (Vue.prototype as ModulVue).$i18n.currentLang(); amount: number = NaN; currencies: { key: any, value: string }[] = Enums.toKeyValueArray(MCurrencyType); languages: string[] = [FRENCH, ENGLISH]; originalLang = (Vue.prototype as ModulVue).$i18n.currentLang(); get integerFieldAmount(): string { return (this.amount || '').toString(); } set integerFieldAmount(value: string) { this.amount = value || value === '0' ? parseFloat(value) : NaN; } @Watch('selectedLanguage') changeLanguage(): void { Vue.prototype.$i18n = new Messages({ curLang: this.selectedLanguage }); this.$forceUpdate(); } destroyed(): void { (Vue.prototype as ModulVue).$i18n.currentLang(this.originalLang); } } const MMoneySandboxPlugin: PluginObject<any> = { install(v): void { v.component('m-money-sandbox', MMoneySandbox); v.use(MoneyPlugin); v.use(IntegerfieldPlugin); v.use(DropdownPlugin); } }; export default MMoneySandboxPlugin;
33.461538
85
0.670115
10b36e3ee39bad73edd8ffb12cd111eac0265f09
1,347
go
Go
both_stream/service/server.go
buqiuwenda/go-grpc-dome
abbbc749793db0e4e200f9a63d276a916f407964
[ "MIT" ]
1
2020-07-15T08:52:15.000Z
2020-07-15T08:52:15.000Z
both_stream/service/server.go
buqiuwenda/go-grpc-dome
abbbc749793db0e4e200f9a63d276a916f407964
[ "MIT" ]
null
null
null
both_stream/service/server.go
buqiuwenda/go-grpc-dome
abbbc749793db0e4e200f9a63d276a916f407964
[ "MIT" ]
null
null
null
package main import ( "context" pd "go-grpc-dome/both_stream/proto" "google.golang.org/grpc" "io" "log" "net" "strconv" ) const ( // Address 监听地址 Address string = ":50501" // Network 网络通信协议 Network string = "tcp" ) type StreamService struct{} func main(){ // 监听本地端口 listener,err :=net.Listen(Network, Address) if err !=nil{ log.Fatalf("listen port failed err:%v \n", err) } log.Println(Address+" address listener ") // 新建gRPC服务器实例 grpcServer :=grpc.NewServer() // 在gRPC服务器注册我们的服务 pd.RegisterStreamServer(grpcServer, &StreamService{}) //用服务器 Serve() 方法以及我们的端口信息区实现阻塞等待,直到进程被杀死或者 Stop() 被调用 err =grpcServer.Serve(listener) if err !=nil{ log.Fatalf("grpc server failed err:%v", err) } } func(s *StreamService) Route(ctx context.Context, req *pd.SimpleRequest)(*pd.SimpleResponse, error){ res :=&pd.SimpleResponse{ Code: 200, Value: "hello" + req.Data, } return res,nil } // Conversations 实现Conversations方法 func (s *StreamService) Conversations(srv pd.Stream_ConversationsServer) error{ n:=1 for{ req,err :=srv.Recv() if err == io.EOF{ return nil } if err !=nil{ return err } err = srv.Send(&pd.StreamResponse{ Answer: strconv.Itoa(n)+". 你是谁? request: "+req.Question, }) if err !=nil{ return err } n ++ log.Printf("from stream client request:%v",req.Question) } }
17.493506
100
0.674091
a35919e2f4dedb4c77f37eff49dda9ee5169734e
135
java
Java
db-io/src/main/java/db/io/migration/Migrator.java
tstout/db-tools
d93cb4b5204c80dc9ddf9f5ee8131ab900488eb7
[ "MIT" ]
null
null
null
db-io/src/main/java/db/io/migration/Migrator.java
tstout/db-tools
d93cb4b5204c80dc9ddf9f5ee8131ab900488eb7
[ "MIT" ]
null
null
null
db-io/src/main/java/db/io/migration/Migrator.java
tstout/db-tools
d93cb4b5204c80dc9ddf9f5ee8131ab900488eb7
[ "MIT" ]
null
null
null
package db.io.migration; public interface Migrator { void update(String script); void update(Class<?> root, String script); }
19.285714
46
0.711111
c6cd0b8c5ec2f96e932d042e4dfefb4f0135d7b1
1,923
py
Python
project4-end2end-dia/includes/utilities.py
LiuxyEric/dscc202-402-spring2022
f3877c2dde64656f9d84e3f913340f3fcefdc11b
[ "MIT" ]
null
null
null
project4-end2end-dia/includes/utilities.py
LiuxyEric/dscc202-402-spring2022
f3877c2dde64656f9d84e3f913340f3fcefdc11b
[ "MIT" ]
null
null
null
project4-end2end-dia/includes/utilities.py
LiuxyEric/dscc202-402-spring2022
f3877c2dde64656f9d84e3f913340f3fcefdc11b
[ "MIT" ]
53
2022-01-11T19:06:06.000Z
2022-03-25T19:27:48.000Z
# Databricks notebook source """ ## Helper routines... - mounting buckets in s3 - use of database - creation of tables in the metastore - ploting - data reading """ import mlflow import pandas as pd import tempfile from datetime import datetime as dt from datetime import timedelta import warnings import json from pyspark.sql.functions import * from pyspark.sql.types import * warnings.filterwarnings("ignore") # COMMAND ---------- class Utils: @staticmethod def mount_datasets(group_name): class_mount_name = "dscc202-datasets" group_mount_name = "dscc202-datasets/misc/{}".format(group_name) class_s3_bucket = "s3a://dscc202-datasets/" try: dbutils.fs.mount(class_s3_bucket, "/mnt/%s" % class_mount_name) except: dbutils.fs.unmount("/mnt/%s" % class_mount_name) dbutils.fs.mount(class_s3_bucket, "/mnt/%s" % class_mount_name) return "/mnt/%s" % class_mount_name, "/mnt/%s" % group_mount_name @staticmethod def create_metastore(group_name): # Setup the hive meta store if it does not exist and select database as the focus of future sql commands in this notebook spark.sql(f"CREATE DATABASE IF NOT EXISTS {group_name}_db") spark.sql(f"USE {group_name}_db") return f"{group_name}_db" @staticmethod def create_delta_dir(group_name): delta_dir = f"/mnt/dscc202-datasets/misc/{group_name}/tokenrec/tables/" dbutils.fs.mkdirs(delta_dir) return delta_dir @staticmethod def create_widgets(): dbutils.widgets.removeAll() dbutils.widgets.text('00.Wallet_Address', "0xf02d7ee27ff9b2279e76a60978bf8cca9b18a3ff") dbutils.widgets.text('01.Start_Date', "2022-01-01") wallet_address = str(dbutils.widgets.get('00.Wallet_Address')) start_date = str(dbutils.widgets.get('01.Start_Date')) return wallet_address,start_date
28.701493
127
0.695268
e1cf572d505bce5bc0b15e998f9dcf99a388be4c
2,495
cs
C#
Shorty.Data/Repository.cs
maxkimambo/urlshortener
83b35d49ec9022ee035d65d74d42fa6ffbe60138
[ "MIT" ]
null
null
null
Shorty.Data/Repository.cs
maxkimambo/urlshortener
83b35d49ec9022ee035d65d74d42fa6ffbe60138
[ "MIT" ]
null
null
null
Shorty.Data/Repository.cs
maxkimambo/urlshortener
83b35d49ec9022ee035d65d74d42fa6ffbe60138
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entity.Infrastructure; using System.Linq; using System.Security.Policy; using System.Text; using System.Threading.Tasks; namespace Shorty.Data { public interface IRepository { IEnumerable<UserUrl> GetAll(); UserUrl GetById(int id); UserUrl SaveUrl(UserUrl userUrl); bool DeleteUrl(UserUrl userUrl); bool DeleteUrl(int id); IEnumerable<UserUrl> GetExpiredUrls(DateTime expiryDate); void Dispose(bool disposing); void Dispose(); } public class Repository : IDisposable, IRepository { private readonly Context _context; public Repository(Context context ) { _context = context; //_context.Database.CreateIfNotExists(); } public IEnumerable<UserUrl> GetAll() { return _context.Urls; } public UserUrl GetById(int id) { var result = _context.Urls.Find(id); return result; } public UserUrl SaveUrl(UserUrl userUrl) { if (userUrl.Id == 0) { _context.Urls.Add(userUrl); } else { _context.Entry(userUrl).State = EntityState.Modified; } var result = _context.SaveChanges(); return userUrl; } public bool DeleteUrl(UserUrl userUrl) { _context.Urls.Remove(userUrl); var operationResult = _context.SaveChanges(); return operationResult > 0; } public bool DeleteUrl(int id) { var result = _context.Urls.Find(id); return DeleteUrl(result); } public IEnumerable<UserUrl> GetExpiredUrls(DateTime expiryDate) { var results = _context.Urls.Where(u => u.ExpiresOn < expiryDate).ToList(); return results; } private bool _disposed = false; public virtual void Dispose(bool disposing) { if (!_disposed) { if (disposing) { _context.Dispose(); } } _disposed = true; } public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } } }
23.990385
86
0.527455
96e3d8f59f4808d954ceb4a3f407194692e08265
3,728
cs
C#
Ginger/GingerCore/XPathParser/XPathParserException.cs
FOSSAware/Ginger
adf75c373350355e42dc107ae906ba51a2eb237e
[ "Apache-2.0" ]
null
null
null
Ginger/GingerCore/XPathParser/XPathParserException.cs
FOSSAware/Ginger
adf75c373350355e42dc107ae906ba51a2eb237e
[ "Apache-2.0" ]
null
null
null
Ginger/GingerCore/XPathParser/XPathParserException.cs
FOSSAware/Ginger
adf75c373350355e42dc107ae906ba51a2eb237e
[ "Apache-2.0" ]
null
null
null
#region License /* Copyright © 2014-2022 European Support Limited Licensed under the Apache License, Version 2.0 (the "License") you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #endregion using System.Text; using System; namespace GingerCore.XPathParser { public class XPathParserException : System.Exception { public string queryString; public int startChar; public int endChar; public XPathParserException(string queryString, int startChar, int endChar, string message) : base(message) { this.queryString = queryString; this.startChar = startChar; this.endChar = endChar; } private enum TrimType { Left, Right, Middle, } // This function is used to prevent long quotations in error messages private static void AppendTrimmed(StringBuilder sb, string value, int startIndex, int count, TrimType trimType) { const int TrimSize = 32; const string TrimMarker = "..."; if (count <= TrimSize) { sb.Append(value, startIndex, count); } else { switch (trimType) { case TrimType.Left: sb.Append(TrimMarker); sb.Append(value, startIndex + count - TrimSize, TrimSize); break; case TrimType.Right: sb.Append(value, startIndex, TrimSize); sb.Append(TrimMarker); break; case TrimType.Middle: sb.Append(value, startIndex, TrimSize / 2); sb.Append(TrimMarker); sb.Append(value, startIndex + count - TrimSize / 2, TrimSize / 2); break; } } } internal string MarkOutError() { if (queryString == null || queryString.Trim(' ').Length == 0) { return null; } int len = endChar - startChar; StringBuilder sb = new StringBuilder(); AppendTrimmed(sb, queryString, 0, startChar, TrimType.Left); if (len > 0) { sb.Append(" -->"); AppendTrimmed(sb, queryString, startChar, len, TrimType.Middle); } sb.Append("<-- "); AppendTrimmed(sb, queryString, endChar, queryString.Length - endChar, TrimType.Right); return sb.ToString(); } private string FormatDetailedMessage() { string message = Message; string error = MarkOutError(); if (error != null && error.Length > 0) { if (message.Length > 0) { message += Environment.NewLine; } message += error; } return message; } public override string ToString() { string result = this.GetType().FullName; string info = FormatDetailedMessage(); if (info != null && info.Length > 0) { result += ": " + info; } if (StackTrace != null) { result += Environment.NewLine + StackTrace; } return result; } } }
33.585586
121
0.545064
9e5b818b4250850a5a0e60bcf3585c067770deef
61
sh
Shell
build.sh
fattazzo/total-gp-world-web
3ea6f6a0ad0ecf698981c8af9a81a082a20bf134
[ "MIT" ]
6
2019-06-30T16:07:30.000Z
2021-04-19T21:14:58.000Z
build.sh
fattazzo/total-gp-world-web
3ea6f6a0ad0ecf698981c8af9a81a082a20bf134
[ "MIT" ]
3
2019-01-04T14:22:30.000Z
2019-01-11T12:53:57.000Z
build.sh
fattazzo/total-gp-world-web
3ea6f6a0ad0ecf698981c8af9a81a082a20bf134
[ "MIT" ]
null
null
null
rm -fr dist ng build --prod --base-href /total-gp-world-web/
20.333333
48
0.688525
c6f13bd815b8efb3b59b2d4a5c828843a6ea377c
2,568
py
Python
jupyter/aBasic/a_datatype_class/Ex02_number.py
WoolinChoi/test
a0f9c8ecc63443acaae61d744eecec6c943d3a26
[ "MIT" ]
null
null
null
jupyter/aBasic/a_datatype_class/Ex02_number.py
WoolinChoi/test
a0f9c8ecc63443acaae61d744eecec6c943d3a26
[ "MIT" ]
1
2021-03-30T09:01:47.000Z
2021-03-30T09:01:47.000Z
jupyter/aBasic/a_datatype_class/Ex02_number.py
WoolinChoi/test
a0f9c8ecc63443acaae61d744eecec6c943d3a26
[ "MIT" ]
1
2019-12-06T18:21:10.000Z
2019-12-06T18:21:10.000Z
""" 숫자형 종류 - 정수형 - 실수형 - 복소수형 1 + 2j, 3i ( 많이 사용안함 ) - 8진수 0o25 - 16진수 0x25 """ # 파이션의 모든 자료형은 객체로 취급한다 # 실행 : ctrl + shift + F10 """ [ 기초 연산자 ] + : 더하기 - : 빼기 * : 곱하기 / : 나누기(실수값 결과) // : 나누기(정수값 결과) % : 나머지 ** : 자승 2. 관계연산자 < > <= >= == != 3. 논리연산자 not or and 4. 이진(비트) 연산자 ~ : 이진 not | : 이진 or & : 이진 and ^ : 이진 xor << : shift >> : shift 5. 대입연산자 = += -= *= /= //= %= &= |= ^= >>= <<= 6. 기타연산자 : 딕셔너리, 문자열, 리스트, 튜플 등의 자료형에서 사용 is : 비교하는 객체의 주소가 같으면 true, 다르면 false is not : 비교하는 객체의 주소가 다르면 true, 같으면 false in : 요소에 포함되면 true, 없으면 false not in : 요소에 포함되지 않으면 false, 없으면 true [참고] 증가/감소 연산자 없음(++ / --) """ ''' a = 5 b = 2 # print('a++=", a++) # 에러 print('a/b=', a/b) print('a//b=' + a//2) # 문자열 + 숫자는 문자열변경이 되지 않고 에러 print('a//b=' + str(a//2)) print('a//b=', a//2) print('a%b=', a%b) print('a**b=', a**b) ''' """ [ 출력결과 ] a / b = 2.5 a // b = 2 a % b = 1 a ** b = 25 """ # 출력 포맷 ''' y = 8.3/2.7 print(y) print('실수: {0}, 정수: {1}'.format(y, 100)) print('실수: {}, 정수: {}'.format(y, 200)) print('실수: {1}, 정수: {0:.1f}'.format(y, 300)) ''' # 기타연산자 ''' print('Hello' is 'hello') # false print('Hello' is not 'Hello') # false print('H' in 'Hello') # true print('H' not in 'Hello') # false ''' # 연습 ''' a = 777 b = 777 print(a == b, a is b) # true, false ''' # 연습2 ''' a = 3.5 b = int(3.5) print(a ** ((a // b) * 2)) # 12.25 print(((a - b) * a) // b) # 0.0 b = (((a - b) * a) % b) print(b) # 1.75 print((a * 4) % (b * 4)) # 0.0 ''' # 연습3 ''' celsius = float(input("섭씨온도를 입력하세요:")) fahrenheit = ((9 / 5) * celsius) + 32 print("섭씨온도:", celsius, "화씨온도:", fahrenheit) ''' # 연습4 ''' a = "True" print(type(a)) # str ''' # 연습5 ''' a = 10.6 b = 10.5 print(a * b) print(type(a + b)) # float ''' # 연습6 ''' a = "3.5" b = 4 print(a * b) # 3.53.53.53.5, 문자열 * 4는 문자열을 4번 출력한다 ''' # 연습7 ''' a = "3.5" b = "1.5" print(a + b) # 3.51.5, 문자열 + 문자열은 붙어서 출력한다 ''' # 연습 8 ''' a = "3" # str b = float(a) # float로 형변환 print(b ** int(a)) # 27.0, 형변환해주면 계산가능하다 ''' # 연습9 ''' a = "20" b = "4" print(type(float(a / b))) # type 에러 ''' # 연습10 ''' a = "Gachon" b = "CS" c = 200 c = str(c - 150) print(a, b, c) # Gachon CS 50 '''
15.950311
53
0.392523
3932414eea43e8fe6b26daee12d2f3f12b6d855b
13,218
py
Python
experiments_sigmod20/Fig_Scaling_Hrow.py
northeastern-datalab/factorized-graphs
167b0d172c3461f9a75861872ed758c51f4a9aa9
[ "Apache-2.0" ]
6
2020-09-06T05:51:18.000Z
2021-09-03T22:08:38.000Z
experiments_sigmod20/Fig_Scaling_Hrow.py
northeastern-datalab/factorized-graphs
167b0d172c3461f9a75861872ed758c51f4a9aa9
[ "Apache-2.0" ]
1
2021-03-12T15:50:58.000Z
2021-03-12T15:50:58.000Z
experiments_sigmod20/Fig_Scaling_Hrow.py
northeastern-datalab/factorized-graphs
167b0d172c3461f9a75861872ed758c51f4a9aa9
[ "Apache-2.0" ]
5
2020-09-06T10:19:13.000Z
2021-11-05T14:58:22.000Z
""" Creates small figure that shows calculating Hrow^{(l)} is considerably faster than naive calculation of W^l First version: Nov 3, 2016 This version: March 3, 2020 Author: Wolfgang Gatterbauer """ import numpy as np import time import datetime import random import os # for displaying created PDF import sys sys.path.append('./../sslh') from fileInteraction import save_csv_record from utils import (from_dictionary_beliefs, create_parameterized_H, replace_fraction_of_rows, showfig) from graphGenerator import (planted_distribution_model_H, calculate_average_outdegree_from_graph) from estimation import (H_observed, M_observed) import matplotlib as mpl mpl.use('Agg') import matplotlib.pyplot as plt import pandas as pd pd.set_option('display.max_columns', None) # show all columns in pandas by default # -- Determine path to data *irrespective* of where the file is run from from os.path import abspath, dirname, join from inspect import getfile, currentframe current_path = dirname(abspath(getfile(currentframe()))) figure_directory = join(current_path, 'figs') data_directory = join(current_path, 'datacache') open_cmd = {'linux': 'xdg-open', 'linux2': 'xdg-open', 'darwin': 'open', 'win32': 'start'} # %% -- main method def run(choice, variant, create_data=False, show_plot=False, create_pdf=False, show_pdf=False, append_data=False): """main parameterized method to produce all figures. Can be run from external jupyther notebook or method to produce all figures, optionally as PDF CHOICE uses a different saved experimental run VARIANT uses a different wayt o plot """ # %% -- Setup CREATE_DATA = create_data APPEND_DATA = append_data # allows to add more data, requires CREATE_DATA to be true CHOICE = choice VARIANT = variant SHOW_PLOT = show_plot CREATE_PDF = create_pdf SHOW_PDF = show_pdf BOTH = True # show both figures for W and H SHOW_TITLE = True # show parameters in title of plot f = 1 # fraction of labeled nodes for H estimation csv_filename = 'Fig_Scaling_Hrow_{}.csv'.format(CHOICE) fig_filename = 'Fig_Scaling_Hrow_{}-{}.pdf'.format(CHOICE, VARIANT) plot_colors = ['darkorange', 'blue'] header = ['currenttime', 'choice', # W, or H 'l', 'time'] if CREATE_DATA and not APPEND_DATA: save_csv_record(join(data_directory, csv_filename), header, append=APPEND_DATA) RANDOMSEED = None # For repeatability random.seed(RANDOMSEED) # seeds some other python random generator np.random.seed(seed=RANDOMSEED) # seeds the actually used numpy random generator; both are used and thus needed # %% -- Default parameters n = 10000 ymax = 10 h = 3 d = 10 # actual degree is double distribution = 'uniform' exponent = None # %% -- CHOICES and VARIANTS if CHOICE == 1: W_repeat = [0, 0, 30, 5, 3, 1] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 4.3 W_annotate_y = 1 H_annotate_x = 6 H_annotate_y = 0.005 elif CHOICE == 2: # small exponent 3, does not show the advantage well d = 3 W_repeat = [0, 0, 10, 5, 5, 5, 5, 5, 5] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 5 W_annotate_y = 0.08 H_annotate_x = 6.5 H_annotate_y = 0.004 elif CHOICE == 3: # small exponent 2, does not show the advantage well d = 2 W_repeat = [0, 0, 50, 50, 50, 50, 50, 50, 50] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 6.5 W_annotate_y = 0.02 H_annotate_x = 6.5 H_annotate_y = 0.004 elif CHOICE == 4: distribution = 'powerlaw' exponent = -0.5 W_repeat = [0, 0, 50, 9, 5, 3] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 4 W_annotate_y = 1 H_annotate_x = 6.5 H_annotate_y = 0.006 if VARIANT == 1: plot_colors = ['blue', 'darkorange'] SHOW_TITLE = False if VARIANT == 2: plot_colors = ['blue', 'darkorange'] BOTH = False SHOW_TITLE = False elif CHOICE == 5: distribution = 'powerlaw' exponent = -0.5 W_repeat = [0, 0, 1, 1] # index starts with 0. useful only for W^2 and later H_repeat = [0] + [1] * 8 W_annotate_x = 4 W_annotate_y = 1 H_annotate_x = 6.5 H_annotate_y = 0.006 elif CHOICE == 11: W_repeat = [0, 0, 1, 1, 0, 0] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 4.3 W_annotate_y = 1 H_annotate_x = 6 H_annotate_y = 0.005 elif CHOICE == 12: W_repeat = [0, 0, 31, 11, 5, 3, 3, 3, 3] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] W_annotate_x = 4.3 W_annotate_y = 2.5 H_annotate_x = 5.5 H_annotate_y = 0.004 f = 0.1 plot_colors = ['blue', 'darkorange'] ymax = 100 if VARIANT == 1: # TODO: when trying to add additional data, then it creates 7 instead of 4 rows, # but the same code idea of CREATE vs ADD data appears to work in Fig_MHE_Optimal_Lambda, for that to replicate run below # run(12, 1, create_pdf=True, show_pdf=True, create_data=False, append_data=True) W_repeat = [0, 0, 0, 0, 0, 0, 0, 0, 0] # index starts with 0. useful only for W^2 and later H_repeat = [0, 50, 50, 50, 50, 50, 50, 50, 50] else: raise Warning("Incorrect choice!") # %% -- Create data if CREATE_DATA or APPEND_DATA: # Create graph k = 3 a = 1 alpha0 = np.array([a, 1., 1.]) alpha0 = alpha0 / np.sum(alpha0) H0 = create_parameterized_H(k, h, symmetric=True) start = time.time() W, Xd = planted_distribution_model_H(n, alpha=alpha0, H=H0, d_out=d, distribution=distribution, exponent=exponent, directed=False, debug=False) X0 = from_dictionary_beliefs(Xd) time_calc = time.time() - start # print("\nTime for graph:{}".format(time_calc)) # print("Average outdegree: {}".format(calculate_average_outdegree_from_graph(W))) # Calculations W for length, rep in enumerate(W_repeat): for _ in range(rep): start = time.time() if length == 2: result = W.dot(W) elif length == 3: result = W.dot(W.dot(W)) # naive enumeration used as nothing can be faster elif length == 4: result = W.dot(W.dot(W.dot(W))) elif length == 5: result = W.dot(W.dot(W.dot(W.dot(W)))) elif length == 6: result = W.dot(W.dot(W.dot(W.dot(W.dot(W))))) elif length == 7: result = W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W)))))) elif length == 8: result = W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W))))))) elif length == 9: result = W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W.dot(W)))))))) time_calc = time.time() - start tuple = [str(datetime.datetime.now())] text = ['W', length, time_calc] text = np.asarray(text) # without np, entries get ugly format tuple.extend(text) # print("W, d: {}, time: {}".format(length, time_calc)) save_csv_record(join(data_directory, csv_filename), tuple) # Calculations H_NB for length, rep in enumerate(H_repeat): for _ in range(rep): X0 = from_dictionary_beliefs(Xd) X1, ind = replace_fraction_of_rows(X0, 1 - f) start = time.time() result = H_observed(W, X=X1, distance=length, NB=True, variant=1) time_calc = time.time() - start tuple = [str(datetime.datetime.now())] text = ['H', length, time_calc] text = np.asarray(text) # without np, entries get ugly format tuple.extend(text) # print("H, d: {}, time: {}".format(length, time_calc)) save_csv_record(join(data_directory, csv_filename), tuple) # Calculate and display M statistics for length, _ in enumerate(H_repeat): M = M_observed(W, X=X0, distance=length, NB=True) M = M[-1] s = np.sum(M) # print("l: {}, sum: {:e}, M:\n{}".format(length, s, M)) # %% -- Read, aggregate, and pivot data df1 = pd.read_csv(join(data_directory, csv_filename)) # print("\n-- df1 (length {}):\n{}".format(len(df1.index), df1.head(15))) df2 = df1.groupby(['choice', 'l']).agg \ ({'time': [np.max, np.mean, np.median, np.min, np.size], # Multiple Aggregates }) df2.columns = ['_'.join(col).strip() for col in df2.columns.values] # flatten the column hierarchy df2.reset_index(inplace=True) # remove the index hierarchy df2.rename(columns={'time_size': 'count'}, inplace=True) # print("\n-- df2 (length {}):\n{}".format(len(df2.index), df2.head(30))) df3 = pd.pivot_table(df2, index=['l'], columns=['choice'], values='time_median', ) # Pivot # print("\n-- df3 (length {}):\n{}".format(len(df3.index), df3.head(30))) #%% -- Setup figure mpl.rcParams['backend'] = 'pdf' mpl.rcParams['lines.linewidth'] = 3 mpl.rcParams['font.size'] = 20 mpl.rcParams['axes.labelsize'] = 20 mpl.rcParams['axes.titlesize'] = 16 mpl.rcParams['xtick.labelsize'] = 16 mpl.rcParams['ytick.labelsize'] = 16 mpl.rcParams['axes.edgecolor'] = '111111' # axes edge color mpl.rcParams['grid.color'] = '777777' # grid color mpl.rcParams['figure.figsize'] = [4, 4] mpl.rcParams['xtick.major.pad'] = 6 # padding of tick labels: default = 4 mpl.rcParams['ytick.major.pad'] = 4 # padding of tick labels: default = 4 fig = plt.figure() ax = fig.add_axes([0.13, 0.17, 0.8, 0.8]) #%% -- Draw the plot and annotate df4 = df3['H'] # print("\n-- df4 (length {}):\n{}".format(len(df4.index), df4.head(30))) Y1 = df3['W'].plot(logy=True, color=plot_colors[0], marker='o', legend=None, clip_on=False, # cut off data points outside of plot area # zorder=3 ) # style='o', kind='bar', style='o-', plt.annotate(r'$\mathbf{W}^\ell$', xy=(W_annotate_x, W_annotate_y), color=plot_colors[0], ) if BOTH: Y2 = df3['H'].plot(logy=True, color=plot_colors[1], marker='o', legend=None, clip_on=False, # cut off data points outside of plot area zorder=3 ) # style='o', kind='bar', style='o-', plt.annotate(r'$\mathbf{\hat P}_{\mathrm{NB}}^{(\ell)}$', xy=(H_annotate_x, H_annotate_y), color=plot_colors[1], ) if SHOW_TITLE: plt.title(r'$\!\!\!\!n\!=\!{}\mathrm{{k}}, d\!=\!{}, h\!=\!{}, f\!=\!{}$'.format(int(n / 1000), 2 * d, h, f)) # %% -- Figure settings & plot plt.grid(b=True, which='both', alpha=0.2, linestyle='solid', axis='y', linewidth=0.5) # linestyle='dashed', which='minor' plt.xlabel(r'Path length ($\ell$)', labelpad=0) plt.ylabel(r'$\!$Time [sec]', labelpad=1) plt.ylim(0.001, ymax) # placed after yticks plt.xticks(range(1, 9)) if SHOW_PLOT: plt.show() if CREATE_PDF: plt.savefig(join(figure_directory, fig_filename), format='pdf', dpi=None, edgecolor='w', orientation='portrait', transparent=False, bbox_inches='tight', pad_inches=0.05, # frameon=None ) if SHOW_PDF: # os.system('{} "'.format(open_cmd[sys.platform]) + join(figure_directory, fig_filename) + '"') # shows actually created PDF showfig(join(figure_directory, fig_filename)) # shows actually created PDF # TODO replace with this method if __name__ == "__main__": run(12, 0, create_pdf=True, show_pdf=True, create_data=False, append_data=False)
40.176292
149
0.555455
957bdf1eec8bba75fe7ec27f4ce0d3f9d7b128e2
806
rb
Ruby
app/admin/topic.rb
yury-dymov/chinese_backend
f185e804966e3719dea1c50135e05d7bbc01c645
[ "MIT" ]
null
null
null
app/admin/topic.rb
yury-dymov/chinese_backend
f185e804966e3719dea1c50135e05d7bbc01c645
[ "MIT" ]
null
null
null
app/admin/topic.rb
yury-dymov/chinese_backend
f185e804966e3719dea1c50135e05d7bbc01c645
[ "MIT" ]
null
null
null
ActiveAdmin.register Topic do filter :title config.sort_order = 'position_asc' # assumes you are using 'position' for your acts_as_list column config.paginate = false sortable menu label: proc{"Topics (#{Topic.count})"} index do sortable_handle_column id_column column :title column :words do |topic| topic.words.count end actions end form do |f| f.inputs 'Topic' do f.input :title f.input :words, as: :check_boxes, collection: topic.words_for_selection end f.actions end show do attributes_table do row :title row "Words (#{topic.words.count})" do topic.words.map(&:to_s).join("<BR>").html_safe end end active_admin_comments end permit_params :title, :position, word_ids:[] end
19.190476
100
0.653846
4d0291e61ec0cfe572f3ffb3b471177b27e2a6fc
567
cs
C#
Bucket Boy/Assets/Scripts/ExitRoom.cs
TheEvilHAmster/GameProject1FG
43ddbc59ef6571196cbe29ba0e5e70334b723843
[ "MIT" ]
null
null
null
Bucket Boy/Assets/Scripts/ExitRoom.cs
TheEvilHAmster/GameProject1FG
43ddbc59ef6571196cbe29ba0e5e70334b723843
[ "MIT" ]
null
null
null
Bucket Boy/Assets/Scripts/ExitRoom.cs
TheEvilHAmster/GameProject1FG
43ddbc59ef6571196cbe29ba0e5e70334b723843
[ "MIT" ]
null
null
null
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Experimental.Rendering.Universal; public class ExitRoom : MonoBehaviour { [SerializeField] private Light2D light2D; private void OnTriggerExit2D(Collider2D other) { StartCoroutine(OnExitRoom()); } IEnumerator OnExitRoom() { yield return new WaitForSeconds(0); TurnOffLights(); } void TurnOffLights() { if (light2D == null) return; light2D.gameObject.SetActive(false); } }
18.9
51
0.661376
73b0d8926df2ef0ffb95094c8c48d84ea413046c
7,213
swift
Swift
Shared/Logger.swift
flannerykj/urbanapplause-ios
15ebf711dd4c35f3c840e5f4ed11c0242e845a04
[ "Apache-2.0" ]
null
null
null
Shared/Logger.swift
flannerykj/urbanapplause-ios
15ebf711dd4c35f3c840e5f4ed11c0242e845a04
[ "Apache-2.0" ]
4
2019-11-09T18:06:14.000Z
2019-11-09T18:11:17.000Z
Shared/Logger.swift
flannerykj/urbanapplause-ios
15ebf711dd4c35f3c840e5f4ed11c0242e845a04
[ "Apache-2.0" ]
null
null
null
// // Logger.swift // Shared // // Created by Flannery Jefferson on 2020-01-09. // Copyright © 2020 Flannery Jefferson. All rights reserved. // import Foundation open class DHLogger { private static let timeZone = "EST" private static var minLogLevel: Int = 0 private static var minBusgnagLevel: Int = 3 private static let formatter = DateFormatter() public enum Level: Int { case verbose = 0 case debug = 1 case info = 2 case warning = 3 case error = 4 } open class func setup() { #if DEBUG #else // Bugsnag.start(withApiKey: Config.bugsnagAPIKey) #endif } /// log something generally unimportant (lowest priority) open class func verbose(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) custom(level: .verbose, message: message(), file: file, function: function, line: line, context: context) #else custom(level: .verbose, message: message, file: file, function: function, line: line, context: context) #endif } /// log something which help during debugging (low priority) open class func debug(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) custom(level: .debug, message: message(), file: file, function: function, line: line, context: context) #else custom(level: .debug, message: message, file: file, function: function, line: line, context: context) #endif } /// log something which you are really interested but which is not an issue or error (normal priority) open class func info(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) custom(level: .info, message: message(), file: file, function: function, line: line, context: context) #else custom(level: .info, message: message, file: file, function: function, line: line, context: context) #endif } /// log something which may cause big trouble soon (high priority) open class func warning(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) custom(level: .warning, message: message(), file: file, function: function, line: line, context: context) #else custom(level: .warning, message: message, file: file, function: function, line: line, context: context) #endif } /// log something which will keep you awake at night (highest priority) open class func error(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) custom(level: .error, message: message(), file: file, function: function, line: line, context: context) #else custom(level: .error, message: message, file: file, function: function, line: line, context: context) #endif } /// custom logging to manually adjust values, should just be used by other frameworks public class func custom(level: Level, message: @autoclosure () -> Any, file: String = #file, function: String = #function, line: Int = #line, context: Any? = nil) { #if swift(>=5) dispatch_send(level: level, message: message(), file: file, function: function, line: line, context: context) #else dispatch_send(level: level, message: message, file: file, function: function, line: line, context: context) #endif } // Logs to console if DEBUG, sends to Bugsnag if not (granted meets min logging requirement). class func dispatch_send(level: Level, message: @autoclosure () -> Any, file: String, function: String, line: Int, context: Any?) { var resolvedMessage: String = "" #if swift(>=5) resolvedMessage = "\(message())" #else // resolvedMessage = "\(message)" #endif let functionText: String = String(function.split(separator: "(").first ?? "") // #if DEBUG // Log to console guard level.rawValue >= minLogLevel else { return } let filename = (file.components(separatedBy: "/").last ?? file).replacingOccurrences(of: ".swift", with: "") print( // formattedDateString, level.symbol, level.name.uppercased(), filename, "\(functionText):\(line)", "--", resolvedMessage) /* #else // RELEASE: Send to Bugsnag if level.rawValue >= minBusgnagLevel { var message: String? var error: Error? if let error = message as? Error { // Bugsnag.notifyError(_error) } else { let exception = NSException(name: NSExceptionName(rawValue: "NamedException"), reason: resolvedMessage, userInfo: nil) // Bugsnag.notify(exception) } } #endif */ } class var formattedDateString: String { if !timeZone.isEmpty { formatter.timeZone = TimeZone(abbreviation: timeZone) } formatter.dateFormat = "HH:mm:ss" let dateStr = formatter.string(from: Date()) return dateStr } } extension DHLogger.Level { var symbol: String { switch self { case .verbose: return "💜" case .debug: return "💚" case .info: return "💙" case .warning: return "💛" case .error: return "❤️" } } var name: String { switch self { case .verbose: return "verbose" case .debug: return "debug" case .info: return "info" case .warning: return "warning" case .error: return "error" } } }
36.246231
120
0.502565
3f504763e72623f67ae800a44fa6672c73abfcbd
5,290
php
PHP
assets/sly/gallery.php
yellowelise/crypt2share
5303a760b8804f4a5e94e611f1b4e630908532ec
[ "MIT" ]
1
2015-12-01T21:27:06.000Z
2015-12-01T21:27:06.000Z
assets/sly/gallery.php
yellowelise/crypt2share
5303a760b8804f4a5e94e611f1b4e630908532ec
[ "MIT" ]
null
null
null
assets/sly/gallery.php
yellowelise/crypt2share
5303a760b8804f4a5e94e611f1b4e630908532ec
[ "MIT" ]
null
null
null
<?php session_start(); ini_set('display_errors', 'Off'); ini_set('display_startup_errors', 'Off'); error_reporting(0); $json_res = array( "index"=>0, "files"=>array() ); include("../class/mysql.class.php"); if (isset($_REQUEST['w'])) $w = ($_REQUEST['w']); else $w = 900; //echo $w; if (isset($_REQUEST['h'])) $hei = ($_REQUEST['h'] - 180); else $hei = 500; if (isset($_REQUEST['d'])) $d = $_REQUEST['d']; else $d = "files/"; if (isset($_REQUEST['q'])) $q = $_REQUEST['q']; else $q = 3; if (isset($_REQUEST['f'])) $f = $_REQUEST['f']; else $f = ""; //echo $f ."<br />"; //echo $d ."<br />"; function url_encode($string){ return urlencode(utf8_encode($string)); } $h = $_SESSION['home'] . $d . "/"; //Open the current directory //echo "<br />----".$h; $index = 0; $list = glob($h."{*.jpg,*.gif,*.png,*.JPG,*.GIF,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE); //print_r($list); array_multisort($list, SORT_ASC, SORT_STRING); for ($i=0;$i<count($list);$i++) { $list[$i] = str_replace($h,"",$list[$i]); if ($list[$i] == $f) $index = $i; } // print_r($list); ?> <!DOCTYPE html> <html class=" js csstransforms csstransforms3d" lang="en"><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>C2S gallery</title> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="normalize.css"> <link rel="stylesheet" href="font-awesome.css"> <link rel="stylesheet" href="ospb.css"> <link rel="stylesheet" href="horizontal.css"> <script src="ga.js"></script> <script src="modernizr.js"></script> </head> <body> <div class="pagespan container" style="width:100%;"> <div class="wrap"> <div class="scrollbar"> <div class="handle"> <div class="mousearea"></div> </div> </div> <div class="frame oneperframe" id="oneperframe" style="width:100%;height:<?php echo $hei?>px;line-height:<?php echo $hei?>px;"> <ul class="clearfix" style="width:100%;"> <?php for ($i=$index;$i<count($list);$i++) { echo "<li style='width:".$w."px;' id='gal_li_".$i."'><div style='position:relative'><img alt='Caricamento...' src='../usr_img.php?fn=".$d . "/".$list[$i]."&w=".($w - 200)."&h=".($hei-20)."'><img src='facebookbadge.png' style='float:right;right:0px;top:10px;' onclick=fbs_click('".urlencode($d . "/".$list[$i])."','Crypt2Share.com') /><img src='remove.png' style='position:absolute;left:0px;top:0px;' onclick=delete_f('".base64_encode($d . "/".$list[$i])."','".$i."') /></div></li>"; } for ($i=0;$i<$index;$i++) { echo "<li style='width:".$w."px;' id='gal_li_".$i."'><div style='position:relative'><img alt='Caricamento...' src='../usr_img.php?fn=".$d . "/". $list[$i]."&w=".($w - 200)."&h=".($hei-20)."'><img src='facebookbadge.png' style='float:right;right:0px;top:10px;' onclick=fbs_click('".urlencode($d . "/".$list[$i])."','Crypt2Share.com') /><img src='remove.png' style='position:absolute;left:0px;top:0px;' onclick=delete_f('".base64_encode($d . "/".$list[$i])."','".$i."') /></div></li>"; } ?> </ul> </div> <div class="controls center"> <button class="btn prev">prev</button> <button class="btn next">next</button> </div> </div> </div> <!-- Scripts --> <script src="jquery.js"></script> <script src="plugins.js"></script> <script src="sly.js"></script> <script src="horizontal.js"></script> <script> function delete_f(id,i) { var answer = confirm("Eliminare il file: "+decode_base64(id)+" Permanentemente?") if (answer){ var $param = "id=" + encodeURIComponent(decode_base64(id)); //alert($param); var res = aPost("../callback/delete_file.php",$param); var d = document.getElementById("gal_li_" + i); d.parentNode.removeChild( d ); if (res != '') alert(res); } } function fbs_click(u,t) { var $param = "f=" + u; var res = aPost("../callback/share.php",$param); //alert(res); window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(res) + '&t=' + encodeURIComponent(t), ' sharer', 'toolbar=0, status=0, width=626, height=536'); return false; } function decode_base64(s) { var e={},i,k,v=[],r='',w=String.fromCharCode; var n=[[65,91],[97,123],[48,58],[43,44],[47,48]]; for(z in n){for(i=n[z][0];i<n[z][1];i++){v.push(w(i));}} for(i=0;i<64;i++){e[v[i]]=i;} for(i=0;i<s.length;i+=72){ var b=0,c,x,l=0,o=s.substring(i,i+72); for(x=0;x<o.length;x++){ c=e[o.charAt(x)];b=(b<<6)+c;l+=6; while(l>=8){r+=w((b>>>(l-=8))%256);} } } return r; } function aPost(url, parameters) { // non_rompere = 1; if (window.XMLHttpRequest) { AJAX=new XMLHttpRequest(); } else { AJAX=new ActiveXObject("Microsoft.XMLHTTP"); } if (AJAX) { AJAX.open("POST", url, false); AJAX.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); AJAX.send(parameters); return AJAX.responseText; } else { return false; } // non_rompere = 0; } </script> </body></html>
28.138298
488
0.564272
f8cc7ebbcc5f8bb9ef0589b2ce99fd48a2859814
344
swift
Swift
TadApi/ApiServices/Astronomy/Types/AstroObjectType.swift
ztuskes/libtad-swift
f4b8a9e29e3369804bb15e8afecbbe2a2fb6107f
[ "MIT" ]
2
2021-06-06T13:28:26.000Z
2021-07-08T10:36:14.000Z
TadApi/ApiServices/Astronomy/Types/AstroObjectType.swift
ztuskes/libtad-swift
f4b8a9e29e3369804bb15e8afecbbe2a2fb6107f
[ "MIT" ]
null
null
null
TadApi/ApiServices/Astronomy/Types/AstroObjectType.swift
ztuskes/libtad-swift
f4b8a9e29e3369804bb15e8afecbbe2a2fb6107f
[ "MIT" ]
1
2021-09-22T09:50:45.000Z
2021-09-22T09:50:45.000Z
// // AstronomyObjectType.swift // Timeanddate Service // // Created by Zoltan Tuskes on 15/04/2020. // Copyright © 2020 Time and Date. All rights reserved. // import Foundation /// Astronomical Object Id public enum AstroObjectType: String, CaseIterable { /// The sun case sun = "sun" /// The moon case moon = "moon" }
17.2
56
0.662791
0a7a01f2bb62f684089b66ce4ce8735232e1e065
1,002
cs
C#
Assets/Scripts/Promotion/ItemButton.cs
Lenovezhou/Screenshow
aa4d64eb3cd1600f7a309891d096791f54550f9a
[ "Apache-2.0" ]
null
null
null
Assets/Scripts/Promotion/ItemButton.cs
Lenovezhou/Screenshow
aa4d64eb3cd1600f7a309891d096791f54550f9a
[ "Apache-2.0" ]
null
null
null
Assets/Scripts/Promotion/ItemButton.cs
Lenovezhou/Screenshow
aa4d64eb3cd1600f7a309891d096791f54550f9a
[ "Apache-2.0" ]
null
null
null
using UnityEngine; using System.Collections; public enum BtnType { Video, Audio, Prod } public class ItemButton : MonoBehaviour { public string prodID; // 物品ID public AudioSource audioSource; public string Url; public BtnType type; // Use this for initialization void Start () { } // Update is called once per frame void Update () { } public virtual void Click() { switch (type) { case BtnType.Video: break; case BtnType.Audio: break; case BtnType.Prod: Application.ExternalEval("window.open(" + "\'" + MsgCenter_h.Instance.btnUrl + "?scense_id=" + MsgCenter_h.Instance.scense_id + "&prod_id=" + prodID + "\')"); break; default: break; } //Debug.Log(MsgCenter_h.Instance == null); //Application.OpenURL(MsgCenter_h.Instance.btnUrl); } }
19.269231
157
0.540918
3896bef51c578993cd9d0f7f4ad01df5c200ae65
7,273
php
PHP
Modules/Registros/Http/Controllers/Admin/RegistroController.php
AgustinJimenez/lpr_web
c934054d8b3dd04838dd1917d1996b65dba23583
[ "RSA-MD" ]
null
null
null
Modules/Registros/Http/Controllers/Admin/RegistroController.php
AgustinJimenez/lpr_web
c934054d8b3dd04838dd1917d1996b65dba23583
[ "RSA-MD" ]
null
null
null
Modules/Registros/Http/Controllers/Admin/RegistroController.php
AgustinJimenez/lpr_web
c934054d8b3dd04838dd1917d1996b65dba23583
[ "RSA-MD" ]
null
null
null
<?php namespace Modules\Registros\Http\Controllers\Admin; use Laracasts\Flash\Flash; use Illuminate\Http\Request; use Modules\Registros\Entities\Registro; use Modules\Registros\Repositories\RegistroRepository; use Modules\Core\Http\Controllers\Admin\AdminBaseController; class RegistroController extends AdminBaseController { /** * @var RegistroRepository */ private $registro; public function __construct(RegistroRepository $registro) { parent::__construct(); $this->registro = $registro; } /** * Display a listing of the resource. * * @return Response */ public function index() { $accesos_list = \Acceso::select('id', 'nombre') ->orderBy('nombre') ->lists('nombre', 'id') ->toArray(); $accesos[''] = 'Todos'; foreach ($accesos_list as $key => $value) $accesos[$key] = $value; return view('registros::admin.registros.index', compact('accesos') ); } public function index_ajax_edit(Registro $registro, Request $re) { $value = $re->get('value'); $attribute = $re->get('attribute'); $registro[$attribute] = $value; $registro->save(); } public function index_ajax(Request $re) { $registros = Registro::select( 'id', 'date_time', 'acceso_id', 'plate', 'is_plate', 'plates_found_dir', 'image_file'); if ($re->has('fecha_desde') && trim($re->get('fecha_desde')) !== '' ) { $fecha_desde = \Carbon::createFromFormat('d/m/Y H:i', $re->get('fecha_desde'))->subDay()->format('Y-m-d H:i:s'); $registros->where('date_time', '>=', $fecha_desde ); // dd( $registros->toSql().$fecha_desde ); } if ($re->has('fecha_hasta') && trim($re->get('fecha_hasta')) !== '' ) { $fecha_hasta = \Carbon::createFromFormat('d/m/Y H:i', $re->get('fecha_hasta'))->addDay()->format('Y-m-d H:i:s') ; $registros->where('date_time', '<', $fecha_hasta ); //dd( $registros->toSql().$fecha_hasta ); } if($re->has('plate') && trim($re->get('plate')) !== '') $registros->where('plate', 'like', "%" . $re->get('plate') . "%" ); if($re->has('is_plate') && trim($re->get('is_plate')) !== '') $registros->where('is_plate', $re->get('is_plate') ); if($re->has('acceso') && trim($re->get('acceso')) !== '') $registros->where('acceso_id', $re->get('acceso') ); $object = \Datatables::of( $registros ) ->addColumn('action', function ($tabla) { $as_edit = "admin.registros.registro.edit"; $edit_route = route($as_edit, [$tabla->id]); $as_delete = "admin.registros.registro.destroy"; $delete_route = route($as_edit, [$tabla->id]); $btn_group = '<div class="btn-group"> <a href="' . $edit_route . '" class="btn btn-default btn-flat"> <i class="glyphicon glyphicon-pencil"></i> </a> <button class="btn btn-danger btn-flat" data-toggle="modal" data-target="#modal-delete-confirmation" data-action-target="' . $delete_route . '"> <i class="glyphicon glyphicon-trash"></i> </button> </div>'; return $btn_group; }) ->addColumn('acceso_sector_nombre', function ($tabla) { return $tabla->acceso->sector->nombre; }) ->addColumn('acceso_nombre', function ($tabla) { return $tabla->acceso->nombre; }) ->addColumn('acceso_tipo', function ($tabla) { return $tabla->acceso->tipo; }) ->addColumn('imagen', function ($tabla) { return '<img src="' . $tabla->small_thumb_url . '" class="imagen btn" alt="Imagen" imagen="' . $tabla->image_url . '">'; }) ->editColumn('date_time', function($tabla) { return \Carbon::createFromFormat('Y-m-d H:i:s', $tabla->date_time)->format('d/m/Y H:i:s'); }) ->editColumn('plate', function($tabla) { return '<input class="form-control datatable_input-plate datatable-editable-input-focus-off" type="text" value="' . $tabla->plate . '" registro_id="' . $tabla->id . '" campo="plate"> <span class="bar"></span>'; }) ->editColumn('is_plate', function($tabla) { $si = ($tabla->is_plate == "SI")?'selected="selected"':''; $no = ($tabla->is_plate == "NO")?'selected="selected"':''; $probable = ($tabla->is_plate == "PROBABLE")?'selected="selected"':''; $select = ' <select class="form-control datatable_select_is_plate" registro_id="' . $tabla->id . '" campo="is_plate"> <option value="SI" ' . $si . '>SI</option> <option value="NO" ' . $no . '>NO</option> <option value="PROBABLE" ' . $probable . '>PROBABLE</option> </select>'; return $select; }) ->make(true); $data = $object->getData(true); $data['some'] = "here"; return response()->json( $data ); } /** * Show the form for creating a new resource. * * @return Response */ public function create() { return view('registros::admin.registros.create'); } /** * Store a newly created resource in storage. * * @param Request $request * @return Response */ public function store(Request $request) { $this->registro->create($request->all()); flash()->success(trans('core::core.messages.resource created', ['name' => trans('registros::registros.title.registros')])); return redirect()->route('admin.registros.registro.index'); } /** * Show the form for editing the specified resource. * * @param Registro $registro * @return Response */ public function edit(Registro $registro) { return view('registros::admin.registros.edit', compact('registro')); } /** * Update the specified resource in storage. * * @param Registro $registro * @param Request $request * @return Response */ public function update(Registro $registro, Request $request) { $this->registro->update($registro, $request->all()); flash()->success(trans('core::core.messages.resource updated', ['name' => trans('registros::registros.title.registros')])); return redirect()->route('admin.registros.registro.index'); } /** * Remove the specified resource from storage. * * @param Registro $registro * @return Response */ public function destroy(Registro $registro) { $this->registro->destroy($registro); flash()->success(trans('core::core.messages.resource deleted', ['name' => trans('registros::registros.title.registros')])); return redirect()->route('admin.registros.registro.index'); } }
33.671296
194
0.537605
b2d2570690d8bad155e467835fab5c36ea39d2b6
10,505
css
CSS
src/assets/allstate/cqb/landing/Stylesheets/landing.css
thienedits/ng-boilerplate
aca04ffa50e8d1aa2ca0e62cf74568c775129f49
[ "MIT" ]
null
null
null
src/assets/allstate/cqb/landing/Stylesheets/landing.css
thienedits/ng-boilerplate
aca04ffa50e8d1aa2ca0e62cf74568c775129f49
[ "MIT" ]
null
null
null
src/assets/allstate/cqb/landing/Stylesheets/landing.css
thienedits/ng-boilerplate
aca04ffa50e8d1aa2ca0e62cf74568c775129f49
[ "MIT" ]
null
null
null
@font-face { font-family: 'OpenSansRegular'; src: url('../Fonts/OpenSans-Regular-webfont.eot'); src: url('../Fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../Fonts/OpenSans-Regular-webfont.woff') format('woff'), url('../Fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('../Fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'OpenSansSemibold'; src: url('../Fonts/OpenSans-Semibold-webfont.eot'); src: url('../Fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'), url('../Fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('../Fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('../Fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg'); font-weight: normal; font-style: normal; } /* Containers ----------------------------------------------------------------------------------------------------*/ .main { margin:30px auto; width: 1020px; box-shadow:0 11px 12px rgba(0,0,0,0.5); -moz-box-shadow:0 1px 2px rgba(0,0,0,0.5); -webkit-box-shadow:0 2px 12px rgba(0,0,0,0.5); -webkit-border-radius: 10px; -moz-border-radius-: 10px; border-radius: 10px; } /* Typography presets ------------------ */ h1, h2, h3, h4, h5, li{margin-bottom:12px;} h2, p{margin-bottom:36px;} .gigantic { font-size: 110px; line-height: 120px; } .huge, h1 { font-size: 68px; line-height: 72px; } .large, h2 { font-size: 36px; line-height: 48px; } .bigger, h3 { font-size: 26px; line-height: 36px; } .big, h4 { font-size: 22px; line-height: 30px; } .normal { font-size: 16px; line-height: 24px; } body { font: 16px/24px OpenSansRegular, Helvetica, Arial, sans-serif; color:#000; } .small, small { font-size: 13px; line-height: 18px; } .smallest { font-size: 11px; line-height: 16px; } /* Effects */ .shadow { box-shadow:0 11px 12px rgba(0,0,0,0.5); -moz-box-shadow:0 1px 2px rgba(0,0,0,0.5); -webkit-box-shadow:0 2px 12px rgba(0,0,0,0.5); } /* Selection colours (easy to forget) */ ::selection {background: rgb(255,255,158);} ::-moz-selection {background: rgb(255,255,158);} img::selection {background: transparent;} img::-moz-selection {background: transparent;} body {-webkit-tap-highlight-color: rgb(255,255,158);} /* Lists ----------------------------------------------------------------------------------------------------*/ ol { list-style: decimal; } ul { list-style: disc; padding-bottom:12px; } li { margin-left: 30px; } /* Images ----------------------------------------------------------------------------------------------------*/ img { } /* `Clear Floated Elements ----------------------------------------------------------------------------------------------------*/ /* http://sonspring.com/journal/clearing-floats */ .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } /* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */ .clearfix:before, .clearfix:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .clearfix:after { clear: both; } /* The following zoom:1 rule is specifically for IE6 + IE7. Move to separate stylesheet if invalid CSS is a problem. */ .clearfix { zoom: 1; } /* Buttons ----------------------------------------------------------------------------------------------------*/ .btn { display:inline-block; } /* Default Layout: 960px. Gutters: 20px. Outer margins: 10px. ------------------------------------------------------------------------------- cols 1 2 3 4 5 6 7 8 9 10 11 12 px 60 140 220 300 380 460 540 620 700 780 860 940 */ body { background:#a3ceec; -webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */ } #masthead, #banner, #main-content { position:relative; padding:24px 30px; background:#fff; } #masthead { padding:20px 30px; -webkit-border-radius: 10px 10px 0 0; -moz-border-radius-: 10px 10px 0 0; border-radius: 10px 10px 0 0; } #banner { position:relative; padding:0 30px; background:#0075c4; color:#303030; height:559px; background:url(../Images/family-kite.jpg) no-repeat bottom; -webkit-box-shadow:inset 0 -4px 8px rgba(0,0,0,0.5); -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05); } #heading { position:relative; } h1 { position: relative; width: 994px; font-size:40px; padding: 0 0 0 54px; margin: 0 0 60px -44px; height:120px; z-index:2; color: #fff; background: #0075c4 url(../Images/header-heading.png) no-repeat center; text-indent:-5000px; text-shadow: 0px 2px 2px #034081; -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); box-shadow: 0 4px 8px rgba(0,0,0,0.5); } h1:after { content: ' '; position: absolute; width: 0; height: 0; left: 0px; top: 100%; border-width: 7px 7px; border-style: solid; border-color: #014979 #014979 transparent transparent; } h1:before { content: ' '; position: absolute; width: 0; height: 0; right: 0px; top: 100%; border-width: 7px 7px; border-style: solid; border-color: #014979 transparent transparent #014979; } .tri-bottom { content: ' '; position: absolute; width: 0; height: 0; left: 68px; top: 100%; z-index:2; border-width: 18px 18px; border-style: solid; border-color: #0075c4 transparent transparent transparent; } h2 { position: relative; width: 30%; padding: 10px 0 0 54px; margin: 0 0 48px -44px; height:62px; z-index:2; color: #fff; background: #0075c4; text-shadow: 0px 2px 2px #034081; -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.5); -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.5); box-shadow: 0 2px 2px rgba(0,0,0,0.5); } h2.flag:before { content: ' '; position: absolute; width: 0px; left: auto; right: -1px; top: 0px; border-width: 36px 18px; border-style: solid; border-color: transparent white transparent transparent; } h2.flag:after { content: ' '; position: absolute; width: 0; height: 0; left: 0px; top: 100%; border-width: 7px 7px; border-style: solid; border-color: #014979 #014979 transparent transparent; } h2.full-ribbon { position: relative; width: 994px; font-size:40px; padding: 10px 0 0 54px; margin: 0 0 24px -44px; height:62px; z-index:2; color: #fff; background: #0075c4; text-shadow: 0px 2px 2px #034081; -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.5); -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.5); box-shadow: 0 2px 2px rgba(0,0,0,0.5); } h2.full-ribbon:after { content: ' '; position: absolute; width: 0; height: 0; left: 0; top: -14px; border-width: 7px 7px; border-style: solid; border-color: transparent #014979 #014979 transparent; } h2.full-ribbon:before { content: ' '; position: absolute; width: 0; height: 0; right: 0px; top: -14px; border-width: 7px 7px; border-style: solid; border-color: transparent transparent #014979 #014979; } #banner-content ul { background:url(../Images/header-content-list.png) no-repeat; list-style:none; margin:0 0 24px 60px; } #banner-content li { margin-left:40px; margin-bottom:36px; text-indent:-5000px; } #get-quote { padding-left:100px; } #get-quote .getQuoteDiv { position:relative; } #get-quote .btn { padding:15px 20px; width:204px; font-family:OpenSansSemibold, Helvetica, Arial, sans-serif; font-size:21px; } #get-quote .icon-arrow { display:inline-block; margin-right:10px; } #get-quote .quoteArrow { position:absolute; top:40px; left:130px; } #main-content { padding-top:60px; padding-bottom:60px; background:#fff; color:#000; } #main-content h4 { font-family:OpenSansSemibold, Helvetica, Arial, sans-serif; color:#0075c4; } #how-to-apply { padding:0 20px 20px; border:1px solid #b2b2b2; background:#e5e5e5; -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; color:#303030; } #apply-heading { position:relative; } #how-to-apply h3 { position: relative; width: 107%; padding: 8px 10px; margin: -1px 0 36px -20px; height:34px; z-index:2; color: #fff; text-align:center; font-family:OpenSansRegular, Helvetica, Arial, sans-serif; background: #0075c4; text-shadow: 0px 1px 2px #034081; -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.5); -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.5); box-shadow: 0 2px 2px rgba(0,0,0,0.5); -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } #how-to-apply .tri-bottom { left: 45%; top: 100%; border-width: 14px 14px; } #cta { position:relative; padding-right:20px; } #cta h4 { display:inline-block; position:relative; font: 16px/24px OpenSansSemibold, Helvetica, Arial, sans-serif; color:#0075c4; padding:0 0 5px 35px; margin-bottom:0; } #cta p { margin-bottom:12px; padding-left:35px; } #cta a { display:block; margin:0 0 36px 35px; -webkit-border-radius:6px; -moz-border-radius:6px; border-radius:6px; font-weight:normal; text-transform:uppercase; text-shadow: 0 1px 0px rgba(0, 0, 0, 0.25); } /*#cta a:after { content: ' '; position: absolute; width: 12px; height: 14px; right: -20px; top: 20px; background: url(../Images/icons-cta.png) 0 -150px no-repeat; }*/ #cta span { display:block; } #cta #phone-number { padding-left:35px; } #cta .heading { color:#0075c4; padding: 14px 0 10px 35px; } #cta .pic-agent { background: url(../Images/icons-cta.png) 0 4px no-repeat; } #cta .pic-apply { background: url(../Images/icons-cta.png) 0 -46px no-repeat; } #cta .pic-call { background: url(../Images/icons-cta.png) 0 -96px no-repeat; } /*FOOTER*/ #footer { padding:24px 30px; color:#fff; background:#4399d3; -webkit-border-radius: 0 0 10px 10px; -moz-border-radius-: 0 0 10px 10px; border-radius: 0 0 10px 10px; } #footer a { text-decoration:none; color:#fff; } #disclaimer-copy { margin-bottom:24px; } #footer-links { margin-bottom:12px; } .menu { padding:0; margin:0; } .menu li { display:inline; padding-right:1em; margin-right:1em; margin-left:0; border-right:1px solid #fff; list-style-type:none; } .menu a, .menu a:visited { text-decoration:none; } .menu a:hover, #footer a:hover { text-decoration:underline; } .menu .no-border { border:0 ; } #trust-logo { width:420px; text-align:right; margin-top:-55px; }
20.437743
102
0.629034
da55b13112d185a63c6bab2c9e343f7241d4bd76
1,724
cs
C#
GDM.HW6.OOP.Classes/Generator.cs
watchbot23/GDM.UIP.HW
11af8e1aa884c5c9920c628ae88e8a387688be9f
[ "MIT" ]
null
null
null
GDM.HW6.OOP.Classes/Generator.cs
watchbot23/GDM.UIP.HW
11af8e1aa884c5c9920c628ae88e8a387688be9f
[ "MIT" ]
null
null
null
GDM.HW6.OOP.Classes/Generator.cs
watchbot23/GDM.UIP.HW
11af8e1aa884c5c9920c628ae88e8a387688be9f
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDM.HW6.OOP.Classes { public class Generator : Electronics { public static int AvailablePower { get; set; } public Generator(string name, int power) : base(name, power) { AvailablePower = power; IsSorce = true; } public override string GetDescription() { return $" Name: {Name} { Environment.NewLine} Power: {Power}"; } public void UpdateAvailablePower(Electronics device) { AvailablePower -= device.Power; } public void RenewAvailablePower(Electronics device) { AvailablePower += device.Power; } public bool IsEnoughOfPower(Generator generator, Electronics device, LinkedList<Electronics> listOfDevicesInNetWork) { bool isEnoughOfPower = false; if (generator.GetAvailablePower() - device.Power >= 0) { isEnoughOfPower = true; } return isEnoughOfPower; } public int GetAvailablePower() { return AvailablePower; } public void AllDevicesInNetWork(ref LinkedList<Electronics> devices) { Console.WriteLine("-> Devices in NetWork:"); if (devices.Count < 1) { Console.WriteLine("-> There is no connected devices in NetWork"); } foreach (var device in devices) { Console.WriteLine($" [{device.ID}] {device.Name} - {device.Power} W"); } } } }
30.245614
124
0.558005
c9b605bb80383393b593dab74b1925ff066defdd
1,086
ts
TypeScript
modules/core/src/math/geometry/polylinePoint.ts
microsoft/msagljs
98bcb4c6b0e93b544e321e28c1a769f445c9d5a1
[ "MIT" ]
null
null
null
modules/core/src/math/geometry/polylinePoint.ts
microsoft/msagljs
98bcb4c6b0e93b544e321e28c1a769f445c9d5a1
[ "MIT" ]
null
null
null
modules/core/src/math/geometry/polylinePoint.ts
microsoft/msagljs
98bcb4c6b0e93b544e321e28c1a769f445c9d5a1
[ "MIT" ]
null
null
null
import {Point} from './point' import {Polyline} from './polyline' export class PolylinePoint { private _point: Point public get point(): Point { return this._point } public set point(value: Point) { this._point = value } private _next: PolylinePoint = null public get next(): PolylinePoint { return this._next } public set next(value: PolylinePoint) { this._next = value } prev: PolylinePoint = null polyline: Polyline get nextOnPolyline(): PolylinePoint { return this.polyline.next(this) } get prevOnPolyline(): PolylinePoint { return this.polyline.prev(this) } // getNext(): PolylinePoint { return this.next } setNext(nVal: PolylinePoint) { this.next = nVal if (this.polyline != null) this.polyline.setInitIsRequired() } // getPrev() { return this.prev } setPrev(prevVal: PolylinePoint) { this.prev = prevVal if (this.polyline != null) this.polyline.setInitIsRequired() } static mkFromPoint(p: Point) { const pp = new PolylinePoint() pp.point = p return pp } }
19.745455
64
0.658379
e73f873ad27b3d7c3c3000624d630e7718a9ac8f
62
kt
Kotlin
src/test/resources/projForTest/src/structureScanner/severalFunctions.kt
mgmechanics/kotlin-netbeans
94f66c93f0650727445e040e8827e82453e4c1e9
[ "Apache-2.0" ]
82
2016-09-21T19:18:50.000Z
2022-01-21T12:22:03.000Z
src/test/resources/projForTest/src/structureScanner/severalFunctions.kt
mgmechanics/kotlin-netbeans
94f66c93f0650727445e040e8827e82453e4c1e9
[ "Apache-2.0" ]
76
2016-09-20T16:31:12.000Z
2021-12-12T06:14:11.000Z
src/test/resources/projForTest/src/structureScanner/severalFunctions.kt
mgmechanics/kotlin-netbeans
94f66c93f0650727445e040e8827e82453e4c1e9
[ "Apache-2.0" ]
39
2016-09-27T09:24:24.000Z
2022-03-19T09:15:17.000Z
package structureScanner fun first() = 42 fun second() = 42
10.333333
24
0.709677
d6af6b1e6fcf0fa5c132470778b18c9fc04b8794
718
lua
Lua
scripts/timer.lua
ashenatitd/Automato-ATITD
62e3cf0b610a68a1c6769cb712fdbd07899392c2
[ "MIT" ]
8
2015-10-28T16:01:21.000Z
2019-08-04T20:38:56.000Z
scripts/timer.lua
ashenatitd/Automato-ATITD
62e3cf0b610a68a1c6769cb712fdbd07899392c2
[ "MIT" ]
82
2015-03-28T22:43:56.000Z
2020-04-21T06:15:52.000Z
scripts/timer.lua
ashenatitd/Automato-ATITD
62e3cf0b610a68a1c6769cb712fdbd07899392c2
[ "MIT" ]
47
2015-03-28T22:13:12.000Z
2019-12-29T22:59:21.000Z
-- This script has not yet been updated to use the new UI utilties -- -- -- dofile("screen_reader_common.inc"); dofile("ui_utils.inc"); delay_time = 60*2.2*1000; function doit() delay_time = 1000*promptNumber("How many seconds?", 2.2*60) while 1 do lsPlaySound("Clank.wav"); local start_time = lsGetTimer(); while delay_time - (lsGetTimer() - start_time) > 0 do time_left = delay_time - (lsGetTimer() - start_time); lsPrintWrapped(10, 60, 0, lsScreenX - 20, 1, 1, 0xFFFFFFff, "Waiting " .. time_left .. "ms..."); if lsButtonText(lsScreenX - 110, lsScreenY - 30, z, 100, 0xFFFFFFff, "End script") then error "Clicked End Script button"; end lsDoFrame(); lsSleep(100); end end end
24.758621
99
0.671309
1a76a13680d04999a4929b73ac9f1c1bd038881b
67,219
py
Python
Vide/plevels.py
FrankBuss/bloxorz
573d5112572b38907b0a9a82c92dcb1adc5a0d45
[ "MIT" ]
10
2018-08-28T17:50:57.000Z
2022-01-21T06:27:34.000Z
Vide/plevels.py
FrankBuss/bloxorz
573d5112572b38907b0a9a82c92dcb1adc5a0d45
[ "MIT" ]
null
null
null
Vide/plevels.py
FrankBuss/bloxorz
573d5112572b38907b0a9a82c92dcb1adc5a0d45
[ "MIT" ]
2
2019-05-30T06:26:58.000Z
2020-11-03T01:25:44.000Z
levels = [ #{ # 'geometry': [ ' bbb ', # ' bbb ', # ' bbb ', # ' bbb ', # ' b ', # ' b ', # ' bbb ', # ' bbbbb ', # ' bbb ', # ' b ', # ' ', # ' b e ', # ' b b ', # ' b b ', # ' v b '], # 'start': {'x': 4, 'y': 11}, # 'swatches': [ { 'fields': [ { 'action': 'split1', # 'position': {'x': 6, 'y': 12}}, # { 'action': 'split2', # 'position': {'x': 6, 'y': 14}}], # 'position': {'x': 4, 'y': 14}, # 'type': 'v'}]}, { 'geometry': [ ' ', ' ', ' bbb ', ' bbbb ', ' bbbb ', ' bbb ', ' bbb ', ' bbbb ', ' bbbb ', ' bebb ', ' bbbb ', ' bb ', ' ', ' ', ' '], 'start': {'x': 6, 'y': 3}, 'swatches': []}, { 'geometry': [ ' bbbbb ', ' bbbbb ', ' bbbsb ', ' bbbbb ', ' l ', ' r ', ' bbbbbb ', ' bbbbbb ', ' bbbbhb ', ' bbbbbb ', ' l ', ' r ', ' bbbbb ', ' bbbeb ', ' bbbbb '], 'start': {'x': 4, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 4, 'y': 10}}, { 'action': 'onoff', 'position': {'x': 4, 'y': 11}}], 'position': {'x': 7, 'y': 8}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 4, 'y': 4}}, { 'action': 'onoff', 'position': {'x': 4, 'y': 5}}], 'position': {'x': 6, 'y': 2}, 'type': 's'}]}, { 'geometry': [ ' bbbb ', ' bbbb ', ' bbbb ', ' bbbb ', ' b ', ' b ', ' bbb ', ' bbb ', ' bbb ', ' b ', ' b ', ' bbbbb ', ' bbbbbb ', ' bbeb ', ' bbbb '], 'start': {'x': 4, 'y': 1}, 'swatches': []}, { 'geometry': [ ' bbbbb ', ' bbbbb ', ' bbbbb ', ' bff ', ' ff ', 'bbbb ff ', 'bebb ff ', 'bbbb ff ', ' bb ff ', ' ff bff ', 'ffffbbb ', 'ffffbbb ', 'fbff ', 'ffff ', ' '], 'start': {'x': 3, 'y': 1}, 'swatches': []}, { 'geometry': [ 'bbb ', 'beb bbbb ', 'bbb bbbb ', 'bb bbsbb ', ' b bbbbb ', ' k b k ', ' q s q ', ' b b b ', ' b k s ', ' b q b ', ' bbbb b ', ' bbbb bb', ' bbbb bbb', ' bb bbb', ' bs bbb'], 'start': {'x': 8, 'y': 13}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 8, 'y': 6}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 5}}], 'position': {'x': 8, 'y': 8}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 1, 'y': 5}}, { 'action': 'on', 'position': {'x': 1, 'y': 6}}], 'position': {'x': 6, 'y': 3}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 1, 'y': 5}}, { 'action': 'off', 'position': {'x': 1, 'y': 6}}], 'position': {'x': 4, 'y': 6}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 1, 'y': 5}}, { 'action': 'onoff', 'position': {'x': 1, 'y': 6}}], 'position': {'x': 3, 'y': 14}, 'type': 's'}]}, { 'geometry': [ ' b ', ' b ', ' b ', ' b ', ' bbb ', ' bbbbbb', ' bbbbb b', 'bbb b', 'bbb bbb', 'bbbb bbb', ' bbb bbb', ' bbb ', ' bbbb ', ' beb ', ' bbb '], 'start': {'x': 6, 'y': 0}, 'swatches': []}, { 'geometry': [ ' bbbb ', ' bbbbb ', ' bbbbbb ', ' bl b ', ' b b ', ' b b ', ' b b ', ' bbbbb ', ' bbbbbb ', ' bh bb ', ' bb ', ' bbb ', ' bbbb ', ' bbeb ', ' bbbb '], 'start': {'x': 5, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 3}}], 'position': {'x': 4, 'y': 9}, 'type': 'h'}]}, { 'geometry': [ ' bbb ', ' bbb ', ' bbb ', ' bbb ', ' bvb ', ' bbb ', ' ', ' ', ' ', ' bbbbbbbbb', ' bbbbbbbbb', ' bbbbbbbbb', ' bbb ', ' beb ', ' bbb '], 'start': {'x': 5, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 8, 'y': 10}}, { 'action': 'split2', 'position': {'x': 2, 'y': 10}}], 'position': {'x': 5, 'y': 4}, 'type': 'v'}]}, { 'geometry': [ ' bbb ', ' bbb ', ' bbb ', ' bbb ', ' b ', ' b ', ' bbb ', ' bebbb ', ' bbb ', ' b ', ' b ', ' bbb ', ' bbb ', ' bvb ', ' bbb '], 'start': {'x': 5, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 5, 'y': 12}}, { 'action': 'split2', 'position': {'x': 5, 'y': 2}}], 'position': {'x': 5, 'y': 13}, 'type': 'v'}]}, { 'geometry': [ ' ', ' bbb', ' beb', ' bbb', ' l ', 'bb r ', 'sb b ', ' b l ', ' b r ', 'bb bbb', 'b bbbb', 'b bbbb', 'hbb bbbbb', 'bbbbbbllvb', ' bb'], 'start': {'x': 8, 'y': 10}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 8, 'y': 13}}, { 'action': 'split2', 'position': {'x': 8, 'y': 10}}], 'position': {'x': 8, 'y': 13}, 'type': 'v'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 8, 'y': 4}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 5}}], 'position': {'x': 0, 'y': 6}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 8, 'y': 7}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 8}}, { 'action': 'onoff', 'position': {'x': 7, 'y': 13}}, { 'action': 'onoff', 'position': {'x': 6, 'y': 13}}], 'position': {'x': 0, 'y': 12}, 'type': 'h'}]}, { 'geometry': [ ' ', ' ', ' b ', ' bbbbbb', ' b beb', ' b bbb', ' b kk', ' bbbbbb ', ' bbsbbb ', ' bb b ', 'bbb b ', 'bb bbb ', 'bb bbb ', ' bbbb ', ' '], 'start': {'x': 4, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 9, 'y': 6}}, { 'action': 'off', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 3, 'y': 8}, 'type': 's'}]}, { 'geometry': [ ' ', ' bb ', ' bbb ', ' bbb ', ' bbbbb ', ' beb ', 'bb bbbbb ', 'bbb lbhb ', 'bbb bbb ', ' b b ', ' bbb b ', ' bbbbbbb ', ' bbbbbb ', ' bb lbh', ' '], 'start': {'x': 3, 'y': 3}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 5, 'y': 7}}], 'position': {'x': 9, 'y': 13}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 13}}], 'position': {'x': 7, 'y': 7}, 'type': 'h'}]}, { 'geometry': [ ' ', ' bbbbbb', ' bbbbbb', ' bbbbb b', 'bbb f f', 'bbb f b', 'bfffff b', ' fffbbb b', ' fbfbeb b', 'bfffbbb f', 'bfff b', ' ffb bb', ' bbbbbbb', ' bbbbb', ' bbb '], 'start': {'x': 6, 'y': 13}, 'swatches': []}, { 'geometry': [ ' bbbbbb ', ' bb ll ', 'bbb rr ', 'beb bbb ', 'bbb bbb ', ' bbb ', ' b ', ' b ', 'bbbb bbb', 'bbbb bbb', 'bbbb bbb', 'b b b ', 'b bbbhb ', 'h bbbbb ', ' '], 'start': {'x': 7, 'y': 4}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 1}}, { 'action': 'onoff', 'position': {'x': 7, 'y': 2}}], 'position': {'x': 6, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 6, 'y': 1}}, { 'action': 'onoff', 'position': {'x': 6, 'y': 2}}], 'position': {'x': 0, 'y': 13}, 'type': 'h'}]}, { 'geometry': [ 'bbb bbb ', 'bbbbbbbb ', 'bbb bl ', ' b br ', ' b bbb ', ' b k ', 'bbb q ', 'bbbbv bbb', 'bbb sbbb', ' k bbb', ' q l ', 'sbs r ', 'beb bhb', 'bbb bbb', ' bbb'], 'start': {'x': 1, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 2}}, { 'action': 'onoff', 'position': {'x': 7, 'y': 3}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 5}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 8, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 8, 'y': 5}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 6}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 10}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 11}}], 'position': {'x': 6, 'y': 8}, 'type': 's'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 8, 'y': 13}}, { 'action': 'split2', 'position': {'x': 1, 'y': 1}}], 'position': {'x': 4, 'y': 7}, 'type': 'v'}, { 'fields': [ { 'action': 'off', 'position': {'x': 1, 'y': 9}}, { 'action': 'off', 'position': {'x': 1, 'y': 10}}], 'position': {'x': 2, 'y': 11}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 1, 'y': 9}}, { 'action': 'off', 'position': {'x': 1, 'y': 10}}], 'position': {'x': 0, 'y': 11}, 'type': 's'}]}, { 'geometry': [ ' v ', ' vbv ', 'bbb v ', 'bbb l ', 'bbb r ', ' b h ', ' b h ', ' b b ', 'bbb l ', 'bvb r ', 'bbb bbb ', ' beb ', ' bbb ', ' ', ' '], 'start': {'x': 1, 'y': 3}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 6, 'y': 7}}, { 'action': 'split2', 'position': {'x': 6, 'y': 5}}], 'position': {'x': 7, 'y': 1}, 'type': 'v'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 6, 'y': 2}}, { 'action': 'split2', 'position': {'x': 7, 'y': 1}}], 'position': {'x': 6, 'y': 0}, 'type': 'v'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 6, 'y': 0}}, { 'action': 'split2', 'position': {'x': 6, 'y': 2}}], 'position': {'x': 6, 'y': 2}, 'type': 'v'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 3}}, { 'action': 'on', 'position': {'x': 6, 'y': 4}}], 'position': {'x': 6, 'y': 5}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 8}}, { 'action': 'on', 'position': {'x': 6, 'y': 9}}], 'position': {'x': 6, 'y': 6}, 'type': 'h'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 5, 'y': 1}}, { 'action': 'split2', 'position': {'x': 6, 'y': 0}}], 'position': {'x': 5, 'y': 1}, 'type': 'v'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 7, 'y': 1}}, { 'action': 'split2', 'position': {'x': 6, 'y': 0}}], 'position': {'x': 1, 'y': 9}, 'type': 'v'}]}, { 'geometry': [ 'bbbbbbbbbb', 'bsbbbbbbbb', 'bbbbbbbbbb', ' b b ', ' b b ', ' b b ', ' br b ', ' bb rb ', ' lb bb ', ' b bl ', ' b b ', 'bbbb b ', 'hbbh hbb ', ' heb ', ' bbb '], 'start': {'x': 8, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 3, 'y': 6}}], 'position': {'x': 6, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 3, 'y': 6}}], 'position': {'x': 6, 'y': 13}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 7, 'y': 7}}], 'position': {'x': 3, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 8}}], 'position': {'x': 1, 'y': 1}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 8, 'y': 9}}, { 'action': 'off', 'position': {'x': 2, 'y': 8}}], 'position': {'x': 0, 'y': 12}, 'type': 'h'}]}, { 'geometry': [ 'bbbbbbbb ', 'l bbsbb ', 'r sbbbs ', 'h bbbbb ', ' bbb ', ' lb ', ' b ', ' bbbs ', ' sbbl ', ' r ', 'bb b ', 'bbb b ', 'bebbbl ', 'bbb r ', ' b '], 'start': {'x': 5, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'on', 'position': {'x': 5, 'y': 8}}, { 'action': 'on', 'position': {'x': 5, 'y': 9}}], 'position': {'x': 8, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 5, 'y': 12}}, { 'action': 'off', 'position': {'x': 5, 'y': 13}}, { 'action': 'off', 'position': {'x': 0, 'y': 1}}, { 'action': 'off', 'position': {'x': 0, 'y': 2}}], 'position': {'x': 7, 'y': 2}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 5, 'y': 8}}, { 'action': 'off', 'position': {'x': 5, 'y': 9}}], 'position': {'x': 5, 'y': 1}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 5, 'y': 12}}, { 'action': 'off', 'position': {'x': 5, 'y': 13}}, { 'action': 'off', 'position': {'x': 0, 'y': 1}}, { 'action': 'off', 'position': {'x': 0, 'y': 2}}], 'position': {'x': 3, 'y': 2}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 5, 'y': 12}}, { 'action': 'on', 'position': {'x': 5, 'y': 13}}, { 'action': 'on', 'position': {'x': 0, 'y': 1}}, { 'action': 'on', 'position': {'x': 0, 'y': 2}}], 'position': {'x': 2, 'y': 8}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 4, 'y': 5}}], 'position': {'x': 0, 'y': 3}, 'type': 'h'}]}, { 'geometry': [ ' bbb ', 'bbbeb b', 'kbbbb b', 'q b', 'b b', 'bbbbb bbb', 'bbbbb bbb', 'b l b', 'b r b', 'b b b', 's s s', 'b b b', 'b b b', 'b bbbbbb', ' bbbbbb'], 'start': {'x': 9, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 4, 'y': 7}}, { 'action': 'onoff', 'position': {'x': 4, 'y': 8}}], 'position': {'x': 9, 'y': 10}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 0, 'y': 2}}, { 'action': 'off', 'position': {'x': 0, 'y': 3}}], 'position': {'x': 4, 'y': 10}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 0, 'y': 2}}, { 'action': 'on', 'position': {'x': 0, 'y': 3}}], 'position': {'x': 0, 'y': 10}, 'type': 's'}]}, { 'geometry': [ ' bb ', ' sb ', ' bbbbbb ', ' bbsbbb ', ' bbbbb ', ' k ', ' q ', ' bbvbsb ', ' bbbbbb ', ' bbsbbb ', ' l l ', ' r r ', 'bbbs bbb', 'bebb bbb', 'bbbb bbb'], 'start': {'x': 7, 'y': 8}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 8, 'y': 5}}, { 'action': 'off', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 7, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 8, 'y': 5}}, { 'action': 'off', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 5, 'y': 3}, 'type': 's'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 8, 'y': 13}}, { 'action': 'split2', 'position': {'x': 2, 'y': 13}}], 'position': {'x': 5, 'y': 7}, 'type': 'v'}, { 'fields': [ { 'action': 'off', 'position': {'x': 8, 'y': 5}}, { 'action': 'off', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 5, 'y': 9}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 3, 'y': 10}}, { 'action': 'onoff', 'position': {'x': 3, 'y': 11}}], 'position': {'x': 3, 'y': 12}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 8, 'y': 10}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 11}}], 'position': {'x': 2, 'y': 1}, 'type': 's'}]}, { 'geometry': [ ' bbb ', ' bbbb ', ' bbbbb ', 'rbb bb ', 'bbb bb ', 'bbl bb ', 'b b ', 'b bb ', 'bbbhhbbbbb', 'bbbbb bbb', ' b ', ' b ', ' bbb ', ' beb ', ' bbb '], 'start': {'x': 6, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 0, 'y': 3}}], 'position': {'x': 4, 'y': 8}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 5}}], 'position': {'x': 3, 'y': 8}, 'type': 'h'}]}, { 'geometry': [ ' ', ' bbb ', ' bbbbbbb ', 'hbl bbb ', ' bbb ', ' sbb ', ' bbb', ' sbb', ' bbb ', ' bbb ', 'hbq bbb ', ' bbbbbbb ', ' bbbbb', ' lbeb', ' bbb'], 'start': {'x': 6, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 6, 'y': 13}}], 'position': {'x': 7, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 6, 'y': 13}}], 'position': {'x': 6, 'y': 5}, 'type': 's'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 6, 'y': 13}}], 'position': {'x': 0, 'y': 3}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 3}}], 'position': {'x': 0, 'y': 10}, 'type': 'h'}]}, { 'geometry': [ ' bsbr ', ' l bbbb', ' r bbhb', 'bbbb bbbb', 'bbbbbbl ', 'bbbb ', 'bfff ', 'bffffbbb ', 'lffffbeb ', ' ffffbbb ', ' fff k ', ' bbb q ', ' bvb bbbb', ' bbb bbsb', ' kbbsbbb'], 'start': {'x': 2, 'y': 4}, 'swatches': [ { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 4}}], 'position': {'x': 8, 'y': 2}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 0, 'y': 8}}, { 'action': 'on', 'position': {'x': 3, 'y': 1}}, { 'action': 'on', 'position': {'x': 3, 'y': 2}}], 'position': {'x': 8, 'y': 13}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 3, 'y': 14}}, { 'action': 'off', 'position': {'x': 7, 'y': 10}}, { 'action': 'off', 'position': {'x': 7, 'y': 11}}], 'position': {'x': 6, 'y': 14}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 0}}, { 'action': 'off', 'position': {'x': 3, 'y': 1}}, { 'action': 'off', 'position': {'x': 3, 'y': 2}}], 'position': {'x': 4, 'y': 0}, 'type': 's'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 2, 'y': 12}}, { 'action': 'split2', 'position': {'x': 7, 'y': 2}}], 'position': {'x': 2, 'y': 12}, 'type': 'v'}]}, { 'geometry': [ ' ', ' bbbh ', ' bbbbb ', ' bb l ', ' b rr ', ' bbbbb ', ' hb bhb ', ' bb bb ', ' lb b ', ' l b ', ' r b ', ' bbb bbb ', ' beb bhb ', ' bbbbbbbb ', ' bvb '], 'start': {'x': 6, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 4}}, { 'action': 'on', 'position': {'x': 6, 'y': 3}}], 'position': {'x': 7, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'split1', 'position': {'x': 2, 'y': 6}}, { 'action': 'split2', 'position': {'x': 2, 'y': 8}}], 'position': {'x': 7, 'y': 14}, 'type': 'v'}, { 'fields': [ { 'action': 'on', 'position': {'x': 1, 'y': 8}}], 'position': {'x': 6, 'y': 6}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 7, 'y': 4}}], 'position': {'x': 5, 'y': 1}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 2, 'y': 9}}, { 'action': 'on', 'position': {'x': 2, 'y': 10}}], 'position': {'x': 1, 'y': 6}, 'type': 'h'}]}, { 'geometry': [ ' bbb ', ' bbbb ', ' kkhb bbb', ' b bbbb', ' k bsb ', ' q b ', ' bbbbbb ', ' bbbbbl ', ' s l ', ' b r ', ' b bbb ', 'bbb beb ', 'bbb bbb ', 'bbb ll ', ' '], 'start': {'x': 2, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 13}}, { 'action': 'onoff', 'position': {'x': 6, 'y': 13}}, { 'action': 'onoff', 'position': {'x': 5, 'y': 8}}, { 'action': 'onoff', 'position': {'x': 5, 'y': 9}}], 'position': {'x': 7, 'y': 4}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 5, 'y': 8}}, { 'action': 'on', 'position': {'x': 5, 'y': 9}}], 'position': {'x': 3, 'y': 2}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 7}}, { 'action': 'off', 'position': {'x': 3, 'y': 4}}, { 'action': 'off', 'position': {'x': 3, 'y': 5}}], 'position': {'x': 1, 'y': 8}, 'type': 's'}]}, { 'geometry': [ ' bbb ', ' hbbbb ', ' bbk ', ' lq ', ' bb ', ' bbbb', ' bbbbbbbbb', ' beb bbsb', ' bbb bbb', ' l bb ', ' bbbbb ', ' bb ', ' b ', ' bbbv', ' '], 'start': {'x': 4, 'y': 10}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 6, 'y': 12}}, { 'action': 'split2', 'position': {'x': 4, 'y': 10}}], 'position': {'x': 9, 'y': 13}, 'type': 'v'}, { 'fields': [ { 'action': 'off', 'position': {'x': 6, 'y': 2}}, { 'action': 'off', 'position': {'x': 6, 'y': 3}}], 'position': {'x': 8, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 2, 'y': 9}}, { 'action': 'on', 'position': {'x': 5, 'y': 3}}], 'position': {'x': 2, 'y': 1}, 'type': 'h'}]}, { 'geometry': [ ' bbb bbb', ' beb bbb', ' bbb bbb', ' ff b ', ' ff b ', ' ffff b ', 'qffff b ', 'bffff bbb', 'bffff bbb', 'kfffb bb', ' ff bb', ' ff b', ' bbbsbb b', ' bbbsbhbbb', ' bbb bbbb'], 'start': {'x': 8, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 0, 'y': 6}}, { 'action': 'off', 'position': {'x': 0, 'y': 9}}], 'position': {'x': 6, 'y': 13}, 'type': 'h'}, { 'fields': [ { 'action': 'off', 'position': {'x': 0, 'y': 6}}], 'position': {'x': 4, 'y': 12}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 0, 'y': 9}}], 'position': {'x': 4, 'y': 13}, 'type': 's'}]}, { 'geometry': [ ' ffff ', ' bbbfffbb', 'bbbeb bbb', ' bbb k', ' b q', 'bbb bbb', 'bbb bbb', 'b bbb ', 'k bbb ', 'q bbb ', 'bbbbbb ', 'bbsbv ', 'bbbb ', ' bb ', ' bb '], 'start': {'x': 7, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'split1', 'position': {'x': 3, 'y': 14}}, { 'action': 'split2', 'position': {'x': 0, 'y': 12}}], 'position': {'x': 4, 'y': 11}, 'type': 'v'}, { 'fields': [ { 'action': 'off', 'position': {'x': 9, 'y': 4}}, { 'action': 'off', 'position': {'x': 9, 'y': 3}}, { 'action': 'off', 'position': {'x': 0, 'y': 8}}, { 'action': 'off', 'position': {'x': 0, 'y': 9}}], 'position': {'x': 2, 'y': 11}, 'type': 's'}]}, { 'geometry': [ 'bbb h ', 'beb l ', 'bbb r s', 'll b k', ' r b q', ' bbrrbbbbb', ' bbbbbb ', ' bbb ', ' bbb ', 'bbbbbbbbbb', 'k k b l', 'q q b r', 's s l h', ' r ', ' h '], 'start': {'x': 6, 'y': 7}, 'swatches': [ { 'fields': [ { 'action': 'on', 'position': {'x': 9, 'y': 10}}, { 'action': 'on', 'position': {'x': 9, 'y': 11}}, { 'action': 'off', 'position': {'x': 3, 'y': 10}}, { 'action': 'off', 'position': {'x': 3, 'y': 11}}], 'position': {'x': 9, 'y': 2}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 4, 'y': 5}}, { 'action': 'on', 'position': {'x': 3, 'y': 5}}], 'position': {'x': 9, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 1, 'y': 3}}, { 'action': 'on', 'position': {'x': 1, 'y': 4}}, { 'action': 'off', 'position': {'x': 0, 'y': 10}}, { 'action': 'off', 'position': {'x': 0, 'y': 11}}], 'position': {'x': 6, 'y': 0}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 0, 'y': 3}}], 'position': {'x': 6, 'y': 14}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 1}}, { 'action': 'on', 'position': {'x': 6, 'y': 2}}], 'position': {'x': 3, 'y': 12}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 12}}, { 'action': 'on', 'position': {'x': 6, 'y': 13}}, { 'action': 'off', 'position': {'x': 3, 'y': 10}}, { 'action': 'off', 'position': {'x': 3, 'y': 11}}, { 'action': 'off', 'position': {'x': 9, 'y': 3}}, { 'action': 'off', 'position': {'x': 9, 'y': 4}}, { 'action': 'off', 'position': {'x': 9, 'y': 10}}, { 'action': 'off', 'position': {'x': 9, 'y': 11}}], 'position': {'x': 0, 'y': 12}, 'type': 's'}]}, { 'geometry': [ ' bff ', 'ffffh ', 'bfffbb ', 'ffbff bbb', 'fff beb', 'ffb bbb', ' ff bb', ' ffbfff b', 'ffbbffb f', 'fffl b f', 'ff k b', 'ff q b', 'bbhr bffb', ' bb bbbb', ' lbbbbh '], 'start': {'x': 5, 'y': 2}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 6, 'y': 10}}, { 'action': 'off', 'position': {'x': 6, 'y': 11}}, { 'action': 'on', 'position': {'x': 3, 'y': 9}}, { 'action': 'on', 'position': {'x': 3, 'y': 12}}], 'position': {'x': 7, 'y': 14}, 'type': 'h'}, { 'fields': [ { 'action': 'on', 'position': {'x': 6, 'y': 10}}, { 'action': 'on', 'position': {'x': 6, 'y': 11}}], 'position': {'x': 4, 'y': 1}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 14}}], 'position': {'x': 2, 'y': 12}, 'type': 'h'}]}, { 'geometry': [ 'qqq ', 'bbb fbbb ', 'bhbbffbbb ', 'bbb fbbb ', ' l k ', ' r q ', ' hbbbsbb ', ' sbbbbb ', ' bbbbbbh ', ' k l ', ' q r ', ' bbbf bbb', ' bbbffbbeb', ' bbbf bbb', ' lll'], 'start': {'x': 2, 'y': 12}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 9}}, { 'action': 'onoff', 'position': {'x': 7, 'y': 10}}], 'position': {'x': 8, 'y': 8}, 'type': 'h'}, { 'fields': [ { 'action': 'off', 'position': {'x': 7, 'y': 4}}, { 'action': 'off', 'position': {'x': 7, 'y': 5}}, { 'action': 'off', 'position': {'x': 7, 'y': 9}}, { 'action': 'off', 'position': {'x': 7, 'y': 10}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}, { 'action': 'off', 'position': {'x': 2, 'y': 5}}, { 'action': 'off', 'position': {'x': 2, 'y': 9}}, { 'action': 'off', 'position': {'x': 2, 'y': 10}}], 'position': {'x': 5, 'y': 6}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 7, 'y': 4}}, { 'action': 'off', 'position': {'x': 7, 'y': 5}}, { 'action': 'off', 'position': {'x': 7, 'y': 9}}, { 'action': 'off', 'position': {'x': 7, 'y': 10}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}, { 'action': 'off', 'position': {'x': 2, 'y': 5}}, { 'action': 'off', 'position': {'x': 2, 'y': 9}}, { 'action': 'off', 'position': {'x': 2, 'y': 10}}], 'position': {'x': 2, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 7, 'y': 14}}, { 'action': 'on', 'position': {'x': 8, 'y': 14}}, { 'action': 'on', 'position': {'x': 9, 'y': 14}}, { 'action': 'off', 'position': {'x': 7, 'y': 4}}, { 'action': 'off', 'position': {'x': 7, 'y': 5}}], 'position': {'x': 1, 'y': 2}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 4}}, { 'action': 'onoff', 'position': {'x': 2, 'y': 5}}], 'position': {'x': 1, 'y': 6}, 'type': 'h'}]}, { 'geometry': [ ' ', ' bb ', ' bb bbb ', ' ll bebb ', ' rr bbbb ', ' bbb lk ', ' bhb rq ', ' bbb bb ', ' b bbb ', ' b bb ', ' bbbbbb ', ' bbbbbbb ', ' bhb ', ' bbb', ' bbh'], 'start': {'x': 3, 'y': 11}, 'swatches': [ { 'fields': [ { 'action': 'onoff', 'position': {'x': 2, 'y': 3}}, { 'action': 'onoff', 'position': {'x': 2, 'y': 4}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 5}}, { 'action': 'onoff', 'position': {'x': 8, 'y': 6}}], 'position': {'x': 9, 'y': 14}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 1, 'y': 3}}, { 'action': 'onoff', 'position': {'x': 1, 'y': 4}}], 'position': {'x': 7, 'y': 12}, 'type': 'h'}, { 'fields': [ { 'action': 'onoff', 'position': {'x': 7, 'y': 5}}, { 'action': 'onoff', 'position': {'x': 7, 'y': 6}}], 'position': {'x': 2, 'y': 6}, 'type': 'h'}]}, { 'geometry': [ 'bbbb bb ', 'bbeb bb ', 'bbbb bb ', ' k k ', ' q q ', ' bbbbbbsbb', ' bsbbbbbbb', ' bbbbsbbbs', ' bbbbsbb', ' bbbsbbb', ' bbbssbbb', ' bbssbbbl ', 'bbbbbbbb ', 'bbsbbbsb ', 'bbhb '], 'start': {'x': 6, 'y': 1}, 'swatches': [ { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 9, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 7, 'y': 5}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 7, 'y': 8}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 6, 'y': 9}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 6, 'y': 10}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 6, 'y': 13}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 5, 'y': 7}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 5, 'y': 10}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 4, 'y': 11}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 3, 'y': 11}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 2, 'y': 6}, 'type': 's'}, { 'fields': [ { 'action': 'off', 'position': {'x': 2, 'y': 3}}, { 'action': 'off', 'position': {'x': 2, 'y': 4}}], 'position': {'x': 2, 'y': 13}, 'type': 's'}, { 'fields': [ { 'action': 'on', 'position': {'x': 8, 'y': 11}}], 'position': {'x': 2, 'y': 14}, 'type': 'h'}]}]
53.646449
81
0.161472
fa23bd08f093d473ee17881d04e7a7918b21b147
112
css
CSS
public/css/flex.css
japssii/myphone
f177872e8421952269e70ff82742222f18a95eaf
[ "MIT" ]
null
null
null
public/css/flex.css
japssii/myphone
f177872e8421952269e70ff82742222f18a95eaf
[ "MIT" ]
null
null
null
public/css/flex.css
japssii/myphone
f177872e8421952269e70ff82742222f18a95eaf
[ "MIT" ]
null
null
null
.form-group row { display: flex; } .form-group row > div { text-transform: capitalize; }
11.2
31
0.544643
c39744f61520a5d09fc0b01c4f7adfc7947419a1
494,306
sql
SQL
localhost.sql
klysma/hosp
a3f9d7fc144278a68f9d7ac9652d283fa9737e09
[ "MIT" ]
null
null
null
localhost.sql
klysma/hosp
a3f9d7fc144278a68f9d7ac9652d283fa9737e09
[ "MIT" ]
null
null
null
localhost.sql
klysma/hosp
a3f9d7fc144278a68f9d7ac9652d283fa9737e09
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.5.4.1deb2ubuntu2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: 23-Mar-2018 às 22:15 -- Versão do servidor: 5.7.21-0ubuntu0.16.04.1 -- PHP Version: 7.0.22-0ubuntu0.16.04.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `banco_tutorial_laravel` -- CREATE DATABASE IF NOT EXISTS `banco_tutorial_laravel` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `banco_tutorial_laravel`; -- -- Database: `blog` -- CREATE DATABASE IF NOT EXISTS `blog` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `blog`; -- -------------------------------------------------------- -- -- Estrutura da tabela `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Extraindo dados da tabela `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `posts` -- CREATE TABLE `posts` ( `id` int(10) UNSIGNED NOT NULL, `titulo` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `conteudo` text COLLATE utf8_unicode_ci NOT NULL, `autor` text COLLATE utf8_unicode_ci, `imagem` text COLLATE utf8_unicode_ci, `categoria_id` varchar(80) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Extraindo dados da tabela `users` -- INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Jardel Nathan', '[email protected]', '$2y$10$nxMj../pt0qiPbO4EvzESu1383lbDaGNnOsSJ1mO439c2CmgF/.7q', 'RHfWDJkrILdSgwCypl9RuePSasKArsQkXC1CGJo5ZM9GpJRu89R9D1CnE0ho', '2017-12-16 23:45:30', '2017-12-29 02:14:36'); -- -- Indexes for dumped tables -- -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`), ADD KEY `password_resets_token_index` (`token`); -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;-- -- Database: `meritus` -- CREATE DATABASE IF NOT EXISTS `meritus` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `meritus`; -- -------------------------------------------------------- -- -- Estrutura da tabela `area_atuacao` -- CREATE TABLE `area_atuacao` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `area_atuacao` -- INSERT INTO `area_atuacao` (`id`, `descricao`) VALUES (1, 'Presidente'), (2, 'Senador(a)'), (3, 'Deputado(a) Federal'), (4, 'Governador(a)'), (5, 'Deputado(a) Estadual'), (6, 'Prefeito(a)'), (7, 'Vereador(a)'); -- -------------------------------------------------------- -- -- Estrutura da tabela `banners` -- CREATE TABLE `banners` ( `id` int(11) NOT NULL, `imagem` varchar(40) NOT NULL, `titulo` text ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `candidatos_oficiais` -- CREATE TABLE `candidatos_oficiais` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `foto` varchar(255) DEFAULT NULL, `partidos_id` int(11) DEFAULT NULL, `perfis_id` int(11) DEFAULT NULL, `eleicao_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `candidatos_oficiais` -- INSERT INTO `candidatos_oficiais` (`id`, `nome`, `foto`, `partidos_id`, `perfis_id`, `eleicao_id`) VALUES (25, 'Koala', 'dc73f8634d2ca07e29ff28da9e439b5d.jpg', 2, 5, 40), (26, 'Pinguim', '50f73395f7cf8ba236b594a3ea2efadf.jpg', 7, 7, 40), (29, 'Jair Bolsonaro', '0e772292d86d752f68b8272d28084ada.jpg', 33, 57, 41), (30, 'Lula', '8c49bab639ec4a10288cfd8fda60ad56.jpg', 1, 58, 41); -- -------------------------------------------------------- -- -- Estrutura da tabela `candidatos_oficiais_votos` -- CREATE TABLE `candidatos_oficiais_votos` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `candidatos_oficiais_id` int(11) NOT NULL, `justificativa` varchar(255) DEFAULT NULL, `tipo` int(11) DEFAULT NULL COMMENT '0 - oculto\n1 - público' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `candidatos_oficiais_votos` -- INSERT INTO `candidatos_oficiais_votos` (`id`, `perfis_id`, `candidatos_oficiais_id`, `justificativa`, `tipo`) VALUES (203, 3, 29, 'teste', 1), (213, 6, 26, '', 1), (217, 2, 30, '', 0), (220, 1, 29, 'Pode ver sim porque as urnas não funcionam mesmo', 1), (225, 6, 30, NULL, 0), (229, 62, 29, NULL, 0); -- -------------------------------------------------------- -- -- Estrutura da tabela `categorias` -- CREATE TABLE `categorias` ( `id` int(11) NOT NULL, `nome` varchar(255) CHARACTER SET utf8 DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `categorias` -- INSERT INTO `categorias` (`id`, `nome`) VALUES (1, 'roupas'), (5, 'Teste Categoria'), (6, 'Eletronicos'); -- -------------------------------------------------------- -- -- Estrutura da tabela `certificacao` -- CREATE TABLE `certificacao` ( `id` int(11) NOT NULL, `descricao` text NOT NULL, `imagem` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `certificacao` -- INSERT INTO `certificacao` (`id`, `descricao`, `imagem`) VALUES (1, '<h3>Selo de certificação</h3>\r\n <!-- <ul class="post-meta">\r\n <li>Novemer 9, 2016</li>\r\n <li><a href="#">5 Comments</a></li>\r\n </ul> -->\r\n <p>O Certificado Meritus atesta à sociedade quais as empresas que apoiam a proposta do portal, cujo ponto principal é a qualificação dos eleitores e dos próprios candidatos por meios das diversas ferramentas disponibilizadas pelo sistema, em especial a elevação do nível de debate político por meio de fóruns em rede social especializada, a disponibilização de artigos instrutivos, notícias, módulos de ensino à distância-EAD, leis, bem como a divulgação de exemplos diversos que deram certo no exercício de cargos públicos ou que representem gestos da cidadania saudável.</p><h4>Benefícios do Selo de Certificação Meritus</h4><p>O Selo de Certificação Meritus define quais as empresas estão comprometidas com a boa conscientização política, lastreada no conhecimento para o bom exercício do direito ao voto bem como, na capacitação daqueles que exercerão cargos públicos legislativos ou executivos.</p><p>Trata-se de um selo que visa traduzir a responsabilidade social inerente à empresa quanto a educação política, a fim de promover uma mudança nos cidadãos eleitores ou candidatos que serão os responsáveis pela condução dos principais cargos públicos que movem a engrenagem do país.</p><p>Os consumidores/eleitores destinarão esforços para aquisição de produtos e serviços das empresas com a responsabilidade social política em análise, sendo que a empresa poderá obter o selo mediante uma contribuição anual que será destinada ao desenvolvimento das atividades e conteúdos propostos pelo Portal.</p><p>A vigência do selo será de um ano após solicitado, somente encerrando-se a sua concessão por decurso do prazo ou por prática de atos contrários aos princípios defendidos pelo Portal.</p>', 'certificacao.png'); -- -------------------------------------------------------- -- -- Estrutura da tabela `cidades` -- CREATE TABLE `cidades` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `estados_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `cidades` -- INSERT INTO `cidades` (`id`, `descricao`, `estados_id`) VALUES (1, 'Montes Claros', 1), (2, 'Buffalo', 3), (3, 'Amityville', 3); -- -------------------------------------------------------- -- -- Estrutura da tabela `codigo_eleitoral` -- CREATE TABLE `codigo_eleitoral` ( `id` int(11) NOT NULL, `descricao` text, `imagem` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `comentarios_projetos` -- CREATE TABLE `comentarios_projetos` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `projetos_lei_id` int(11) NOT NULL, `comentario` mediumtext, `data` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `comentarios_projetos` -- INSERT INTO `comentarios_projetos` (`id`, `perfis_id`, `projetos_lei_id`, `comentario`, `data`) VALUES (36, 6, 52, 'Mauris ac justo vitae est porttitor aliquet. Aliquam at fringilla sapien, in pharetra eros. Aenean dignissim sit amet tortor in bibendum.', '1499966970'), (37, 6, 52, 'rew', '1501156933'); -- -------------------------------------------------------- -- -- Estrutura da tabela `denuncia_perfil` -- CREATE TABLE `denuncia_perfil` ( `id` int(11) NOT NULL, `tipos_denuncia_id` int(11) NOT NULL, `perfis_id_denunciado` int(11) NOT NULL, `perfis_id_delator` int(11) NOT NULL, `mensagem` text ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `denuncia_perfil` -- INSERT INTO `denuncia_perfil` (`id`, `tipos_denuncia_id`, `perfis_id_denunciado`, `perfis_id_delator`, `mensagem`) VALUES (32, 5, 6, 3, NULL), (33, 6, 3, 5, NULL), (34, 5, 3, 5, NULL), (35, 5, 5, 3, NULL), (36, 3, 5, 3, NULL), (37, 5, 5, 3, NULL), (38, 5, 5, 3, NULL), (39, 5, 5, 3, NULL), (40, 5, 5, 3, NULL), (41, 5, 5, 3, NULL), (42, 5, 5, 8, NULL), (43, 5, 5, 3, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `ead` -- CREATE TABLE `ead` ( `id` int(11) NOT NULL, `descricao` mediumtext, `video` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `ead` -- INSERT INTO `ead` (`id`, `descricao`, `video`) VALUES (1, '<p><font face="Arial">Serão disponibilizadas vídeo aulas, materiais para cursos online, entre outros. O usuário ou candidato acessa o curso e assiste vídeo aulas, acessa materiais para downloads, obtém certificados, aumentando seu conhecimento, melhorando gradativamente o seu perfil e a sua avaliação dentro do Portal.</font></p>', 'ead.mp4'); -- -------------------------------------------------------- -- -- Estrutura da tabela `eleicao` -- CREATE TABLE `eleicao` ( `id` int(11) NOT NULL, `periodo` varchar(105) DEFAULT NULL, `tipo` varchar(100) DEFAULT NULL COMMENT '"1">Presidente "2">Governador "3">Senador "4" >Deputado Federal "5" >Deputado Estadual "6" >Prefeito "7" >Vereador', `cidades_id` int(11) DEFAULT NULL, `estados_id` int(11) DEFAULT NULL, `paises_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `eleicao` -- INSERT INTO `eleicao` (`id`, `periodo`, `tipo`, `cidades_id`, `estados_id`, `paises_id`) VALUES (40, '2018', '2', NULL, 1, 1), (41, '2018', '1', NULL, NULL, 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `enquete` -- CREATE TABLE `enquete` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `pergunta` text NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 - Bloqueada\n1 - Aberta', `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `enquete` -- INSERT INTO `enquete` (`id`, `titulo`, `pergunta`, `status`, `data`) VALUES (13, '12123123', '<p>uai</p>', 0, '2017-07-20 11:59:52'), (14, 'Enquete principal', '<p>Você acha válida a proposta do portal para conhecermos e capacitarmos melhor os candidatos nos quais iremos votar?</p>', 1, '2017-07-26 16:12:40'), (15, 'teste', '<p>fsdfd</p>', 0, '2017-07-11 10:43:17'), (16, 'asd', '<p>asd</p>', 0, '2017-07-14 11:42:03'), (38, 'Você concorda com a maioridade penal?', '<p>Você concorda com a maioridade penal?<br></p>', 0, '2017-07-20 10:48:18'), (39, 'Você concorda com a pena de morte?', '<p><font face="Arial">Você concorda com a pena de morte?</font><br></p>', 0, '2017-07-27 10:06:39'); -- -------------------------------------------------------- -- -- Estrutura da tabela `estados` -- CREATE TABLE `estados` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `paises_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `estados` -- INSERT INTO `estados` (`id`, `descricao`, `paises_id`) VALUES (1, 'Minas Gerais', 1), (2, 'Rio de janeiro', 1), (3, 'Nova Iorque', 2); -- -------------------------------------------------------- -- -- Estrutura da tabela `eventos` -- CREATE TABLE `eventos` ( `id` int(11) NOT NULL, `imagem` varchar(40) DEFAULT NULL, `titulo` text, `data` bigint(20) DEFAULT NULL, `conteudo` longtext, `nome_url` varchar(255) DEFAULT NULL, `introducao` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `experiencias_internacionais` -- CREATE TABLE `experiencias_internacionais` ( `id` int(11) NOT NULL, `perfis_candidato_id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `descricao` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `experiencias_internacionais` -- INSERT INTO `experiencias_internacionais` (`id`, `perfis_candidato_id`, `titulo`, `descricao`) VALUES (1, 2, 'Havard EUA', 'Faculdade de Direito'), (2, 21, 'asd', 'asd'), (3, 35, 'Teste', 'Experiencia 1'), (4, 44, 'mandela', 'experiencia'); -- -------------------------------------------------------- -- -- Estrutura da tabela `forum_topicos` -- CREATE TABLE `forum_topicos` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `data` bigint(20) DEFAULT NULL, `perfis_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `forum_topicos` -- INSERT INTO `forum_topicos` (`id`, `titulo`, `data`, `perfis_id`) VALUES (37, 'hello world!', 1497989515, 3), (40, 'novo', 1497991891, 3), (41, 'teste', 1497994139, 5), (46, 'pode criar?', 1498069371, 3), (49, 'hello world!', 1498079582, 6), (52, 'Teste ', 1498150598, 6), (55, 'O que vocês acham da lavajato?', 1498169234, 3), (57, 'dasda', 1498243974, 6); -- -------------------------------------------------------- -- -- Estrutura da tabela `forum_topicos_respostas` -- CREATE TABLE `forum_topicos_respostas` ( `id` int(11) NOT NULL, `resposta` mediumtext NOT NULL, `data` bigint(20) DEFAULT NULL, `forum_topicos_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `id_citacao` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `forum_topicos_respostas` -- INSERT INTO `forum_topicos_respostas` (`id`, `resposta`, `data`, `forum_topicos_id`, `perfis_id`, `id_citacao`) VALUES (121, 'Esse é o fórum do momento!', 1497989515, 37, 6, NULL), (122, '<blockquote><p>Esse é o fórum do momento!</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p><ul><li>ok</li><li>correto&nbsp;</li><li>lista</li><li>ok</li></ul><ol><li>kkkkkk</li><li>çççççç</li><li>asdasdas</li></ol><h1><ol><li>sadasdasdasd</li></ol></h1></p>', 1497989619, 37, 1, NULL), (123, '<blockquote><blockquote><p>Esse é o fórum do momento!</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><ul><li>ok</li><li>correto&nbsp;</li><li>lista</li><li>ok</li></ul><ol><li>kkkkkk</li><li>çççççç</li><li>asdasdas</li></ol><h1><ol><li>sadasdasdasd</li></ol></h1><p class="escritoPor" style="display: none;"> Escrito por: Marcos Vinicius</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=1"> Escrito por: Marcos Vinicius</a></em></blockquote><p>ok!</p>', 1497989695, 37, 6, NULL), (125, '<blockquote><p></p><blockquote><blockquote><p>Esse é o fórum do momento!</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><ul><li>ok</li><li>correto&nbsp;</li><li>lista</li><li>ok</li></ul><ol><li>kkkkkk</li><li>çççççç</li><li>asdasdas</li></ol><h1><ol><li>sadasdasdasd</li></ol></h1><p class="escritoPor" style="display: none;"> Escrito por: Marcos Vinicius</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=1"> Escrito por: Marcos Vinicius</a></em></blockquote><p>ok!</p><p></p><div class="escritoPor" style="display: none;"> Escrito por: herberth</div><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote>', 1497990259, 37, 6, NULL), (127, 'avião para salinas, o que vcs acham ?', 1497991891, 40, 6, NULL), (128, 'muito<p><br></p>', 1497991912, 40, 3, NULL), (129, 'testesss', 1497994139, 41, 5, NULL), (130, '<blockquote><p>testesss</p><p class="escritoPor" style="display: none;"> Escrito por: Jardel Nathan</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=5"> Escrito por: Jardel Nathan</a></em></blockquote><p>adadsasda</p>', 1497994286, 41, 6, NULL), (131, '<blockquote><p></p><blockquote><p></p><blockquote><blockquote><p>Esse é o fórum do momento!</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><ul><li>ok</li><li>correto&nbsp;</li><li>lista</li><li>ok</li></ul><ol><li>kkkkkk</li><li>çççççç</li><li>asdasdas</li></ol><h1><ol><li>sadasdasdasd</li></ol></h1><p class="escritoPor" style="display: none;"> Escrito por: Marcos Vinicius</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=1"> Escrito por: Marcos Vinicius</a></em></blockquote><p>ok!</p><p></p><div class="escritoPor" style="display: none;"> Escrito por: herberth</div><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p></p><div class="escritoPor" style="display: none;"> Escrito por: herberth</div><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote>', 1497998036, 37, 6, NULL), (132, 'adsasda', 1497998122, 37, 6, NULL), (140, '223asdas', 1498000049, 37, 6, NULL), (142, 'aaaadsda', 1498069371, 46, 3, NULL), (143, '<blockquote><p>muito</p><br><p class="escritoPor" style="display: none;"> Escrito por: Getúlio Dornelles Vargas</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=3"> Escrito por: Getúlio Dornelles Vargas</a></em></blockquote><p>llallallalala</p>', 1498070714, 40, 6, NULL), (144, '<blockquote><blockquote><p>muito</p><br><p class="escritoPor" style="display: none;"> Escrito por: Getúlio Dornelles Vargas</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=3"> Escrito por: Getúlio Dornelles Vargas</a></em></blockquote><p>llallallalala</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p>asdasdasda</p>', 1498070735, 40, 6, NULL), (164, 'OI! companheiros!', 1498079582, 49, 6, NULL), (170, '<blockquote><p>aaaadsda</p><p class="escritoPor" style="display: none;"> Escrito por: Getúlio Dornelles Vargas</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=3"> Escrito por: Getúlio Dornelles Vargas</a></em></blockquote><p>mito!</p><p><br></p>', 1498080554, 46, 6, NULL), (171, 'oi', 1498147780, 46, 6, NULL), (172, '<blockquote><p>oi</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p>tudo bem ?</p><p><br></p><blockquote><p></p><blockquote><p>aaaadsda</p><p class="escritoPor" style="display: none;"> Escrito por: Getúlio Dornelles Vargas</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=3"> Escrito por: Getúlio Dornelles Vargas</a></em></blockquote><p>mito!</p><p><br></p><p></p><div class="escritoPor" style="display: none;"> Escrito por: herberth</div><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote>', 1498147812, 46, 6, NULL), (173, '<blockquote><span style="color: rgb(112, 112, 112); font-size: 15px; background-color: rgb(248, 248, 248);">tudo bem ?</span><br></blockquote>', 1498147873, 46, 6, NULL), (174, 'asdasdas', 1498150169, 49, 6, NULL), (176, '<blockquote>vvvvvvvvvvvvvvvvv</blockquote>', 1498150353, 49, 6, NULL), (178, 'dfgdfg', 1498151595, 49, 6, NULL), (185, 'dd', 1498156338, 49, 6, NULL), (187, '<blockquote><p>oi</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p>teste citar</p>', 1498156670, 46, 6, NULL), (194, '<blockquote><blockquote><p>oi</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p>teste citar</p><p class="escritoPor" style="display: none;"> Escrito por: herberth</p><em style="font-size:13px;"><a href="http://tectotum60-pc/meritus/perfil?id=6"> Escrito por: herberth</a></em></blockquote><p><br></p>', 1498157700, 46, 6, NULL), (196, 'Lula foi indiciado nesta sexta feira.. o que vocês acham, estou elaborando um projeto de lei que irá acelerar este processo, pensando no bem do nosso país... dê seu comentário', 1498169234, 55, 3, NULL), (197, 'Por mim todos devem ser presos... cadeia neles...', 1498169297, 55, 2, NULL), (198, 'asdas<p><br></p>', 1498236081, 52, 6, NULL), (199, 'ee', 1498236086, 52, 6, NULL), (200, 'ttttt', 1498236092, 52, 6, NULL), (201, 'yyy', 1498236098, 52, 6, NULL), (202, 'ttt', 1498236104, 52, 6, NULL), (203, 'dsff', 1498236109, 52, 6, NULL), (204, '444', 1498236116, 52, 6, NULL), (205, 'aaaa', 1498236123, 52, 6, NULL), (206, 'eee', 1498236131, 52, 6, NULL), (207, 'r', 1498243282, 49, 6, NULL), (213, 'teste', 1498245086, 57, 6, NULL), (214, 'asdasd', 1498245103, 57, 6, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `fotos_galerias` -- CREATE TABLE `fotos_galerias` ( `id` int(11) NOT NULL, `galerias_id` int(11) NOT NULL, `imagem` varchar(40) DEFAULT NULL, `small_thumb` varchar(40) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `galerias` -- CREATE TABLE `galerias` ( `id` int(11) NOT NULL, `imagem` varchar(40) NOT NULL, `titulo` text, `nome_url` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `graus_formacao` -- CREATE TABLE `graus_formacao` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `graus_formacao` -- INSERT INTO `graus_formacao` (`id`, `descricao`) VALUES (1, 'Sem escolaridade'), (2, 'Fundamental completo'), (3, 'Fundamental incompleto'), (4, 'Médio completo'), (5, 'Médio incompleto'), (6, 'Superior completo'), (7, 'Superior incompleto'), (8, 'Pós-graduação (Lato sensu) - Incompleto'), (9, 'Pós-graduação (Lato senu) - Completo'), (10, 'Pós-graduação (Stricto sensu, nível mestrado) - Incompleto'), (11, 'Pós-graduação (Stricto sensu, nível mestrado) - Completo'), (12, 'Pós-graduação (Stricto sensu, nível doutor) - Incompleto'), (13, 'Pós-graduação (Stricto sensu, nível doutor) - Completo'); -- -------------------------------------------------------- -- -- Estrutura da tabela `itens_enquete` -- CREATE TABLE `itens_enquete` ( `id` int(11) NOT NULL, `texto_item` text, `enquete_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `itens_enquete` -- INSERT INTO `itens_enquete` (`id`, `texto_item`, `enquete_id`) VALUES (2, 'Sim', 14), (3, 'Não', 14), (4, 'Sem Opinião', 14), (5, '123', 15), (6, '123', 15), (18, 'Sim', 38), (19, 'Não', 38), (20, 'Talvez', 38), (21, 'Sim', 39), (22, 'Nao ', 39), (23, 'Só em casos extremos', 39), (24, 'Talvez', 39); -- -------------------------------------------------------- -- -- Estrutura da tabela `itens_enquete_respostas` -- CREATE TABLE `itens_enquete_respostas` ( `id` int(11) NOT NULL, `itens_enquete_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `itens_enquete_respostas` -- INSERT INTO `itens_enquete_respostas` (`id`, `itens_enquete_id`, `perfis_id`, `data`) VALUES (5, 3, 6, '2017-07-19 09:40:18'), (6, 6, 6, NULL), (7, 5, 5, '2017-07-19 09:58:48'), (27, 4, 3, '2017-07-19 13:38:59'), (30, 3, 5, '2017-07-20 09:11:58'), (31, 19, 5, '2017-07-20 10:57:40'), (32, 18, 37, '2017-07-20 11:57:51'), (33, 23, 5, '2017-07-20 11:57:59'), (34, 23, 3, '2017-07-20 13:00:43'), (35, 21, 6, '2017-07-20 13:00:58'), (36, 2, 32, '2017-07-20 15:23:22'), (38, 4, 45, '2017-07-21 17:48:13'), (39, 2, 53, '2017-07-25 10:22:25'), (40, 3, 54, '2017-07-25 11:00:38'), (41, 2, 37, '2017-07-27 10:10:20'); -- -------------------------------------------------------- -- -- Estrutura da tabela `log_intencoes_voto` -- CREATE TABLE `log_intencoes_voto` ( `id` int(11) NOT NULL, `status` int(11) DEFAULT NULL COMMENT '1 - Deu intenção de voto, 0 - Removeu intenção de voto', `data` bigint(20) DEFAULT NULL, `perfis_id_candidato` int(11) NOT NULL, `perfis_id_usuario` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `log_intencoes_voto` -- INSERT INTO `log_intencoes_voto` (`id`, `status`, `data`, `perfis_id_candidato`, `perfis_id_usuario`) VALUES (60, 1, 1496694599, 3, 1), (61, 1, 1496696000, 3, 2), (62, 1, 1496764149, 3, 3), (63, 0, 1496764151, 3, 3), (64, 1, 1496764157, 3, 3), (65, 0, 1496841681, 3, 2), (66, 1, 1496841682, 3, 2), (67, 0, 1496841682, 3, 2), (68, 1, 1496841683, 3, 2), (69, 1, 1496941118, 3, 5), (70, 0, 1497020378, 3, 3), (71, 1, 1497020379, 3, 3), (72, 1, 1498760286, 8, 8), (73, 0, 1498760288, 8, 8), (74, 0, 1499354045, 3, 1), (75, 1, 1499354048, 3, 1), (76, 0, 1499354051, 3, 1), (77, 1, 1499359333, 3, 1), (78, 1, 1499359690, 8, 5), (79, 0, 1499359692, 8, 5), (80, 1, 1499359694, 8, 5), (81, 0, 1499359695, 8, 5), (82, 1, 1499359697, 8, 5), (83, 1, 1499360513, 6, 5), (84, 0, 1499362612, 8, 5), (85, 0, 1499362629, 3, 5), (86, 0, 1499362629, 3, 5), (87, 1, 1499362634, 3, 5), (88, 0, 1499362647, 3, 5), (89, 1, 1499363663, 3, 5), (90, 0, 1499363685, 3, 5), (91, 1, 1499363815, 3, 5), (92, 0, 1499363816, 3, 5), (93, 1, 1499363819, 3, 5), (94, 0, 1499363958, 3, 5), (95, 1, 1499364150, 3, 5), (96, 0, 1499364223, 3, 5), (97, 1, 1499364232, 8, 5), (98, 0, 1499364344, 3, 1), (99, 1, 1499364347, 3, 1), (100, 1, 1499364365, 3, 6), (101, 0, 1499364402, 3, 6), (102, 1, 1499364405, 3, 6), (103, 0, 1499364531, 3, 1), (104, 1, 1499364535, 3, 1), (105, 1, 1499364615, 3, 1), (106, 1, 1502043104, 3, 1), (107, 1, 1502043239, 3, 7), (108, 1, 1499365527, 6, 6), (109, 0, 1499365562, 3, 6), (110, 1, 1499365565, 3, 6), (111, 0, 1499426853, 6, 6), (112, 1, 1499429395, 3, 5), (113, 0, 1499429432, 3, 5), (114, 1, 1499429444, 3, 5), (115, 1, 1499431008, 30, 5), (116, 1, 1499431027, 6, 5), (117, 1, 1499431034, 7, 5), (118, 1, 1499431059, 29, 5), (119, 1, 1499689127, 6, 1), (120, 1, 1499689724, 8, 3), (121, 0, 1499689726, 8, 3), (122, 1, 1499711201, 7, 1), (123, 1, 1499776071, 3, 2), (124, 0, 1499776072, 3, 2), (125, 1, 1499776075, 3, 2), (126, 0, 1499784053, 30, 5), (127, 1, 1499784055, 30, 5), (128, 0, 1499784163, 30, 5), (129, 1, 1499784165, 30, 5), (130, 0, 1499784244, 30, 5), (131, 1, 1499784245, 30, 5), (132, 0, 1499784311, 30, 5), (133, 1, 1499784312, 30, 5), (134, 0, 1499784316, 30, 5), (135, 1, 1499784318, 30, 5), (136, 0, 1499784324, 30, 5), (137, 1, 1499784326, 30, 5), (138, 0, 1499784330, 30, 5), (139, 1, 1499784331, 30, 5), (140, 0, 1499785224, 3, 5), (141, 1, 1499785226, 3, 5), (143, 0, 1499964355, 3, 1), (144, 1, 1499964359, 3, 1), (145, 0, 1499964397, 3, 1), (146, 1, 1499964399, 3, 1), (147, 1, 1500046425, 6, 6), (148, 1, 1500391117, 5, 5), (149, 1, 1500391302, 5, 3), (150, 1, 1500391380, 6, 3), (151, 1, 1500482457, 8, 8), (152, 1, 1500554871, 36, 36), (153, 0, 1500556715, 36, 36), (154, 1, 1500556718, 36, 36), (155, 0, 1500556742, 36, 36), (156, 1, 1500556796, 36, 36), (157, 0, 1500556798, 36, 36), (158, 1, 1500556840, 36, 36), (159, 0, 1500556843, 36, 36), (160, 1, 1500556851, 36, 36), (161, 1, 1500559537, 3, 36), (162, 0, 1500559672, 3, 36), (163, 1, 1500560173, 3, 36), (164, 1, 1500562428, 3, 37), (165, 0, 1500570050, 3, 3), (166, 1, 1500570052, 3, 3), (167, 0, 1500661067, 30, 5), (168, 1, 1500661069, 30, 5), (169, 0, 1500670649, 3, 2), (170, 1, 1500993674, 7, 6), (171, 1, 1501085296, 37, 37), (172, 1, 1501085323, 30, 37), (173, 1, 1501097858, 8, 56), (174, 1, 1501161103, 8, 37), (175, 1, 1501163501, 6, 37), (176, 0, 1501163503, 6, 37), (177, 1, 1501247967, 8, 2), (178, 1, 1501254856, 57, 6), (179, 0, 1501254884, 57, 6), (180, 1, 1501255488, 57, 6), (181, 0, 1501258639, 57, 6), (182, 1, 1501258649, 57, 6), (183, 0, 1501261010, 57, 6), (184, 1, 1501261012, 57, 6), (185, 0, 1501261036, 57, 6), (186, 1, 1501261049, 57, 6), (187, 0, 1501261072, 57, 6), (188, 1, 1501261074, 57, 6), (189, 0, 1501261081, 57, 6), (190, 1, 1501261083, 57, 6), (191, 0, 1501261134, 57, 6), (192, 1, 1501261141, 57, 6), (193, 0, 1501261332, 57, 6), (194, 1, 1501261334, 57, 6), (195, 0, 1501261341, 57, 6), (196, 1, 1501261343, 57, 6), (197, 0, 1501261374, 57, 6), (198, 1, 1501261376, 57, 6), (199, 0, 1501261419, 57, 6), (200, 1, 1501261420, 57, 6), (201, 0, 1501262002, 57, 6), (202, 1, 1501262003, 57, 6), (203, 0, 1501262392, 57, 6), (204, 0, 1501262893, 57, 6), (205, 1, 1501262896, 57, 6), (206, 0, 1501263196, 57, 6), (207, 1, 1501263198, 57, 6), (208, 0, 1501263258, 57, 6), (209, 1, 1501263259, 57, 6), (210, 0, 1501264157, 57, 6), (211, 1, 1501264162, 57, 6), (212, 0, 1501264187, 57, 6), (213, 1, 1501264191, 57, 6), (214, 0, 1501264738, 57, 6), (215, 1, 1501264740, 57, 6), (216, 0, 1501264791, 57, 6), (217, 1, 1501264830, 57, 6), (218, 0, 1501264910, 57, 6), (219, 1, 1501264912, 57, 6), (220, 0, 1501265211, 57, 6), (221, 1, 1501265218, 57, 6), (222, 1, 1501265259, 57, 6), (223, 0, 1501265811, 57, 6), (224, 1, 1501265814, 57, 6), (225, 0, 1501265945, 57, 6), (226, 1, 1501265947, 57, 6), (227, 0, 1501265978, 57, 6), (228, 1, 1501265980, 57, 6), (229, 1, 1501266445, 57, 6), (230, 0, 1501266472, 57, 6), (231, 1, 1501266474, 57, 6), (232, 0, 1501266604, 57, 6), (233, 1, 1501266606, 57, 6), (234, 0, 1501266618, 57, 6), (235, 1, 1501266654, 57, 6), (236, 0, 1501266703, 57, 6), (237, 1, 1501266705, 57, 6), (238, 0, 1501266814, 57, 6), (239, 1, 1501266823, 57, 6), (240, 0, 1501266842, 57, 6), (241, 1, 1501266868, 57, 6), (242, 1, 1501266974, 57, 6), (243, 0, 1501267022, 57, 6), (244, 1, 1501267024, 57, 6), (245, 1, 1501267085, 58, 5), (246, 0, 1501267844, 57, 6), (247, 1, 1501267850, 57, 6), (248, 0, 1501267988, 57, 6), (249, 1, 1501268002, 57, 6), (250, 1, 1501268695, 37, 5), (251, 0, 1501268698, 37, 5), (252, 1, 1501268704, 7, 5), (253, 1, 1501278535, 8, 6), (254, 1, 1501282122, 6, 2), (255, 1, 1501503685, 8, 5), (256, 1, 1501504357, 30, 5), (257, 1, 1501504517, 6, 5), (258, 1, 1501510030, 62, 62), (259, 1, 1501511770, 30, 6), (260, 1, 1501514109, 5, 6), (261, 0, 1501514122, 5, 6), (262, 1, 1501514125, 5, 6), (263, 0, 1501526140, 30, 5), (264, 1, 1501526143, 30, 5), (265, 0, 1501526203, 30, 5), (266, 1, 1501526208, 30, 5); -- -------------------------------------------------------- -- -- Estrutura da tabela `meritadores_perfil` -- CREATE TABLE `meritadores_perfil` ( `id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL, `perfis_id` int(11) NOT NULL, `perfis_id_amigo` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `meritadores_perfil` -- INSERT INTO `meritadores_perfil` (`id`, `data`, `perfis_id`, `perfis_id_amigo`) VALUES (27, 1501511275, 3, 8), (29, 1501511443, 3, 32), (30, 1501511491, 3, 30), (33, 1501511832, 6, 30), (40, 1501516329, 6, 5); -- -------------------------------------------------------- -- -- Estrutura da tabela `news_letter` -- CREATE TABLE `news_letter` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `noticias` -- CREATE TABLE `noticias` ( `id` int(11) NOT NULL, `imagem` varchar(40) DEFAULT NULL, `titulo` text, `conteudo` longtext, `data` bigint(20) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `introducao` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `noticias` -- INSERT INTO `noticias` (`id`, `imagem`, `titulo`, `conteudo`, `data`, `nome_url`, `introducao`) VALUES (3, 'e6a8445f6e64a4e0e9c76af73a2f7812.png', 'Notícia um', '<p><span style="font-family: "Open Sans", Arial, sans-serif; font-size: 14px; text-align: justify;">Sed vitae facilisis dui, ut suscipit eros. Etiam ut convallis arcu. Nullam et tortor vel purus luctus pellentesque sit amet a nisl. Nullam tempor dolor id massa blandit, nec faucibus nunc accumsan. Duis finibus augue vel nisl pellentesque eleifend. Suspendisse sed tincidunt nulla. Nulla ut mauris non nulla condimentum lobortis eu a neque. Cras vel urna commodo, dapibus quam at, varius eros. Nam vel nulla at metus elementum lobortis rhoncus in ligula. Aliquam vulputate, sapien in egestas bibendum, augue nulla consequat enim, ut rhoncus lacus dolor et leo. Etiam mollis venenatis volutpat. Fusce dapibus, urna in sagittis laoreet, sapien sem molestie nulla, at lacinia metus nunc a dolor. Nullam consequat fringilla scelerisque. Praesent ac risus enim. Vivamus mattis vulputate leo, sit amet iaculis nunc molestie a.</span><br></p>', 1499966485, 'noticia-um', NULL), (4, '34fd81bf9368d110d6cf8cc6a7475214.jpg', 'Est mollis veritatis qui penatibus odio cursus curae optio pariatur cubilia', '<p>Est mollis veritatis qui penatibus odio cursus curae optio pariatur cubilia viverra commodo veritatis imperdiet doloribus, proin iste molestias fermentum vero ullamco nostrum perspiciatis nostrud hymenaeos wisi? Exercitation? Commodo rhoncus dis, ultricies pulvinar beatae omnis? Ligula sit dignissim sequi eligendi eveniet incidunt, enim expedita repellendus. Voluptas eius lacus natus dui molestias, potenti, dolore sapien maiores cras, etiam eveniet mattis enim nostrum morbi volutpat, dictum? Assumenda proin, fames nam euismod leo excepteur ultrices? Dolor nam consequatur molestiae inventore delectus explicabo, ad exercitationem senectus sagittis dictumst, hendrerit semper quia, magni, voluptas porta quidem eaque placerat sapiente incididunt quae accusamus vitae, reprehenderit facere.</p><p>noticia</p><p>Eum neque bibendum viverra excepteur commodo pretium conubia quis risus accumsan quasi molestias blandit mus. Iaculis cillum quas. Repellat soluta. Autem excepteur occaecat eius, est, nemo fugiat, voluptatibus phasellus magnis pariatur pretium accusamus provident, esse aptent, nostra etiam tristique, conubia condimentum feugiat optio nascetur! Eius, lorem soluta mus! Sociis mus voluptate egestas error lacinia ullamcorper. Minus, animi fringilla luctus provident dolores wisi torquent eum quis montes praesentium quia aute posuere, nemo odio? Soluta inceptos odit, mus, laudantium venenatis soluta qui, accusantium, inceptos quas proident! Morbi minim felis adipisicing, reiciendis in incidunt habitasse wisi, magni mollis ipsam! Quisquam autem laudantium facilis.</p><p><br></p><p>Iusto aptent dapibus tortor? Facere porro? Tristique, adipiscing egestas tempus, hac habitant, deleniti dolor curabitur cupidatat. Lobortis nisl viverra molestie deserunt mauris netus consequat nihil asperiores parturient adipisci occaecat posuere tristique diam ex per anim duis, lectus aliqua sagittis omnis, nec fames quam class urna per orci congue, odio quo magnam consequatur! Facilis? Posuere aperiam. Veritatis voluptas ultricies enim error. Porta interdum adipisci iure venenatis a! Assumenda fuga! Suspendisse saepe amet occaecat? Mi similique, molestie esse arcu, tempora, quia nemo asperiores incididunt rerum leo, curabitur at molestie metus porttitor, magnam! Nibh delectus mauris! Irure? Aperiam, porttitor, perferendis veniam euismod blandit.</p>', 1500492008, 'est-mollis-veritatis-qui-penatibus-odio-cursus-curae-optio-pariatur-cubilia-1', NULL), (5, '20f8b71bf3a7bc995a92fc008ed51844.png', ' eaque curae? Ornare possimus alias cillum nonummy, aspernatur, convallis? ', '<p>Dignissim aute itaque? Reiciendis! Enim sequi voluptatem, tempora eos faucibus nonummy a, nulla fusce, dui quas magnis ex pariatur sit, nostra? Corrupti odio commodo culpa voluptates reprehenderit justo harum est tristique ultricies et nunc quis repellat potenti pharetra? Facere quo cras pretium natoque nostra! Fames cubilia mollis dolores, impedit eligendi ornare magni? Proident, inventore nisl, nihil. Elit laborum fringilla accumsan! Platea porttitor litora, voluptates, placerat elementum, libero cillum unde elementum, illo dicta explicabo autem suscipit praesentium autem, montes, eaque curae? Ornare possimus alias cillum nonummy, aspernatur, convallis? Eget adipisci ullamco iste asperiores adipisicing dictum omnis lobortis, consequatur cumque aliqua ante.</p><p><br></p><p>Condimentum deleniti pharetra nostrud, placeat repellendus! Iure massa eveniet molestie doloribus lectus! Quae, augue nemo! Temporibus possimus hac? Tortor ipsam! Facilisi occaecat? Ultrices dis? Volutpat aenean, sociis eligendi aute, penatibus magna diam nisl, autem beatae egestas cubilia perferendis exercitation laboriosam scelerisque vero, deleniti pede, netus optio eos incididunt? Porttitor dignissim, faucibus nisi, aenean dolorum, ornare. Risus, mollis lorem eveniet quisque, aspernatur debitis, lorem lacus repudiandae torquent massa ipsum facilis aut? Voluptate id dolorum similique magna iste, dignissim porro ipsa aliquam, tristique voluptatum facere explicabo adipiscing eget atque molestie modi pharetra. Excepturi optio dolore, mattis magna ex, senectus sapien tenetur tempora.</p><p><br></p><p>Aspernatur magni illo montes. Ullam soluta autem repellendus, orci perspiciatis, lacinia culpa corrupti? Turpis etiam ullamco facilisis aperiam. Numquam aute ullamco veniam voluptatibus fugit, ridiculus. Natoque asperiores sapiente eveniet pariatur? Voluptatibus proident morbi doloribus. Doloribus, delectus. Varius ornare cursus ac facere nec exercitationem eligendi ipsa iusto euismod dolores, blandit pharetra fermentum alias tenetur! Nec nullam hac. Tempore, repudiandae dui deserunt, exercitationem magnam nibh vivamus dolorum class, ullamco temporibus curabitur occaecat class impedit corrupti eos wisi eget quae parturient inceptos mollis. Quod, justo dolorem commodi! Tincidunt reprehenderit sapiente nulla ullam molestie, nunc soluta ab inventore. Nonummy diamlorem unde hic, interdum. Error.</p>', 1500492070, 'eaque-curae-ornare-possimus-alias-cillum-nonummy-aspernatur-convallis', NULL), (6, 'e6e13fbe3e9c1fb363605c6e3aa233c0.jpg', 'Quidem cillum integer cras, venenatis laborum', '<p>Sapien! Posuere, ornare mi luctus veritatis, commodi itaque facilisis modi? Dolorem. Occaecati, culpa nullam pede pulvinar risus? Quasi condimentum minim mauris? Condimentum, arcu a, eum, quaerat, occaecat, magnis. Reiciendis urna? Luctus enim voluptatum sequi iure impedit? Dictum feugiat velit tristique? Sapien deleniti? Cumque dolorem elit occaecati consequatur, maecenas, pede proident montes nonummy facere tortor, corrupti conubia sed tempus, fugiat consequatur. Magnis possimus, quasi platea saepe vel! Nullam repellendus, illo, turpis! Magnam incidunt! Viverra dictumst sequi. Fames! Quas, nascetur delectus! Perspiciatis, dolore taciti facilis habitant? Quidem cillum integer cras, venenatis laborum, aliquam etiam mauris cras duis assumenda, cras ration<span style="color: rgb(0, 0, 0); font-family: &quot;open sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Quidem cillum integer cras, venenatis laborum, aliquam etiam mauris cras duis assumenda, cras ration</span>e, ullamco litora.</p><p><br></p><p>Aspernatur laudantium aliquip! Labore! Voluptatibus expedita litora provident nemo officiis nunc libero nesciunt primis torquent? Error, sequi egestas varius ipsam, quos augue quasi, nisl felis molestias ducimus autem aliquip facere, voluptas hendrerit, similique corrupti curabitur aptent ea vulputate. Wisi pulvinar eget hendrerit, proin elit viverra malesuada excepturi voluptates quisquam, lacus. Quibusdam torquent! Amet cumque? Hac reprehenderit tincidunt phasellus, velit fames non delectus provident vero morbi soluta, nisl per eiusmod. Iure suscipit necessitatibus! Eum molestiae est commodo occaecati habitasse urna quisquam? Phasellus! Voluptatibus iure voluptates. Quaerat sodales tempor! Aliqua, quis mattis! Arcu consequatur voluptatem voluptatibus cillum aspernatur, pariatur fusce vero. Distinctio.</p><p><br></p><p>Mollit habitant tempore praesentium quibusdam euismod augue iure optio vehicula laboriosam aliqua, commodi ut voluptatibus? Inventore, dolor, hic, fusce sagittis taciti sapien placeat commodi minus quisque aliquet? Fugit cubilia nisi! Tristique voluptatum dolorum qui libero deserunt beatae montes nulla voluptas bibendum auctor lectus delectus sunt irure iaculis qui! Placerat fugiat. Nobis, aliqua ultricies magnis, incidunt, placerat posuere tortor fugiat repellendus, vivamus, a deserunt exercitationem aute nibh, incididunt laborum, fuga morbi cupiditate ligula aut rhoncus. Totam egestas, ridiculus aliquip expedita dolor consectetuer? Hic iure fermentum, nullam, saepe massa voluptatum et sed suscipit urna similique inventore adipisicing mollis, donec, incidunt? Euismod suspendisse.</p>', 1500492116, 'quidem-cillum-integer-cras-venenatis-laborum', NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `noticias_comentarios` -- CREATE TABLE `noticias_comentarios` ( `id` int(11) NOT NULL, `comentario` mediumtext, `noticias_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `noticias_comentarios` -- INSERT INTO `noticias_comentarios` (`id`, `comentario`, `noticias_id`, `perfis_id`, `data`) VALUES (1, 'teste\r\n', 6, 1, 1501507743); -- -------------------------------------------------------- -- -- Estrutura da tabela `noticias_comentarios_respostas` -- CREATE TABLE `noticias_comentarios_respostas` ( `id` int(11) NOT NULL, `comentario` mediumtext, `comentarios_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `noticias_comentarios_respostas` -- INSERT INTO `noticias_comentarios_respostas` (`id`, `comentario`, `comentarios_id`, `perfis_id`, `data`) VALUES (1, 'resp teste', 1, 1, 1501507939); -- -------------------------------------------------------- -- -- Estrutura da tabela `paises` -- CREATE TABLE `paises` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `paises` -- INSERT INTO `paises` (`id`, `descricao`) VALUES (1, 'Brasil'), (2, 'Estados Unidos'); -- -------------------------------------------------------- -- -- Estrutura da tabela `partidos` -- CREATE TABLE `partidos` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `partidos` -- INSERT INTO `partidos` (`id`, `descricao`) VALUES (1, 'PT'), (2, 'PMDB'), (3, 'PSDB'), (4, 'PTB'), (5, 'PDT'), (6, 'DEM'), (7, 'PCdoB'), (8, 'PSB'), (9, 'PTC'), (10, 'PSC'), (11, 'PMN'), (12, 'PRP'), (13, 'PPS'), (14, 'PV'), (15, 'PTdoB'), (16, 'PP'), (17, 'PSTU'), (18, 'PCB'), (19, 'PRTB'), (20, 'PHS'), (21, 'PSDC'), (22, 'PCO'), (23, 'PODE'), (24, 'PSL'), (25, 'PRB'), (26, 'PSOL'), (27, 'PR'), (28, 'PSD'), (29, 'PPL'), (30, 'PEN'), (31, 'PROS'), (32, 'SD'), (33, 'NOVO'), (34, 'REDE'), (35, 'PMB'); -- -------------------------------------------------------- -- -- Estrutura da tabela `patrimonio_declarado` -- CREATE TABLE `patrimonio_declarado` ( `id` int(11) NOT NULL, `perfis_candidato_id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `valor` decimal(10,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `patrimonio_declarado` -- INSERT INTO `patrimonio_declarado` (`id`, `perfis_candidato_id`, `descricao`, `valor`) VALUES (2, 4, 'nada', '151.00'), (6, 18, 'asd', '123.67'), (10, 19, 'Um hotel', '99999999.99'), (11, 3, 'a123', '123.00'), (12, 44, 'Teste', '1234.00'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pedidos` -- CREATE TABLE `pedidos` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `produtos_id` int(11) NOT NULL, `quantidade` int(11) DEFAULT NULL, `valor` decimal(10,2) NOT NULL, `valor_frete` decimal(8,2) NOT NULL, `valor_total` decimal(10,2) NOT NULL, `data` bigint(20) NOT NULL, `tipo_frete` varchar(10) DEFAULT NULL COMMENT '41106 - PAC\n40010 - SEDEX\n40215 - SEDEX10', `codigo_rastreio` varchar(10) DEFAULT NULL, `forma_pagamento` tinyint(1) NOT NULL COMMENT '1 - pagseguro\n2 - boleto', `tipo_pagamento` tinyint(1) DEFAULT NULL COMMENT '1 - Cartão de crédito\n2 - Boleto\n3 - Débito online\n4 - Saldo PagSeguro\n5 - Oi Paggo\n7 - Depósito em conta\n', `codigo_pedido` varchar(50) DEFAULT NULL, `status_pedido` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 - Pagamento não inicializado\n1 - Aguardando confirmacao do pagamento\n2 - Pago\n3 - Em Transporte\n4 - Finalizado\n9 - cancelado', `id_transacao` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `pedidos` -- INSERT INTO `pedidos` (`id`, `perfis_id`, `produtos_id`, `quantidade`, `valor`, `valor_frete`, `valor_total`, `data`, `tipo_frete`, `codigo_rastreio`, `forma_pagamento`, `tipo_pagamento`, `codigo_pedido`, `status_pedido`, `id_transacao`) VALUES (1, 1, 2, 5, '30.50', '23.00', '54.00', 0, '41106', NULL, 1, NULL, 'U1-5952571d2e368', 0, NULL), (12, 5, 2, 50, '30.50', '29.20', '1554.20', 0, '40010', '234', 1, NULL, 'U5-5952a0680beec', 2, NULL), (13, 1, 14, 2, '1000.00', '56.60', '2056.60', 0, '40010', NULL, 1, NULL, 'U1-5953a1bcd9478', 0, NULL), (14, 1, 2, 3, '30.50', '24.90', '116.40', 0, '40010', NULL, 1, NULL, 'U1-5953af02427b4', 0, NULL), (15, 1, 14, 10, '1000.00', '56.60', '10056.60', 0, '40010', NULL, 1, NULL, 'U1-5953af5adfa69', 0, NULL), (16, 1, 2, 1, '30.50', '24.90', '55.40', 0, '40010', NULL, 1, NULL, 'U1-5953dfca3ffbc', 0, NULL), (50, 1, 1, 1, '30.00', '22.00', '52.00', 0, '41106', NULL, 1, NULL, 'U1-597b3ada3b038', 0, NULL), (51, 1, 1, 1, '30.00', '22.00', '52.00', 0, '41106', NULL, 1, NULL, 'U1-597b3afe5c9f8', 0, NULL), (52, 1, 1, 1, '30.00', '22.00', '52.00', 20170728, '41106', '321654987', 1, NULL, 'U1-597b3b8d1a348', 1, NULL), (53, 1, 1, 1, '30.00', '22.00', '52.00', 0, '41106', NULL, 1, NULL, 'U1-597b3bb4b4c36', 0, NULL), (54, 1, 1, 1, '30.00', '22.00', '52.00', 20170728, '41106', NULL, 1, NULL, 'U1-597b3bfc17464', 0, NULL), (55, 61, 1, 1, '30.00', '25.70', '55.70', 2017, '41106', NULL, 1, NULL, 'U61-597b904f24f60', 0, NULL), (56, 5, 1, 3, '30.00', '23.60', '113.60', 2017, '41106', NULL, 1, NULL, 'U5-597f3c7564db8', 0, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfil_endereco` -- CREATE TABLE `perfil_endereco` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `cep` varchar(10) DEFAULT NULL, `rua` varchar(255) DEFAULT NULL, `numero` varchar(10) DEFAULT NULL, `complemento` varchar(50) DEFAULT NULL, `bairro` varchar(255) DEFAULT NULL, `cidade` varchar(255) DEFAULT NULL, `uf` varchar(2) DEFAULT NULL, `pais` varchar(255) DEFAULT NULL, `cidade_natal` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfil_endereco` -- INSERT INTO `perfil_endereco` (`id`, `perfis_id`, `cep`, `rua`, `numero`, `complemento`, `bairro`, `cidade`, `uf`, `pais`, `cidade_natal`) VALUES (1, 1, '39404-011', 'Rua República da Colômbia', '101', 'casa', 'Conjunto Residencial JK', 'Montes Claros', 'MG', NULL, NULL), (2, 3, '39400-101', 'Rua Cônego Marcos', '157', 'casa', 'Centro', 'Montes Claros', 'MG', NULL, NULL), (3, 2, '39401-001', 'Avenida Cula Mangabeira', '1538', '', 'Santo Expedito', 'Montes Claros', 'MG', NULL, NULL), (5, 5, '39594-000', 'Manoel Ferreira Silva', '31', '', 'Alto da Boa Vista', 'Itacambira', 'MG', NULL, NULL), (6, 4, '39400-364', 'Rua Gregório Veloso', '222', '', 'São José', 'Montes Claros', 'MG', NULL, NULL), (7, 30, '39594-000', 'Rua 1', '130', '', 'Centro', 'Montes Claros', 'SP', NULL, NULL), (8, 8, '39594000', 'Rua 1', '12', '', 'Centro', 'Itacambira', 'MG', NULL, NULL), (9, 32, '39401-001', 'Avenida Cula Mangabeira', '21', '', 'Santo Expedito', 'Montes Claros', 'MG', NULL, NULL), (10, 6, '49000-401', 'rua teste', '222', 'c', 'A dois', 'montes claros ', 'mg', NULL, NULL), (11, 37, '04859-230', 'Rua Anita Malfatti', '32', '', 'Jardim Alvorada (Zona Sul)', 'São Paulo', 'SP', NULL, NULL), (12, 60, '23088-390', 'Rua Anita Malfatti', '12', '', 'Campo Grande', 'Rio de Janeiro', 'RJ', NULL, NULL), (13, 61, '23088-390', 'Rua Anita Malfatti', '21', '', 'Campo Grande', 'Rio de Janeiro', 'RJ', NULL, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfis` -- CREATE TABLE `perfis` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `primeiro_nome` text, `ultimo_nome` text, `tipo` int(11) DEFAULT '1' COMMENT '1 - Perfil Usuário, 2 - Perfil Candidato', `sobre` mediumtext, `sexo` char(1) DEFAULT NULL, `profissoes_id` int(11) DEFAULT NULL, `graus_formacao_id` int(11) DEFAULT NULL, `cpf` varchar(45) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `senha` varchar(45) DEFAULT NULL, `foto_perfil` varchar(255) DEFAULT NULL, `foto_capa` varchar(255) DEFAULT NULL, `facebook` varchar(255) DEFAULT NULL, `twitter` varchar(255) DEFAULT NULL, `instagram` varchar(255) DEFAULT NULL, `linkedin` varchar(255) DEFAULT NULL, `token` varchar(255) NOT NULL, `data_nascimento` date DEFAULT NULL, `idiomas` text, `cidade_natal` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfis` -- INSERT INTO `perfis` (`id`, `nome`, `primeiro_nome`, `ultimo_nome`, `tipo`, `sobre`, `sexo`, `profissoes_id`, `graus_formacao_id`, `cpf`, `email`, `senha`, `foto_perfil`, `foto_capa`, `facebook`, `twitter`, `instagram`, `linkedin`, `token`, `data_nascimento`, `idiomas`, `cidade_natal`) VALUES (1, 'Marcos Vinicius', 'Marco', 'Vinicius', 1, '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"=""><strong>Marcos Vinicius</strong></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque dictum quam nunc, eu scelerisque nulla cursus sollicitudin. Etiam quis placerat elit. Aliquam ut convallis odio. Maecenas molestie tincidunt tempus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas accumsan mauris vel elementum condimentum. Curabitur quis dapibus orci. Fusce quis est id urna ultrices ullamcorper eu ut diam. Nam interdum dolor arcu, eu rhoncus ipsum elementum sit amet. Donec dapibus feugiat augue sed gravida.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"=""><strong>História</strong></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"="">Etiam elementum mauris ut velit feugiat, in dignissim tortor consequat. Mauris eleifend est neque, non iaculis dui mollis ut. Nunc vel lacus vel nisl vulputate iaculis pellentesque ac nulla. Ut dignissim lobortis turpis, vitae scelerisque eros. In hac habitasse platea dictumst. Vestibulum placerat, lacus quis hendrerit pellentesque, nunc dui vulputate sem, et blandit augue eros pharetra tellus. Curabitur facilisis in justo eu porta. Integer malesuada ullamcorper venenatis. Praesent placerat dui et auctor placerat. Fusce porta in dolor nec ullamcorper. Phasellus in venenatis risus. Cras tincidunt felis odio, sit amet convallis sapien fringilla ac. Pellentesque faucibus orci sed turpis fermentum efficitur. Pellentesque egestas lectus vitae orci scelerisque, ac gravida orci porta. Aliquam efficitur, lectus non consequat convallis, elit eros efficitur ipsum, in placerat velit magna eget massa.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"=""><strong>Currículo</strong></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"="">In sem nisl, ultrices a euismod sed, porta quis eros. Vivamus dapibus venenatis orci a euismod. Maecenas non turpis magna. Nulla venenatis egestas cursus. Phasellus gravida auctor enim, vel tristique lectus sollicitudin sed. Fusce posuere quam at fringilla luctus. Phasellus ac vehicula purus. Proin et purus porttitor tortor convallis vulputate. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent non lectus eros. Praesent tempus semper ante, a rhoncus turpis.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"="">Mauris ut aliquet lorem. Mauris ut tempor velit, volutpat imperdiet ex. Fusce consequat non velit vel feugiat. Suspendisse egestas imperdiet sapien, id placerat neque dapibus eu. Integer viverra est sed neque tristique egestas. Proin porta metus et libero euismod, eget pellentesque risus vehicula. Vestibulum eget fermentum lorem. Nullam libero neque, molestie in ornare eget, mollis sed magna. Morbi egestas lobortis commodo. Cras non odio rhoncus ante condimentum iaculis non venenatis risus. Suspendisse luctus pharetra lectus sed pellentesque. Etiam nec velit eleifend, finibus massa nec, hendrerit purus. Ut finibus convallis odio nec elementum. Donec eget metus placerat, fermentum magna nec, pulvinar mauris. Proin ac luctus elit. Cras ultrices finibus ullamcorper.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"=""><strong>Experiência</strong></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" background-color:="" rgb(255,="" 255,="" 255);"="">Curabitur in turpis elit. Pellentesque bibendum ultrices sem eget pharetra. In quis leo luctus, consequat velit vitae, pulvinar ligula. Integer eleifend feugiat est, vitae ultrices augue commodo ac. Curabitur cursus erat vel velit tristique tempus. Aliquam eu convallis erat. Nunc risus eros, vulputate vitae mi sed, auctor aliquam arcu. Integer sed nulla sed augue varius pulvinar ut vitae mi. Donec quis faucibus neque. Phasellus libero felis, accumsan id erat eleifend, iaculis efficitur velit.</p>', 'M', 1, 6, '115.800.856-28', '[email protected]', '202cb962ac59075b964b07152d234b70', 'marcos.jpg', 'c8fb68ab48639bec5282e9edf8968091.png', 'facebook.com', 'twitter.com', 'instagram.com', 'linkedin.com', '59b5990cf0a480f1c505a843edcef76be292e994', NULL, NULL, NULL), (2, 'Kennedy Rafael', 'Kennedy', 'Rafael', 1, NULL, 'M', 1, 1, '089.147.906-65', '[email protected]', '202cb962ac59075b964b07152d234b70', '123.jpg', 'capa_jair.jpg', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (3, 'Getúlio Dornelles Vargas', 'Getúlio', 'Vargas', 1, '<p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"=""><strong style="box-sizing: border-box; font-weight: bold;">Getúlio <br></strong></p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque dictum quam nunc, eu scelerisque nulla cursus sollicitudin. Etiam quis placerat elit. Aliquam ut convallis odio. Maecenas molestie tincidunt tempus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas accumsan mauris vel elementum condimentum. Curabitur quis dapibus orci. Fusce quis est id urna ultrices ullamcorper eu ut diam. Nam interdum dolor arcu, eu rhoncus ipsum elementum sit amet. Donec dapibus feugiat augue sed gravida.</p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"=""><strong style="box-sizing: border-box; font-weight: bold;">História</strong></p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"="">Etiam elementum mauris ut velit feugiat, in dignissim tortor consequat. Mauris eleifend est neque, non iaculis dui mollis ut. Nunc vel lacus vel nisl vulputate iaculis pellentesque ac nulla. Ut dignissim lobortis turpis, vitae scelerisque eros. In hac habitasse platea dictumst. Vestibulum placerat, lacus quis hendrerit pellentesque, nunc dui vulputate sem, et blandit augue eros pharetra tellus. Curabitur facilisis in justo eu porta. Integer malesuada ullamcorper venenatis. Praesent placerat dui et auctor placerat. Fusce porta in dolor nec ullamcorper. Phasellus in venenatis risus. Cras tincidunt felis odio, sit amet convallis sapien fringilla ac. Pellentesque faucibus orci sed turpis fermentum efficitur. Pellentesque egestas lectus vitae orci scelerisque, ac gravida orci porta. Aliquam efficitur, lectus non consequat convallis, elit eros efficitur ipsum, in placerat velit magna eget massa.</p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"=""><strong style="box-sizing: border-box; font-weight: bold;">Currículo</strong></p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"="">In sem nisl, ultrices a euismod sed, porta quis eros. Vivamus dapibus venenatis orci a euismod. Maecenas non turpis magna. Nulla venenatis egestas cursus. Phasellus gravida auctor enim, vel tristique lectus sollicitudin sed. Fusce posuere quam at fringilla luctus. Phasellus ac vehicula purus. Proin et purus porttitor tortor convallis vulputate. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent non lectus eros. Praesent tempus semper ante, a rhoncus turpis.</p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"="">Mauris ut aliquet lorem. Mauris ut tempor velit, volutpat imperdiet ex. Fusce consequat non velit vel feugiat. Suspendisse egestas imperdiet sapien, id placerat neque dapibus eu. Integer viverra est sed neque tristique egestas. Proin porta metus et libero euismod, eget pellentesque risus vehicula. Vestibulum eget fermentum lorem. Nullam libero neque, molestie in ornare eget, mollis sed magna. Morbi egestas lobortis commodo. Cras non odio rhoncus ante condimentum iaculis non venenatis risus. Suspendisse luctus pharetra lectus sed pellentesque. Etiam nec velit eleifend, finibus massa nec, hendrerit purus. Ut finibus convallis odio nec elementum. Donec eget metus placerat, fermentum magna nec, pulvinar mauris. Proin ac luctus elit. Cras ultrices finibus ullamcorper.</p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"=""><strong style="box-sizing: border-box; font-weight: bold;">Experiência</strong></p><p open="" style="box-sizing: border-box; margin: 0px 0px 15px; font-family: " varela="" round",="" helveticaneue,="" "helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 15px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" justify;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" padding:="" color:="" rgb(0,="" 0,="" 0);"="">Curabitur in turpis elit. Pellentesque bibendum ultrices sem eget pharetra. In quis leo luctus, consequat velit vitae, pulvinar ligula. Integer eleifend feugiat est, vitae ultrices augue commodo ac. Curabitur cursus erat vel velit tristique tempus. Aliquam eu convallis erat. Nunc risus eros, vulputate vitae mi sed, auctor aliquam arcu. Integer sed nulla sed augue varius pulvinar ut vitae mi. Donec quis faucibus neque. Phasellus libero felis, accumsan id erat eleifend, iaculis efficitur velit.</p>', 'M', 2, 6, '155.151.515-15', '[email protected]', '202cb962ac59075b964b07152d234b70', '73291f0628ae3a86b81a880ac1111385.png', 'capa_getulio.png', 'facebook.com', 'twitter.com', 'instagram0.com', 'linkedin.com', '', '1997-07-25', 'português', NULL), (4, 'Adler Guerra', 'Adler', 'Guerra', 1, 'Lorem temporibus eiusmod voluptate deleniti habitant tenetur aptent? Rutrum cursus metus facilis? Eleifend ea. Rhoncus nostrud, feugiat dolores! Quos mollis, non unde repellendus recusandae distinctio suspendisse mi animi! Commodo voluptas sapien fugiat perferendis dignissimos ducimus magnam distinctio habitasse perferendis nullam dis? Magnis porro mauris maxime hic, voluptates quasi aute molestias praesentium ', 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', '8a6dafac1da8e88b7af0fc9761841977.png', 'd8ec5175ffb39f4a06ddb134dfdfa21d.jpg', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (5, 'Jardel Nathan de Soura Rodrigues', 'Jardel', 'Nathan', 2, '', 'M', 2, 10, '134.002.416-01', '[email protected]', '202cb962ac59075b964b07152d234b70', '3d5861c9f437cb62b5f670bff05f99c3.jpg', '73291f0628ae3a86b81a880ac1444385.jpg', 'www.facebook.com/jardel.nathan', 'twitter.com/jardelnathan', '', 'linkedin.com', '9a93cd470dcfd6cad8e7d06fc82562df4b9c0f6a', '1997-05-22', '', 'itacambira'), (6, 'herberth', 'herberth', 'teste', 2, '', 'M', 1, NULL, '', '[email protected]', '202cb962ac59075b964b07152d234b70', 'eca9cba5774ca109a16ed14db988af94.jpg', 'addba79d3112fc9787d6fe8524f893f0.png', '', '', '', '', '', '0000-00-00', '', ''), (7, 'Teste', 'Teste', 'Teste', 2, NULL, 'F', 1, 3, '2312', '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (8, 'Obama', 'Barack', 'Obama', 2, NULL, 'M', NULL, 9, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', 'e651d5f96a4f26201ac57ddb1ad4552c.jpg', 'dc522dcb14a56d32389a3600ee6fa783.png', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (29, 'George Bush', 'George', 'Bush', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (30, 'Donald Trump', 'Donald', 'Trump', 2, '', 'M', 1, 2, '', '[email protected]', '202cb962ac59075b964b07152d234b70', '5a4f92c1a01b57b347df4f11c3affa2b.jpg', '4611aca2efacae79ac840f25960a5e19.jpg', '', '', '', '', '', '1982-02-15', '', NULL), (31, 'Eleitor', 'Eleitor', '', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (32, 'Michel Temer', 'Michel', 'Temer', 2, '', 'M', 1, 4, '113.213.215-31', '[email protected]', '202cb962ac59075b964b07152d234b70', '768eb6edc5a199a4aca313b189846490.jpg', NULL, '', '', '', '', '', NULL, NULL, NULL), (33, 'Tec 02', 'Tec', '02', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (34, 'Teste 5', 'Teste', '5', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (35, 'José Serra', 'José', 'Serrra', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (36, 'Magno Malta', 'Magno', 'Malta', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (37, 'Maria Do Rosário', 'Maria', 'Do Rosário', 2, '', 'F', 2, 3, '', '[email protected]', '202cb962ac59075b964b07152d234b70', 'e77c0d787bef20797266c618dc6970ae.jpeg', NULL, '', '', '', '', '', '1970-02-22', '', 'Minas'), (38, 'Perfil teste 3', 'Perfil', 'Perfil3', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (39, 'teste tec02', 'Teste', 'Tec02', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', 'e10adc3949ba59abbe56e057f20f883e', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (40, 'Teste Tectotum03', 'teste', 'Tectoum03', 1, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (41, 'Teste Tectotum03', 'Teste', 'Tectoum03', 1, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (42, 'Teste Tectotum03', 'Teste', 'Tectoum03', 1, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (43, 'Teste Tectotum03', 'Teste', 'Tectoum', 1, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (44, 'Teste tectotum', 'Teste', 'Tectoum', 2, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (45, 'teste email', 'Teste', 'Email', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, 'edb08c4613793e81ede26d42cf3c7b2f9105feea', NULL, NULL, NULL), (52, 'last', 'last', 'last', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (53, 'teste', 'teste', 'teste', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (54, 'teste2', 'teste2', 'teste', 2, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (55, 'Jardel Nathan', 'primeiro', 'ultimo', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (56, 'Tectotum TEcnologia 03', 'Tectotum ', 'teste03', 1, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (57, 'Jair Bolsonaro', 'Jair', 'Bolsonaro', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (58, 'Luiz Inácio Lula da Silva', 'Luiz', ' Silva', 2, NULL, 'M', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (59, NULL, 'Nome1', 'Nome2', 2, NULL, 'F', NULL, NULL, NULL, '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL), (60, 'Teste', 'teste', 'de nome', 2, '', 'M', 1, 1, '', '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, '', '', '', '', '', '0000-00-00', '', ''), (61, NULL, 'teste', 'nome', 2, '', 'M', NULL, NULL, '', '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, '', '', '', '', '', '0000-00-00', '', 'Montes Claros'), (62, 'Nelson', 'Nelson', 'Mandela', 2, '', 'M', 1, 8, '', '[email protected]', '202cb962ac59075b964b07152d234b70', NULL, NULL, '', '', '', '', '', '1918-07-18', '', ' Mvezo'); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfis_candidato` -- CREATE TABLE `perfis_candidato` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `partidos_id` int(11) DEFAULT NULL, `numero_empresas` int(11) DEFAULT NULL, `area_atuacao_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfis_candidato` -- INSERT INTO `perfis_candidato` (`id`, `perfis_id`, `partidos_id`, `numero_empresas`, `area_atuacao_id`) VALUES (2, 3, 1, 32, 4), (3, 7, 1, 1, 1), (4, 8, 1, 0, 4), (18, 29, NULL, NULL, NULL), (19, 30, 15, 0, 1), (20, 32, 15, 21, 4), (21, 4, 4, 1, 1), (32, 5, 17, 0, 3), (33, 35, NULL, NULL, NULL), (34, 36, NULL, NULL, NULL), (35, 37, 18, 0, 3), (37, 2, NULL, NULL, NULL), (38, 55, NULL, NULL, NULL), (39, 57, NULL, NULL, NULL), (40, 58, NULL, NULL, NULL), (41, 59, NULL, NULL, NULL), (42, 2, 2, 0, 1), (43, 61, NULL, 0, NULL), (44, 62, NULL, 0, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfis_candidato_acoes_extracurriculares` -- CREATE TABLE `perfis_candidato_acoes_extracurriculares` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `descricao_completa` mediumtext, `perfis_candidato_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfis_candidato_acoes_extracurriculares` -- INSERT INTO `perfis_candidato_acoes_extracurriculares` (`id`, `titulo`, `descricao_completa`, `perfis_candidato_id`) VALUES (2, 'Formado em Direito', 'Descrição das açoes extra curriculares', 2), (3, 'Intercâmbio na França', 'Etiam posuere quam ac quam. Maecenas aliquet accumsan leo. Nullam dapibus fermentum ipsum. Etiam quis quam. Integer lacinia. Nulla est. Nulla turpis magna, cursus sit amet, suscipit a, interdum id, felis. Integer vulputate sem a nibh rutrum consequat. Maecenas lorem. Pellentesque pretium', 2), (5, 'Participou da Guerra dos farrapos', 'Maecenas ipsum velit, consectetuer eu, lobortis ut, dictum at, dui. In rutrum. Sed ac dolor sit amet purus malesuada congue. In laoreet, magna id viverra tincidunt, sem odio bibendum justo, vel imperdiet sapien wisi sed libero. Suspendisse sagittis ultrices augue. Mauris metus.', 2), (6, 'Colocou ordem no Brasil', 'Maecenas ipsum velit, consectetuer eu, lobortis ut, dictum at, dui. In rutrum. Sed ac dolor sit amet purus malesuada congue. In laoreet, magna id viverra tincidunt, sem odio bibendum justo, vel imperdiet sapien wisi sed libero. Suspendisse sagittis ultrices augue. Mauris metus.', 2), (7, '12', '123123', 18), (8, 'qweqwe', 'qwe', 20), (9, 'teste', 'teste', 32); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfis_candidato_intencoes_voto` -- CREATE TABLE `perfis_candidato_intencoes_voto` ( `id` int(11) NOT NULL, `perfis_id_candidato` int(11) NOT NULL, `perfis_id_usuario` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL, `justificativa` varchar(255) DEFAULT NULL, `tipo` int(11) DEFAULT NULL COMMENT '0- oculto\n1- público' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfis_candidato_intencoes_voto` -- INSERT INTO `perfis_candidato_intencoes_voto` (`id`, `perfis_id_candidato`, `perfis_id_usuario`, `data`, `justificativa`, `tipo`) VALUES (130, 57, 3, 1501265218, 'tttttt', 1), (134, 57, 2, 1501265980, NULL, 0), (141, 57, 4, 1501266868, 'rrrrrrr', 1), (144, 58, 5, 1501267085, NULL, 0), (146, 57, 6, 1501268002, 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus in tortor luctus neque laoreet blandit vitae accumsan enim. Nam eget magna id ipsum consectetur accumsan eu at dui. Nullam porttitor libero ut ullamcorper ultricies. Proin scelerisque a', 1), (148, 7, 5, 1501268704, NULL, 0), (149, 8, 6, 1501278535, NULL, 0), (150, 6, 2, 1501282122, NULL, 0), (151, 8, 5, 1501503685, NULL, 0), (153, 6, 5, 1501504517, NULL, 0), (154, 62, 62, 1501510030, NULL, 0), (155, 30, 6, 1501511770, 'Mito!', 1), (157, 5, 6, 1501514125, NULL, 0), (159, 30, 5, 1501526208, NULL, 0); -- -------------------------------------------------------- -- -- Estrutura da tabela `perfis_candidato_processos` -- CREATE TABLE `perfis_candidato_processos` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `descricao_completa` mediumtext, `perfis_candidato_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `perfis_candidato_processos` -- INSERT INTO `perfis_candidato_processos` (`id`, `titulo`, `descricao_completa`, `perfis_candidato_id`) VALUES (1, 'Caixa 2', 'Etiam posuere quam ac quam. Maecenas aliquet accumsan leo. Nullam dapibus fermentum ipsum. Etiam quis quam. Integer lacinia. Nulla est. Nulla turpis magna, cursus sit amet, suscipit a, interdum id, felis. Integer vulputate sem a nibh rutrum consequat. Maecenas lorem. Pellentesque pretium', 2), (2, 'Improbidade administrativa', 'Etiam posuere quam ac quam. Maecenas aliquet accumsan leo. Nullam dapibus fermentum ipsum. Etiam quis quam. Integer lacinia. Nulla est. Nulla turpis magna, cursus sit amet, suscipit a, interdum id, felis. Integer vulputate sem a nibh rutrum consequat. Maecenas lorem. Pellentesque pretium', 2), (4, 'Prorina', 'porro quisquam est qui dolorem ipsum quia dolor sporro quisquam est qui dolorem ipsum quia dolor sporro quisquam est qui dolorem ipsum quia dolor s', 19); -- -------------------------------------------------------- -- -- Estrutura da tabela `periodos_eleitorais` -- CREATE TABLE `periodos_eleitorais` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `ano` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `posts` -- CREATE TABLE `posts` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `tipo` int(11) DEFAULT NULL COMMENT '0 - Texto, 1 - Imagem, 2 - Vídeo, 3 - Galeria', `texto` mediumtext, `url` varchar(255) DEFAULT NULL, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `posts` -- INSERT INTO `posts` (`id`, `perfis_id`, `tipo`, `texto`, `url`, `data`) VALUES (1, 1, 0, 'Meritus a todo #valor', '', 1496185858), (3, 1, 2, 'Teste post video', 'FhuZmiOcdjc', 1496185916), (4, 1, 1, 'Meu presidente 2017...', '95f4c380073a24f9a97b1e1207410454.jpg', 1496239583), (5, 1, 2, 'Senador magno malta...', 'gOOOmCTTUJA', 1496239706), (8, 2, 1, 'mito...', '2cf7c219e7256525ee8de5398c29f232.jpg', 1496258875), (9, 3, 2, 'Era vargas... exemplo de político', 'poGMPLG9PpU', 1496429608), (10, 3, 2, 'Era vargas... exemplo de político', 'poGMPLG9PpU', 1496429634), (11, 3, 1, '"Quero que saibam que lhes vou dizer as coisas na linguagem simples de companheiro! Nossa conversa será no jeito e estilo daqueles que os fazendeiros costumam fazer de pé, junto á porteira do curral". Getúlio possuía, em 1950, três estâncias: Itu e Espinilho, em Itaqui, e a estância Santos Reis, em São Borja"', '5de334b0c5aea10eae23704e88a985fc.jpg', 1496429798), (12, 4, 1, 'ESTÁ INSATISFEITO COM A POLÍTICA ATUAL?\r\nPOR QUE VOCÊ NÃO LANÇA O SEU NOME? \r\n\r\nO Projeto Meritus oferece espaço de divulgação para quem pretende entrar na política para fazer diferente de tudo isso que está aí. Lance o seu nome e conte com o nosso apoio! \r\n\r\nEntre em breve em www.projetomeritus.com.br e faça o seu cadastro! \r\n\r\nwww.projetomeritus.com.br\r\nAbrace esta causa! \r\n\r\n#ProjetoMeritus\r\nA boa política depende de nós!', '5de3955190e917d2d8dc6b656fedcb75.png', 1496432579), (13, 1, 0, 'Novo post', '', 1497479548), (14, 6, 0, 'Hello world!', '', 1497646267), (15, 3, 0, '#VamosBrasil', '', 1498080128), (16, 6, 0, 'testes', '', 1500051367), (17, 6, 0, 'testes', '', 1500051389), (18, 6, 2, 'teste', 'j5-yKhDd64s', 1500551231), (19, 35, 2, NULL, 'LlB6X3eYMWI', 1500553482), (20, 35, 2, '', '8fKrlIZCuWw', 1500554552), (21, 36, 2, '', 'LlB6X3eYMWI', 1500554658), (22, 37, 2, '', 'LlB6X3eYMWI', 1500562397), (23, 38, 2, '', 'LlB6X3eYMWI', 1500579285), (24, 39, 2, '', 'LlB6X3eYMWI', 1500640811), (25, 40, 2, '', 'LlB6X3eYMWI', 1500648322), (26, 41, 2, '', 'LlB6X3eYMWI', 1500648708), (27, 42, 2, '', 'LlB6X3eYMWI', 1500649116), (28, 43, 2, '', 'LlB6X3eYMWI', 1500649150), (37, 52, 2, '', 'LlB6X3eYMWI', 1500663650), (38, 53, 2, '', 'LlB6X3eYMWI', 1500986640), (39, 55, 2, '', 'LlB6X3eYMWI', 1501078556), (40, 56, 2, '', 'LlB6X3eYMWI', 1501095557), (41, 57, 2, '', 'LlB6X3eYMWI', 1501164880), (42, 58, 2, '', 'LlB6X3eYMWI', 1501165011), (43, 59, 2, '', 'LlB6X3eYMWI', 1501264150), (44, 60, 2, '', 'LlB6X3eYMWI', 1501268834), (45, 61, 2, '', 'LlB6X3eYMWI', 1501269967), (46, 62, 2, '', 'LlB6X3eYMWI', 1501509209); -- -------------------------------------------------------- -- -- Estrutura da tabela `posts_comentarios` -- CREATE TABLE `posts_comentarios` ( `id` int(11) NOT NULL, `comentario` mediumtext, `posts_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `posts_comentarios` -- INSERT INTO `posts_comentarios` (`id`, `comentario`, `posts_id`, `perfis_id`, `data`) VALUES (3, 'adfasdf asdf adsf adsf', 8, 1, 1496345675), (5, 'Olha o comentário', 8, 1, 1496345733), (6, 'Meu comentário', 8, 1, 1496347744), (7, 'after coment', 8, 1, 1496349120), (8, 'Teste comentário', 8, 1, 1496349157), (9, 'Olá', 8, 1, 1496349166), (11, 'Esse é de respeito', 5, 1, 1496349531), (12, 'brasil merece gente com magno malta...', 5, 2, 1496349595), (13, 'Issso aí', 5, 1, 1496349800), (25, 'olha', 8, 1, 1496351289), (26, 'Teste', 5, 1, 1496352056), (27, '#MITO', 8, 2, 1496358781), (28, 'Nove', 8, 1, 1496405917), (29, 'Dez', 8, 1, 1496405926), (30, 'Onze', 8, 1, 1496405949), (31, 'Doze', 8, 1, 1496406032), (32, 'Treze', 8, 1, 1496406116), (33, '14', 8, 1, 1496406225), (34, '15', 8, 1, 1496406405), (35, '16', 8, 1, 1496406457), (36, '17', 8, 1, 1496406534), (37, '18', 8, 1, 1496409101), (38, '19', 8, 1, 1496409162), (39, '20', 8, 1, 1496409181), (40, '21', 8, 1, 1496415236), (41, 'Teste funcionamento único', 5, 1, 1496415277), (42, 'Está funcionando', 5, 2, 1496416972), (43, 'massa', 3, 2, 1496425259), (44, 'Muito Bom', 11, 4, 1496432872), (45, '22', 8, 1, 1496442047), (46, 'aasdfasdf', 11, 1, 1497356685), (47, 'Oias', 9, 1, 1497452101), (48, 'Up', 13, 1, 1497479563), (49, '#TôComentando', 13, 6, 1497622168), (50, 'asdfasdf', 8, 1, 1498074918), (51, 'adsfasdf', 8, 1, 1498074933), (52, '#NovoBrasil', 15, 1, 1498080202), (53, 'oi', 14, 6, 1498164286), (54, 'Owww', 15, 1, 1498169710), (55, '#goBrasil', 15, 6, 1498831225), (56, '#meritus', 15, 6, 1498831238), (57, '#thebest', 15, 6, 1498831245), (58, '#thebest', 15, 6, 1498831261), (59, 'good', 15, 6, 1498831279), (60, 'ok', 15, 3, 1498831354), (61, 'oi', 14, 6, 1499437967), (62, 'oi', 14, 6, 1499438045), (63, 'teste', 14, 6, 1499438051), (64, 'sasd', 14, 6, 1500051067), (65, 'ok', 13, 6, 1500671568), (66, 'Boa noite amigo!', 24, 6, 1500672365), (67, 'comment', 43, 59, 1501266285), (68, 'Isso ainda funciona?', 8, 1, 1501278170); -- -------------------------------------------------------- -- -- Estrutura da tabela `posts_comentarios_curtidas` -- CREATE TABLE `posts_comentarios_curtidas` ( `id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL, `posts_comentarios_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `posts_comentarios_curtidas` -- INSERT INTO `posts_comentarios_curtidas` (`id`, `data`, `posts_comentarios_id`, `perfis_id`) VALUES (4, 1496358188, 11, 1), (6, 1496358590, 3, 1), (8, 1496407064, 5, 1), (9, 1496409318, 39, 1), (11, 1496414753, 6, 2), (13, 1496415285, 41, 1), (14, 1496416989, 42, 1), (15, 1496417487, 6, 1), (16, 1496422980, 11, 2), (17, 1496422982, 12, 2), (18, 1496432907, 3, 4), (20, 1498075060, 44, 1), (22, 1498167471, 48, 2), (23, 1498231995, 49, 6), (24, 1498575233, 48, 6), (27, 1498736758, 52, 6), (28, 1500040613, 52, 2), (29, 1501278142, 53, 6); -- -------------------------------------------------------- -- -- Estrutura da tabela `posts_comentarios_respostas` -- CREATE TABLE `posts_comentarios_respostas` ( `id` int(11) NOT NULL, `posts_comentarios_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `comentario` mediumtext, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `posts_compartilhamentos` -- CREATE TABLE `posts_compartilhamentos` ( `id` int(11) NOT NULL, `posts_id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL, `perfis_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `posts_curtidas` -- CREATE TABLE `posts_curtidas` ( `id` int(11) NOT NULL, `posts_id` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL, `perfis_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `posts_curtidas` -- INSERT INTO `posts_curtidas` (`id`, `posts_id`, `data`, `perfis_id`) VALUES (8, 8, 1496414715, 2), (12, 8, 1496416742, 1), (14, 5, 1496416752, 1), (17, 5, 1496422976, 2), (18, 1, 1496430943, 1), (19, 11, 1496432824, 4), (20, 10, 1496432852, 4), (21, 11, 1496442024, 1), (22, 10, 1497356712, 1), (24, 15, 1498169703, 1), (28, 15, 1498736765, 6), (29, 14, 1498827580, 6), (30, 11, 1499438540, 5), (31, 21, 1500555617, 36), (33, 41, 1501507040, 6); -- -------------------------------------------------------- -- -- Estrutura da tabela `produtos` -- CREATE TABLE `produtos` ( `id` int(11) NOT NULL, `categorias_id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `descricao` text, `valor` decimal(10,2) DEFAULT NULL, `valor_antigo` decimal(10,2) DEFAULT NULL, `estoque` int(11) NOT NULL, `comprimento_embalagem` int(11) NOT NULL, `altura_embalagem` int(11) NOT NULL, `largura_embalagem` int(11) NOT NULL, `peso` decimal(6,3) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `produtos` -- INSERT INTO `produtos` (`id`, `categorias_id`, `titulo`, `descricao`, `valor`, `valor_antigo`, `estoque`, `comprimento_embalagem`, `altura_embalagem`, `largura_embalagem`, `peso`) VALUES (1, 5, 'Camisa Brasil teste', 'Morbi a metus. Phasellus enim erat, vestibulum vel, aliquam a, posuere eu, velit. Nullam sapien sem, ornare ac, nonummy non, lobortis a, enim. Nunc tincidunt ante vitae massa. Duis ante orci, molestie vitae, vehicula venenatis, tincidunt ac, pede. Nulla accumsan, elit sit amet varius semper, nulla mauris mollis quam, tempor', '30.00', '0.00', 3, 42, 15, 12, '0.123'), (2, 1, 'camisa', 'camisa meritus', '30.50', '0.00', 0, 50, 32, 7, '1.231'), (3, 1, 'bone', 'Boné Meritus', '15.00', '0.00', 10, 50, 12, 11, '0.000'), (4, 0, 'garrafa', 'garrafa meritus', '50.00', '0.00', 1, 50, 12, 2, '0.000'), (5, 1, 'camisa', 'Camisa azul', '20.00', '0.00', 3, 20, 5, 10, '0.012'), (12, 1, 'produto teste', '<p>123</p>', '1.23', '1.23', 1, 60, 12, 20, '0.123'), (13, 1, '123', '<p>123</p>', '1.23', '0.23', 123, 90, 6, 52, '0.123'), (14, 6, 'pc', '<span style="font-family: &quot;Open Sans&quot;, Arial, sans-serif; font-size: 14px; text-align: justify;">"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"</span><br>', '1000.00', '0.00', 120, 50, 50, 50, '5.000'); -- -------------------------------------------------------- -- -- Estrutura da tabela `produtos_fotos` -- CREATE TABLE `produtos_fotos` ( `id` int(11) NOT NULL, `foto` varchar(45) DEFAULT NULL, `produtos_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `produtos_fotos` -- INSERT INTO `produtos_fotos` (`id`, `foto`, `produtos_id`) VALUES (2, 'bone.jpg', 3), (3, 'garrafa.jpg', 4), (4, 'camisa2.jpg', 2), (5, 'camisa3.jpg', 5), (8, 'bc634e96a8cef43b4dffcb07d11cc5c2.jpg', 12), (10, 'c6ed9a7fde5ae891ffd971e8e30a624a.jpg', 13), (14, '58783810b026d4f58fe17507904b1cd5.jpg', 1), (15, '303f9e11097b1e9929b63ab66bee74e3.jpg', 1), (16, 'd90b3dec18314b885b092d6d8cee4cf8.jpg', 14), (17, 'a7d8d618a822232f8bbac882cbd51e95.jpg', 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `profissoes` -- CREATE TABLE `profissoes` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `profissoes` -- INSERT INTO `profissoes` (`id`, `descricao`) VALUES (1, 'Analista de Sistemas'), (2, 'Advogado'); -- -------------------------------------------------------- -- -- Estrutura da tabela `projeto_meritus` -- CREATE TABLE `projeto_meritus` ( `id` int(11) NOT NULL, `descricao` text NOT NULL, `imagem` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `projeto_meritus` -- INSERT INTO `projeto_meritus` (`id`, `descricao`, `imagem`) VALUES (1, '<h3>O Projeto Meritus</h3>\r\n <!-- <ul class="post-meta">\r\n <li>Novemer 9, 2016</li>\r\n <li><a href="#">5 Comments</a></li>\r\n </ul> -->\r\n <p>O que motivou a criação do Portal Méritus é a certeza de que pessoas &nbsp;capacitadas e com &nbsp;espírito solidário estão menos tentadas a atos de corrupção gerando um ambiente mais limpo onde não há espaço para falsas promessas. </p>\r\n <p>\r\n O Projeto Meritus nasce depois de assistirmos atônitos todos os escândalos envolvendo a casta política e as consequências devastadoras que uma má gestão vem causando à Sociedade Brasileira. Tais atitudes, originam-se em virtude dos desvios de caráter, em especial a corrupção que assola todos os poderes, da falta de ética para desempenhar cargos públicos e pela falência das ideologias partidárias. Desta forma, favorecer o desenvolvimento de um ponto comum que possa atender os anseios das alas direita, esquerda e de centro, dissipando o extremismo político, é nossa meta. \r\n </p>\r\n <p>\r\n Pretende-se motivar os cidadãos competentes &nbsp;e de reputação ilibada, a estarem à disposição da comunidade local e/ou do estado e/ou país para acabar com o voto de cabresto e todos os abusos praticados na esfera política.</p><p>É uma mídia social exclusivamente política embasada em fatos, apartidária, com intenção de troca de conhecimentos e propagação da verdade.</p><p>O Portal Meritus tem como proposta buscar, captar e informar os dados (currículos) de pessoas disponíveis a ocupar cargos públicos, através de eleições diretas, detalhando para os eleitores o perfil de cada candidato, o cargo que pretende ocupar e índices virtuais, em tempo real, da aprovação dos próprios eleitores (usuários virtuais).</p>', 'projeto.png'); -- -------------------------------------------------------- -- -- Estrutura da tabela `projetos_lei` -- CREATE TABLE `projetos_lei` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `texto` longtext, `imagem` varchar(40) DEFAULT NULL, `nome_url` varchar(255) NOT NULL, `data` bigint(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `projetos_lei` -- INSERT INTO `projetos_lei` (`id`, `titulo`, `texto`, `imagem`, `nome_url`, `data`) VALUES (52, 'Projeto um', '<p><span style="font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;="" text-align:="" justify;"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris ac justo vitae est porttitor aliquet. Aliquam at fringilla sapien, in pharetra eros. Aenean dignissim sit amet tortor in bibendum. Phasellus viverra, justo a pharetra maximus, nisi nunc convallis neque, at imperdiet metus lectus vel neque. Nullam laoreet libero a lorem dapibus, a elementum urna porta. Mauris tempus neque lacus, eu pulvinar nunc ullamcorper in. Aliquam augue sem, faucibus id orci at, lacinia fermentum urna. Vestibulum purus sapien, fringilla et velit eget, eleifend sagittis enim. Aliquam erat volutpat. Aenean posuere, arcu sit amet suscipit rhoncus, orci dui lacinia sem, at condimentum tellus tellus non ex. Vestibulum lectus ex, aliquet ut lobortis sodales, congue sit amet purus. teste</span><br></p>', '6899488bb2311ddea35ef3e251eda667.png', 'projeto-um', 1499965236); -- -------------------------------------------------------- -- -- Estrutura da tabela `projetos_lei_has_curtidas` -- CREATE TABLE `projetos_lei_has_curtidas` ( `id` int(11) NOT NULL, `projetos_lei_id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `projetos_lei_has_curtidas` -- INSERT INTO `projetos_lei_has_curtidas` (`id`, `projetos_lei_id`, `perfis_id`) VALUES (5, 52, 6), (6, 52, 52), (7, 52, 2); -- -------------------------------------------------------- -- -- Estrutura da tabela `repostas_comentarios_projetos` -- CREATE TABLE `repostas_comentarios_projetos` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `comentarios_projetos_id` int(11) NOT NULL, `comentario` mediumtext, `data` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `repostas_comentarios_projetos` -- INSERT INTO `repostas_comentarios_projetos` (`id`, `perfis_id`, `comentarios_projetos_id`, `comentario`, `data`) VALUES (26, 6, 36, 'Mauris ac justo vitae est porttitor aliquet. Aliquam at fringilla sapien, in pharetra eros. ', '1499967019'), (27, 52, 36, 'Tá certo!', '1500669980'), (28, 1, 36, 'teste\r\n', '1501507654'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secoes` -- CREATE TABLE `secoes` ( `id` int(11) NOT NULL, `tag` varchar(255) DEFAULT NULL, `titulo` text, `texto` longtext NOT NULL, `imagem` varchar(40) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `seguidores` -- CREATE TABLE `seguidores` ( `id` int(11) NOT NULL, `perfis_id` int(11) NOT NULL, `perfis_id_amigo` int(11) NOT NULL, `data` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `seguidores` -- INSERT INTO `seguidores` (`id`, `perfis_id`, `perfis_id_amigo`, `data`) VALUES (2, 2, 1, NULL), (14, 1, 3, 1496430781), (15, 4, 2, 1496432731), (16, 4, 3, 1496432739), (17, 1, 4, 1496443559), (20, 6, 1, 1497614624), (21, 6, 1, 1497614625), (22, 6, 3, 1497969494), (23, 3, 1, 1498079924), (24, 2, 3, 1498169265), (26, 5, 3, 1499949983), (29, 3, 5, 1500570765), (30, 6, 39, 1500672345), (59, 37, 6, 1501164249), (60, 37, 30, 1501164258), (61, 37, 8, 1501164271), (62, 37, 3, 1501164287), (80, 5, 6, 1501243837), (81, 6, 57, 1501268131), (82, 2, 6, 1501282118), (86, 1, 30, 1501506548), (88, 1, 2, 1501506912), (89, 6, 8, 1501508822), (90, 62, 8, 1501510006), (91, 6, 5, 1501514489), (95, 5, 30, 1501526193); -- -------------------------------------------------------- -- -- Estrutura da tabela `servicos_publicos` -- CREATE TABLE `servicos_publicos` ( `id` int(11) NOT NULL, `descricao` text NOT NULL, `imagem` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `servicos_publicos` -- INSERT INTO `servicos_publicos` (`id`, `descricao`, `imagem`) VALUES (1, '<h3 style="font-family: &quot;Varela Round&quot;, HelveticaNeue, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 32px; color: rgb(51, 51, 51); margin: 0px; font-size: 20px;">Serviços Públicos</h3><p style="margin-top: 20px; margin-bottom: 20px; color: rgb(112, 112, 112); font-family: &quot;Varela Round&quot;, HelveticaNeue, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;">Nam nisl lacus, dignissim ac tristique ut, scelerisque eu massa. Vestibulum ligula nunc, rutrum in malesuada vitae, tempus sed augue. Curabitur quis lectus quis augue dapibus facilisis. Vivamus tincidunt orci est, in vehicula nisi eleifend ut. Vestibulum sagittis varius orci vitae.</p><p style="margin-top: 20px; margin-bottom: 20px; color: rgb(112, 112, 112); font-family: &quot;Varela Round&quot;, HelveticaNeue, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;">In ut odio libero, at vulputate urna. Nulla tristique mi a massa convallis cursus. Nulla eu mi magna. Etiam suscipit commodo gravida. Cras suscipit, quam vitae adipiscing faucibus, risus nibh laoreet odio, a porttitor metus eros ut enim. Morbi augue velit, tempus mattis dignissim nec, porta sed risus. Donec eget magna eu lorem tristique pellentesque eget eu dui. Fusce lacinia tempor malesuada. Ut lacus sapien, placerat a ornare nec, elementum sit amet felis. Maecenas pretium lorem hendrerit eros sagittis fermentum.</p><p style="margin-top: 20px; margin-bottom: 20px; color: rgb(112, 112, 112); font-family: &quot;Varela Round&quot;, HelveticaNeue, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;">Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse sit amet mauris in quam pretium faucibus et aliquam odio.</p>', 'servicos3.jpg'); -- -------------------------------------------------------- -- -- Estrutura da tabela `termos_de_uso` -- CREATE TABLE `termos_de_uso` ( `id` int(11) NOT NULL, `descricao` text NOT NULL, `termos` text NOT NULL, `imagem` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `termos_de_uso` -- INSERT INTO `termos_de_uso` (`id`, `descricao`, `termos`, `imagem`) VALUES (1, '<h3>Termos de Uso</h3>\r\n <!-- <ul class="post-meta">\r\n <li>Novemer 9, 2016</li>\r\n <li><a href="#">5 Comments</a></li>\r\n </ul> -->\r\n \r\n <p>\r\n Pelo presente instrumento, reconheço que, ao expressar o aceite eletrônico estou, na qualidade de usuário, aderindo e aceitando todos os termos e condições gerais de uso e todas as demais políticas e princípios que regem o website www.projetomeritus.com.br e seu respectivo aplicativo para dispositivos móveis.</p>\r\n <p>\r\n O aplicativo é uma PLATAFORMA mobile comunitária e colaborativa para que as pessoas possam se conectar, ler e postar notícias e artigos, indicar a si próprios ou a terceiros como potenciais nomes que representem novidades no cenário político, apresentando seus méritos e suas credenciais, além de ter acesso a cursos e treinamentos no modelo Ensino à Distância (EAD). O aplicativo está integrado com a PLATAFORMA web www.projetomertius.com.br, usando da tecnologia do Google Maps, Mobile, GPS e Internet, desenvolvido pelo PROJETO MERITUS, sendo referidos website (www.projetomeritus.com.br) e o aplicativo para dispositivos móveis doravante denominados “PLATAFORMA”, conforme segue:</p>', '<p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">A aceitação destes termos e condições\r\ngerais de uso é indispensável à utilização da plataforma e seus serviços.<o:p></o:p></p><p>\r\n\r\n</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">nenhuma utilização da plataforma será\r\ncancelada por alegação de desconhecimento dos termos e condições de uso ou da\r\npolítica de privacidade. na hipótese de dúvida, esclarecimentos prévios à\r\noperação de uso poderão ser obtidos através do link: <a href="http://www.projetomeritus.com/TERMOS-DE-USO">www.projetomeritus.com.br/termos-de-uso</a><o:p></o:p></p>\r\n<p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">I – DO OBJETO<o:p></o:p></p><p class="MsoListParagraph" style="margin-left:18.75pt;mso-add-space:auto;\r\ntext-align:justify;text-justify:inter-ideograph;text-indent:-18.75pt;\r\nmso-list:l0 level2 lfo1"><!--[if !supportLists]-->1.1.<span style="font-variant-numeric: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: " times="" new="" roman";"="">&nbsp; </span><!--[endif]-->O objeto do presente instrumento consiste\r\nem estabelecer a política e regulamento para acesso de usuários à PLATAFORMA <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.2. Para fins deste Termo, entende-se por:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.2.1. “USUÁRIO”: qualquer usuário da\r\nPLATAFORMA;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.2.2. “USUÁRIO CANDIDATO”: o usuário que\r\npreencher o cadastro para ter o seu nome avaliável pelos demais usuários de\r\nnossa plataforma. <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.3. A PLATAFORMA tem como objetivo\r\nproporcionar facilidade para que as pessoas possam, através da formação de uma\r\nrede social cheia de méritos, encontrar e compartilhar informações que conduzam\r\nà formação de um novo conceito de se fazer política. Por meio da PLATAFORMA é\r\npossível que, de forma inteiramente gratuita, os usuários se cadastrem para\r\nmeritar. <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.4. A PLATAFORMA poderá ser acessada por\r\npessoas físicas ou jurídicas, nacionais ou estrangeiras. Neste ato o usuário,\r\nsob as penas da lei, declara não se enquadrar em qualquer hipótese impeditiva,\r\nlegal ou contratual, para cadastrar-se na PLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">1.5. Os dirigentes do PROJETO MERITUS podem\r\nconceder o acesso à PLATAFORMA, seja diretamente ou por meio de links ou feeds\r\nexpostos, a produtos, serviços, conteúdos, notícias, informações e dados\r\noperados e fornecidos por terceiros independentes e desvinculados do PROJETO\r\nMERITUS, sobre os quais eles não têm ingerência. O PROJETO MERITUS não endossa\r\ntais produtos, serviços, conteúdos, notícias, informações e dados operados de\r\nterceiros e não se responsabiliza porqualquer transação relativa a eles, ou por\r\nqualquer consequência que possa advir do uso destes produtos, serviços,\r\nconteúdos, notícias, informações e dados pelo Usuário.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">II – DO CADASTRAMENTO<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.1. Para uso dos serviços disponibilizados\r\npelo PROJETO MERITUS, os usuários deverão fornecer seus dados pessoais para\r\ncadastramento, sendo essencial, para tanto, preencher todos os campos de forma\r\ncompleta, clara e precisa (nome completo, telefone, e-mail, CPF, senha e\r\nconfirmar senha). Caso contrário não conseguirá se cadastrar na PLATAFORMA para\r\nusar os serviços disponibilizados. <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.2. Como medida para impedir que cadastros\r\nirregulares sejam realizados, o IP do pretendente Usuário será temporariamente\r\nbloqueado quando exceder o número de tentativas sem conclusão válida de seu\r\ncadastro em curto período de tempo. Caso o IP do Usuário seja bloqueado\r\ntemporariamente mais de uma vez, o bloqueio será permanente.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.3. Verificada inconsistência nos dados\r\ninformados pelo Usuário e/ou qualquer pendência, o Cadastro do pretendente a\r\nUsuário será desconsiderado pela PLATAFORMA, podendo, se assim preferir, entrar\r\nem contato via e-mail, e outros meios de comunicação existentes ou que venham a\r\nser disponibilizados no futuro, para buscar os esclarecimentos pertinentes.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.4. Ao se cadastrar, o Usuário indicará um\r\nlogin para sua identificação na PLATAFORMA, bem como uma senha pessoal e\r\nintransferível. A senha do Usuário é, portanto, a chave de segurança que\r\npermite o acesso a determinadas áreas da PLATAFORMA. Portanto, o Usuário será o\r\núnico responsável pelas operações efetuadas em sua conta, que apenas poderá ser\r\nacessada através de login e senha pessoal intransferível. Somente através desse\r\nlogin e senha o Usuário poderá usar os serviços na PLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.5. O login a ser cadastrado pelo Usuário\r\npara acesso à PLATAFORMA não poderá guardar semelhança com o nome PROJETO\r\nMERITUS, bem como não poderá ser cadastrado login (apelido) considerado\r\nofensivo, obsceno, vulgar, agressivo, preconceituoso, ameaçador, que contenha\r\ndados pessoais do Usuário (alguma URL ou endereço eletrônico) ou que venha\r\nconfundir os demais usuários em prejuízo do bom funcionamento da PLATAFORMA;\r\nnessas hipóteses o Usuário poderá sofrer, além das sanções legais, o imediato\r\ncancelamento de todos os dados de seu cadastro sem prévio aviso, a título de\r\npena.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.6. O Usuário será o único responsável\r\npela guarda da senha e compromete-se a não a divulgar a terceiros. No caso de\r\nuso não autorizado de sua senha, o Usuário deverá redefinir sua senha\r\nimediatamente, bastando acessar: www.projetomeritus.com.br/redefinir-senha<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.7.Caso o Usuário venha a divulgar, ainda\r\nque acidentalmente, ou emprestar a sua senha a terceiros responderá\r\nsolidariamente por todos os atos praticados pelos mesmos em seu nome. Somente\r\natravés desta senha o Usuário poderá iniciar o uso dos serviços.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.8. Após a validação do cadastro, o\r\nUsuário será liberado para usar a PLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.9. Caso o Usuário, ao tentar acessar a\r\nPLATAFORMA, esqueça sua senha pessoal, poderá redefinir sua senha, bastando\r\nclicar em "Esqueci minha senha”, localizado logo abaixo do campo senha, na\r\nPLATAFORMA. Será enviado para o e-mail de cadastro do usuário, um link para que\r\nele possa redefinir sua senha pessoal.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.10. FICA RESSALVADO QUE O USUÁRIO\r\nCADASTRADO na PLATAFORMA AUTORIZA, DESDE JÁ E EXPRESSAMENTE O DIREITO DE\r\nEXPOSIÇÃO DE SUAS IMAGENS.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.11. Para segurança do Usuário, seu login,\r\nsenha e dados serão transmitidos criptografados. Toda informação ou dado\r\npessoal prestado pelo Usuário será armazenado em servidores com meios\r\nmagnéticos de alta segurança. O PROJETO MERITUS tomará todas as medidas\r\npossíveis para manter a confidencialidade e a segurança descrita nesta\r\ncláusula, porém não responderá por prejuízo que poderá ser derivado da violação\r\ndessas medidas por parte de terceiros que utilizem as redes públicas ou a\r\ninternet, subvertendo os sistemas de segurança para acessar as informações dos\r\nUsuários.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.13. O PROJETO MERITUS aconselha aos\r\nUsuários que mantenham os seus antivírus atualizados e utilizem firewall,\r\ndiminuindo consideravelmente as chances de terem seus dados interceptados por\r\npessoas mal-intencionadas. O PROJETO MERITUS não se responsabiliza pelo uso\r\nindevido por terceiros dos dados pessoais dos Usuários, obtidos mediante o\r\nemprego de fraude, simulações e violações de sistemas.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.14. Sem prejuízo de outras medidas, o\r\nPROJETO MERITUS poderá suspender ou cancelar, temporária ou definitivamente, o\r\ncadastro do Usuário a qualquer tempo, e iniciar as ações legais nos seguintes\r\ncasos:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.14.1. se o Usuário não cumprir qualquer\r\ndispositivo previsto nos termos e condições gerais;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.14.2. se o Usuário praticar atos\r\nfraudulentos ou dolosos;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">2.14.3. seo PROJETO MERITUS entender que as\r\natitudes do Usuário estejam causando algum dano a terceiros ou ao próprio\r\nPROJETO MERITUS ou tenha a potencialidade de assim o fazer. Nos casos\r\nsupracitados, o PROJETO MERITUS terá o direito de cancelar imediatamente o seu\r\ncadastro, a título de multa penal, sem prejuízo do ingresso das medidas\r\njudiciais cabíveis para buscar a reparação de danos materiais e morais devidos.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">IV - POLÍTICA DE PRIVACIDADE<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.1. A garantia à privacidade das\r\ninformações dos Usuários da PLATAFORMA é um comprometimento do PROJETO MERITUS.\r\n<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.2. O PROJETO MERITUS não irá fornecer as\r\ninformações dos Usuários a terceiros sem prévia autorização do mesmo, com\r\nexceção de casos onde seja necessário para responder às solicitações ou\r\nperguntas de entidades governamentais, ou nos casos onde, de boa-fé, o PROJETO\r\nMERITUS entender que é necessária a sua divulgação com o propósito de responder\r\nàs reclamações que o conteúdo submetido infrinja direitos de terceiros ou que\r\nseja necessária para a proteção de direitos, propriedades e/ou segurança da\r\nPLATAFORMA prestadora dos serviços, de seus Usuários e/ou do público em geral.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.3. As informações cedidas pelo Usuário e\r\nregistradas devido ao uso da PLATAFORMA (com exceção ao conteúdo de mensagens\r\npessoais) poderão ser utilizadas pelo PROJETO MERITUS como insumos para o\r\nmapeamento de informações e formação de estatísticas.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.4. As informações adicionais coletadas\r\natravés da análise da navegação de cada Usuário e que não o torne identificável\r\npessoalmente são de propriedade exclusiva do PROJETO MERITUS, que podem usar\r\nessas informações do modo que melhor julgar apropriado. Além disso, as\r\ninformações fornecidas são usadas para:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.4.1. administrar a conta dos Usuários a\r\nfim de customizar cada vez mais os serviços intermediados pelo PROJETO MERITUS;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.4.2.comunicar novidades e atualizações da\r\nPLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.5.A coleta de informações dos Usuários\r\ntambém será realizada através de cookies (um pequeno grupo de dados trocados\r\nentre o computador do Usuário e o servidor da PLATAFORMA). A utilização de\r\ncookies servirá unicamente para permitir ao Usuário acessar a PLATAFORMA sem\r\nter de fazer login novamente, para armazenar informações de identificação do\r\nUsuário junto a PLATAFORMA e para fins de análise interna do PROJETO MERITUS,\r\nsendo vedada qualquer forma de comercialização ou compartilhamento não\r\nautorizado de informações obtidas através de cookies. Os cookies, no entanto,\r\npoderão ser utilizados para localizar o Usuário que, por algum motivo, realizar\r\nalguma conduta lesiva.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.6. Além das informações pessoais\r\nfornecidas, o PROJETO MERITUS tem a capacidade tecnológica de recolher outras\r\ninformações técnicas, como o endereço de protocolo de internet do usuário, o\r\nsistema operacional do seu telefone ou computador, o tipo de browser e o\r\nendereço de websites de referência.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.7. O PROJETO MERITUS poderá usar os cookies,\r\nweb beacons (web bugs) ou tecnologia semelhante para melhorar e personalizar a\r\nexperiência dos Usuários ao acessarem a PLATAFORMA e utilizarem de suas\r\nferramentas, incluindo, mas não se limitando a manter o controle de\r\ndeterminadas informações agregadas ao Usuário, para melhorar a PLATAFORMA,\r\najudar a identificar quando o Usuário estiver utilizando a PLATAFORMA a lembrar\r\nsuas preferências e informações de registro, apresentar e ajudar a medir e\r\npesquisar a efetividade da PLATAFORMA e personalizar o conteúdo e os anúncios\r\n(caso existam) fornecidos ao Usuário através da PLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.8. O Usuário pode configurar seu\r\nnavegador para aceitar todos os cookies, rejeitar todos os cookies ou avisar\r\nquando um cookie é definido. No entanto, se o Usuário rejeitar todos os\r\ncookies, o Usuário pode não ser capaz de usar algumas das ferramentas da\r\nPLATAFORMA, não se responsabilizando o PROJETO MERITUS por isso.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.9. Os dados cadastrais dos Usuários que\r\ncancelarem ou tiverem sua conta cancelada permanecerão nos bancos de dados da\r\nPLATAFORMA que poderá, a seu critério, fazer uso deles conforme aqui descrito,\r\npor um prazo razoável, sem que exceda os requisitos ou limitações legais, para\r\ndirimir quaisquer disputas, solucionar problemas e garantir os direitos do\r\nPROJETO MERITUS.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.10. O Usuário autoriza o PROJETO MERITUS\r\na estabelecer com ele comunicação por meio de carta, telegrama, e-mail, SMS,\r\nnotificação (mensagem instantânea) e outros meios eletrônicos conhecidos ou que\r\nvenham a ser disponibilizados no futuro.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.11. Através do cadastramento, uso e\r\nfornecimento de informações ao PROJETO MERITUS, o Usuário deliberadamente\r\naceita o presente Termo e as condições previstas na Política de Privacidade\r\nsobre o uso de suas informações.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12. É VEDADO ao USUÁRIO utilizar o\r\nServiço para:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.1. carregar, transmitir, divulgar,\r\nexibir, enviar, ou de qualquer outra forma tornar disponível qualquer Conteúdo\r\nque seja ilegal, incluindo, mas não se limitando, que seja ofensivo à honra,\r\nque invada a privacidade de terceiros, que seja ameaçador, vulgar, obsceno,\r\npreconceituoso, racista ou de qualquer forma censurável, através do Serviço; <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.2. violar direitos de crianças e/ou\r\nadolescentes:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.3. assumir a "personalidade"\r\nde outra pessoa, física ou jurídica, incluindo, mas não se limitando, aos\r\nrepresentantes do PROJETO MERITUS, líder de fórum de discussão, guia ou anfitrião,\r\nou ainda declarar-se ou apresentar-se falsamente como membro de alguma\r\nentidade;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.4. forjar cabeçalhos, ou de qualquer\r\noutra forma manipular identificadores, a fim de disfarçar a origem de qualquer\r\nconteúdo extraído através do Serviço;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.5. carregar, transmitir, divulgar,\r\nexibir, enviar, ou de qualquer outra forma tornar disponível qualquer conteúdo\r\nsem que tenha o direito de fazê-lo de acordo com a lei, por força de contrato\r\nou de relação de confiança (por exemplo, no caso de informações internas,\r\nexclusivas ou confidenciais extraídas, recebidas ou divulgadas com consequência\r\nde relação de emprego ou contrato de confidencialidade);<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.6. carregar, transmitir, divulgar,\r\nexibir, enviar, ou de qualquer forma tornar disponível qualquer conteúdo que\r\nviole qualquer patente, marca, segredo de negócio, direito autoral, direitos de\r\npropriedade intelectual, ou qualquer outro direito de terceiro\r\n("Direitos");<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.7. carregar, transmitir, divulgar,\r\nexibir, enviar, ou de qualquer forma tornar disponível qualquer tipo de\r\nanúncio, propaganda ou material promocional, tais como mensagens não\r\nsolicitadas (conhecidos como "junk mail" ou "spam"),\r\ncorrentes, esquemas de pirâmide ou outras, exceto em áreas que são designadas\r\npara tal fim.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.8. carregar, transmitir, divulgar,\r\nexibir, enviar, ou de qualquer forma tornar disponível qualquer conteúdo que\r\ncontenha vírus ou qualquer outro código, arquivo ou programa de computador com\r\no propósito de interromper, destruir capturar informações ou limitar a\r\nfuncionalidade de qualquer software, hardware ou equipamento de\r\ntelecomunicações;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.9. interromper o fluxo normal de um\r\ndiálogo, interferir na utilização e aproveitamento do serviço por outros\r\nusuários, ou de qualquer outra forma afetar a capacidade de outros usuários\r\nefetuarem comunicações ou troca de mensagens;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.10. interferir ou interromper o serviço,\r\nas redes ou os servidores conectados ao serviço, obter ou tentar obter acesso\r\nnão autorizado a outros sistemas ou redes de computadores conectados ao serviço\r\nou desobedecer qualquer regra, procedimento, política ou regulamento de redes\r\nou sistemas conectados ao serviço;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.11. violar, seja intencionalmente ou\r\nnão, qualquer norma legal municipal, estadual, nacional ou internacional que\r\nseja integrada ao ordenamento jurídico brasileiro, ou ainda, que, por qualquer\r\nrazão legal, deva ser no Brasil aplicada;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">4.12.12. vigiar secretamente ou, de\r\nqualquer forma, assediar terceiros;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">V - RESCISÃO E PENALIDADES<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">5.1. O Usuário que desejar encerrar seu\r\ncadastro com a PLATAFORMA poderá fazê-lo a qualquer momento, sem prévio aviso\r\nou qualquer tipo de comunicação expressa.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">5.2.Na hipótese de ser constatada a\r\nviolação de qualquer disposição dos Termos e Condições ora celebrado, pelo\r\nUsuário ou quando o Usuário agir de forma que demonstre que não pretende ou que\r\nimporte em fortes indícios de que não pode cumprir estas disposições, o PROJETO\r\nMERITUS poderá a qualquer momento, sem aviso prévio, encerrar a conta do\r\nUsuário para todos os efeitos de direito, sujeitando o Usuário infrator ao\r\npagamento de perdas e danos, materiais e morais a que der causa, a título de\r\npena, sejam eles sofridos pelo PROJETO MERITUS ou terceiros. <o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">VI - LIMITAÇÃO DE RESPONSABILIDADE<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1. O Usuário expressamente concorda e\r\nestá ciente de que o PROJETO MERITUS não terá qualquer responsabilidade, seja\r\ncontratual ou extracontratual, por quaisquer danos patrimoniais ou morais,\r\ndanos indiretos, acidentais, especiais, incluindo, sem limitação, danos por\r\nlucros cessantes, perda de fundo de comércio, economias, receitas ou de\r\ninformações ou consequências por quaisquer outras perdas intangíveis\r\nresultantes do:<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1.1. uso ou incapacidade de usar o\r\nServiço;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1.2. custo de aquisição de bens ou\r\nserviços outros decorrentes da compra de bens, informações e dados pelo ou\r\natravés do serviço, mensagens de recebimento ou transações estabelecidas no ou\r\natravés do Serviço;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1.3. acesso não autorizado às\r\ntransmissões ou informações do Usuário, bem como da alteração destes;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1.4. orientações ou condutas de terceiros\r\nsobre o Serviço;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.1.5. por motivos de força maior ou caso\r\nfortuito e atos praticados pelo próprio Usuário.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.2. O Usuário está ciente e concorda que o\r\nServiço é fornecido na forma como está disponibilizado e que o PROJETO MERITUS\r\nnão é responsável por exclusão, não entrega ou falha no arquivamento de\r\nqualquer comunicação do Usuário ou estabelecimento de suas opções de\r\npersonalização.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.3. De forma a bem utilizar o Serviço, o\r\nUSUÁRIO deve obter, por si, acesso à "World Wide Web", seja\r\ndiretamente ou através de dispositivos que possam disponibilizar o conteúdo\r\nexistente na Web, pagando os valores cobrados por seu provedor de acesso, se\r\neste for o caso, e providenciando todo o equipamento necessário para efetuar\r\nsua conexão à World Wide Web, incluindo computador, dispositivos móveis, modem\r\nou outro dispositivo de acesso. Atente que certas áreas do Serviço contêm\r\nconteúdo dirigido a um público adulto. O USUÁRIO precisará ter pelo menos 18\r\nanos para acessar tais áreas.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.4. O Serviço ou terceiros poderão\r\nfornecer "links" para outros sites da WorldWide Web ou outros\r\nrecursos. Como o PROJETO MÉRITUS não tem controle sobre tais sites ou recursos\r\nexternos, o USUÁRIO reconhece e concorda que o PROJETO MERITUS não é\r\nresponsável pela disponibilidade dos mesmos e não endossa ou se responsabiliza\r\npor qualquer conteúdo, propaganda, produtos, serviços ou outros materiais\r\ncontidos ou disponibilizados através de tais sites ou recursos. O USUÁRIO\r\nexpressamente reconhece que o PROJETO MERITUS não é responsável, direta ou\r\nindiretamente, por quaisquer perdas e danos que sejam efetiva ou alegadamente\r\ncausados pela confiança depositada em tal conteúdo, bens e serviços disponíveis\r\natravés de tais sites ou recursos.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">6.5. O Serviço é fornecido apenas conforme\r\ne quando estiver disponível, o PROJETO MERITUS não possui qualquer\r\nresponsabilidade pelo não funcionamento total ou pelo funcionamento parcial\r\ndevido a mudanças ocorridas em sites e/ou sistemas no qual o Serviço seja\r\ndependente de navegação, como por exemplo, redes de telefonia celular, GPS,\r\nGoogle maps, redes sociais e da própria Internet;<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">VII - DA LICENÇA E DIREITOS DE PROPRIEDADE\r\nINTELECTUAL<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">7.1. A propriedade intelectual sobre o\r\nServiço não é objeto deste contrato e continua sendo propriedade exclusiva do\r\nPROJETO MERITUS, onde os usuários terão acesso por meio dos disposivos móveis e\r\nvia Internet (protocolo http ou https), sendo os códigos-fonte da PLATAFORMA\r\n(Website e Aplicativo) de exclusividade do PROJETO MERITUS, não possuindo os\r\nusuários qualquer direito sobre os mesmos.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">VIII - POLÍTICA DE SUPORTE E GARANTIA<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">8.1. A funcionalidade deste SERVIÇO é\r\ninstável, por depender de outros serviços, como redes sociais, redes de\r\ntelefonia celular, GPS, Google maps e da própria Internet. Sendo que, qualquer\r\nmudança na navegação dos mesmos poderá comprometer as funcionalidades, que\r\npassarão por manutenção e sendo necessário atualização para novas versões.\r\nPortanto, NÃO OFERECEMOS GARANTIAS. Fornecemos o serviço "no estado em que\r\nse encontra", "com eventuais falhas" e "conforme\r\ndisponível". Não garantimos a exatidão ou atualização das informações\r\ndisponíveis no serviço. Nós do PROJETO MÉRITUS não oferecemos garantias ou\r\ncondições expressas. É possível que você tenha outros direitos de Usuário\r\nestabelecido pelas leis locais que este termos de uso não possa alterar.\r\nExcluímos quaisquer garantias implícitas, inclusive as de comercialização,\r\nadequação a uma finalidade específica, mão de obra e não violação.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">8.2. O PROJETO MERITUS envidará os melhores\r\nesforços para assegurar que o Serviço funcione da melhor maneira possível. No\r\nentanto, considerando a própria natureza do Serviço, as garantias fornecidas\r\nsão limitadas, conforme descritas acima e no item8.1.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">8.3. O PROJETO MERITUS assegura como\r\ngarantia única, que o acesso ao Serviço não conterá vírus, spyware ou qualquer\r\noutro tipo de código malicioso.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">IX – DAS CONDIÇOES GERAIS<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">9.1. Este instrumento vigorará por prazo\r\nindeterminado, podendo, a critério do PROJETO MERITUS, ser alterado, a qualquer\r\ntempo, visando seu aprimoramento e melhoria dos serviços prestados. Os novos\r\nTermos e Condições entrarão em vigor no dia seguinte da publicação na\r\nPLATAFORMA. Todavia, o Usuário, ao acessar a PLATAFORMA, receberá a nova versão\r\ndos Termos e Condições Gerais com uma solicitação de aceite, e caso não\r\nconcorde com os termos alterados, não será possível mais utilizar os serviços\r\nda PLATAFORMA.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">9.2. As alterações feitas neste instrumento\r\npelo PROJETO MERITUS não vigorarão em relação aos serviços e anúncios já\r\niniciados ao tempo em que as mesmas alterações forem publicadas. Para estes, os\r\nTermos e Condições Gerais de Uso valerão com a redação anterior.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">&nbsp;</p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">X - DA ELEIÇÃO E DO FORO<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">10.1. Reconhecendo o alcance mundial da\r\nInternet, o usuário concorda em cumprir qualquer legislação local que disponha\r\nsobre a conduta de usuários na rede e sobre conteúdos aceitáveis.\r\nEspecificamente, o usuário concorda em cumprir com todas as leis aplicáveis com\r\nrelação à transmissão de dados técnicos a partir do Brasil ou do país no qual o\r\nUsuário resida.<o:p></o:p></p><p class="MsoNormal" style="text-align:justify;text-justify:inter-ideograph">10.2. Para todos os assuntos referentes à\r\ninterpretação e ao cumprimento deste Termos de uso, as partes elegem como foro\r\ndo contrato a cidade de Montes Claros, estado de Minas Gerais,Brasil, com\r\nexclusão de qualquer outro, por mais privilegiados que sejam, sem, contudo,\r\ndesmerecê-los, para dirimir quaisquer controvérsias provenientes deste\r\ninstrumento.<o:p></o:p></p><p>\r\n\r\n</p>', 'termos.png'); -- -------------------------------------------------------- -- -- Estrutura da tabela `tipos_denuncia` -- CREATE TABLE `tipos_denuncia` ( `id` int(11) NOT NULL, `nome_tipo_denuncia` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `tipos_denuncia` -- INSERT INTO `tipos_denuncia` (`id`, `nome_tipo_denuncia`) VALUES (2, 'Pornografia'), (3, 'Ameaças'), (5, 'Falsidade Ideológica'), (6, 'Ofensas'); -- -------------------------------------------------------- -- -- Estrutura da tabela `usuarios` -- CREATE TABLE `usuarios` ( `id` int(11) NOT NULL, `nome` varchar(255) NOT NULL, `cpf` varchar(15) NOT NULL, `senha` varchar(32) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `status` tinyint(1) DEFAULT '1' COMMENT '0 - bloqueado\n1 - ativo' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `usuarios` -- INSERT INTO `usuarios` (`id`, `nome`, `cpf`, `senha`, `email`, `status`) VALUES (1, 'Suporte', '115.800.856-28', '202cb962ac59075b964b07152d234b70', '[email protected]', 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `videos` -- CREATE TABLE `videos` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `cod_video` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `area_atuacao` -- ALTER TABLE `area_atuacao` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `candidatos_oficiais` -- ALTER TABLE `candidatos_oficiais` ADD PRIMARY KEY (`id`), ADD KEY `fk_candidatos_oficiais_partidos1_idx` (`partidos_id`), ADD KEY `fk_candidatos_oficiais_perfis1_idx` (`perfis_id`), ADD KEY `fk_candidatos_oficiais_eleicao1_idx` (`eleicao_id`); -- -- Indexes for table `candidatos_oficiais_votos` -- ALTER TABLE `candidatos_oficiais_votos` ADD PRIMARY KEY (`id`,`perfis_id`,`candidatos_oficiais_id`), ADD KEY `fk_perfis_has_candidatos_oficiais_candidatos_oficiais1_idx` (`candidatos_oficiais_id`), ADD KEY `fk_perfis_has_candidatos_oficiais_perfis1_idx` (`perfis_id`); -- -- Indexes for table `categorias` -- ALTER TABLE `categorias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `certificacao` -- ALTER TABLE `certificacao` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cidades` -- ALTER TABLE `cidades` ADD PRIMARY KEY (`id`), ADD KEY `fk_cidades_estados1_idx` (`estados_id`); -- -- Indexes for table `codigo_eleitoral` -- ALTER TABLE `codigo_eleitoral` ADD PRIMARY KEY (`id`); -- -- Indexes for table `comentarios_projetos` -- ALTER TABLE `comentarios_projetos` ADD PRIMARY KEY (`id`), ADD KEY `fk_comentarios_projetos_projetos_lei1_idx` (`projetos_lei_id`), ADD KEY `fk_comentarios_projetos_perfis1_idx` (`perfis_id`); -- -- Indexes for table `denuncia_perfil` -- ALTER TABLE `denuncia_perfil` ADD PRIMARY KEY (`id`), ADD KEY `fk_denuncia_perfil_tipos_denuncia1_idx` (`tipos_denuncia_id`), ADD KEY `fk_denuncia_perfil_perfis1_idx` (`perfis_id_denunciado`), ADD KEY `fk_denuncia_perfil_perfis2_idx` (`perfis_id_delator`); -- -- Indexes for table `ead` -- ALTER TABLE `ead` ADD PRIMARY KEY (`id`); -- -- Indexes for table `eleicao` -- ALTER TABLE `eleicao` ADD PRIMARY KEY (`id`), ADD KEY `fk_eleicao_cidades1_idx` (`cidades_id`), ADD KEY `fk_eleicao_estados1_idx` (`estados_id`), ADD KEY `fk_eleicao_paises1_idx` (`paises_id`); -- -- Indexes for table `enquete` -- ALTER TABLE `enquete` ADD PRIMARY KEY (`id`); -- -- Indexes for table `estados` -- ALTER TABLE `estados` ADD PRIMARY KEY (`id`), ADD KEY `fk_estados_paises1_idx` (`paises_id`); -- -- Indexes for table `eventos` -- ALTER TABLE `eventos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `experiencias_internacionais` -- ALTER TABLE `experiencias_internacionais` ADD PRIMARY KEY (`id`), ADD KEY `fk_experiencias_internacionais_perfis_candidato1_idx` (`perfis_candidato_id`); -- -- Indexes for table `forum_topicos` -- ALTER TABLE `forum_topicos` ADD PRIMARY KEY (`id`), ADD KEY `fk_forum_topicos_perfis1_idx` (`perfis_id`); -- -- Indexes for table `forum_topicos_respostas` -- ALTER TABLE `forum_topicos_respostas` ADD PRIMARY KEY (`id`), ADD KEY `fk_forum_topicos_respostas_forum_topicos1_idx` (`forum_topicos_id`), ADD KEY `fk_forum_topicos_respostas_perfis1_idx` (`perfis_id`), ADD KEY `fk_forum_topicos_respostas_forum_topicos_respostas1_idx` (`id_citacao`); -- -- Indexes for table `fotos_galerias` -- ALTER TABLE `fotos_galerias` ADD PRIMARY KEY (`id`), ADD KEY `fk_fotos_galerias_galerias_idx` (`galerias_id`); -- -- Indexes for table `galerias` -- ALTER TABLE `galerias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `graus_formacao` -- ALTER TABLE `graus_formacao` ADD PRIMARY KEY (`id`); -- -- Indexes for table `itens_enquete` -- ALTER TABLE `itens_enquete` ADD PRIMARY KEY (`id`), ADD KEY `fk_itens_enquete_enquete1_idx` (`enquete_id`); -- -- Indexes for table `itens_enquete_respostas` -- ALTER TABLE `itens_enquete_respostas` ADD PRIMARY KEY (`id`), ADD KEY `fk_itens_enquete_respostas_itens_enquete1_idx` (`itens_enquete_id`), ADD KEY `fk_itens_enquete_respostas_perfis1_idx` (`perfis_id`); -- -- Indexes for table `log_intencoes_voto` -- ALTER TABLE `log_intencoes_voto` ADD PRIMARY KEY (`id`), ADD KEY `fk_log_intencoes_voto_perfis1_idx` (`perfis_id_candidato`), ADD KEY `fk_log_intencoes_voto_perfis2_idx` (`perfis_id_usuario`); -- -- Indexes for table `meritadores_perfil` -- ALTER TABLE `meritadores_perfil` ADD PRIMARY KEY (`id`), ADD KEY `fk_meritadores_perfil_perfis1_idx` (`perfis_id`), ADD KEY `fk_meritadores_perfil_perfis2_idx` (`perfis_id_amigo`); -- -- Indexes for table `news_letter` -- ALTER TABLE `news_letter` ADD PRIMARY KEY (`id`); -- -- Indexes for table `noticias` -- ALTER TABLE `noticias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `noticias_comentarios` -- ALTER TABLE `noticias_comentarios` ADD PRIMARY KEY (`id`), ADD KEY `fk_comentarios_noticias1_idx` (`noticias_id`), ADD KEY `fk_noticias_comentarios_perfis1_idx` (`perfis_id`); -- -- Indexes for table `noticias_comentarios_respostas` -- ALTER TABLE `noticias_comentarios_respostas` ADD PRIMARY KEY (`id`), ADD KEY `fk_comentarios_respostas_comentarios1_idx` (`comentarios_id`), ADD KEY `fk_noticias_comentarios_respostas_perfis1_idx` (`perfis_id`); -- -- Indexes for table `paises` -- ALTER TABLE `paises` ADD PRIMARY KEY (`id`); -- -- Indexes for table `partidos` -- ALTER TABLE `partidos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `patrimonio_declarado` -- ALTER TABLE `patrimonio_declarado` ADD PRIMARY KEY (`id`), ADD KEY `fk_patrimonio_declarado_perfis_candidato1_idx` (`perfis_candidato_id`); -- -- Indexes for table `pedidos` -- ALTER TABLE `pedidos` ADD PRIMARY KEY (`id`), ADD KEY `fk_pedidos_produtos1_idx` (`produtos_id`), ADD KEY `fk_pedidos_perfis1` (`perfis_id`); -- -- Indexes for table `perfil_endereco` -- ALTER TABLE `perfil_endereco` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfil_endereco_perfis1_idx` (`perfis_id`); -- -- Indexes for table `perfis` -- ALTER TABLE `perfis` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfis_profissoes1_idx` (`profissoes_id`), ADD KEY `fk_perfis_graus_formacao1_idx` (`graus_formacao_id`); -- -- Indexes for table `perfis_candidato` -- ALTER TABLE `perfis_candidato` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfis_candidato_perfis1_idx` (`perfis_id`), ADD KEY `fk_perfis_candidato_partidos1_idx` (`partidos_id`), ADD KEY `fk_perfis_candidato_area_atuacao1_idx` (`area_atuacao_id`); -- -- Indexes for table `perfis_candidato_acoes_extracurriculares` -- ALTER TABLE `perfis_candidato_acoes_extracurriculares` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfis_candidato_acoes_extracurriculares_perfis_candidat_idx` (`perfis_candidato_id`); -- -- Indexes for table `perfis_candidato_intencoes_voto` -- ALTER TABLE `perfis_candidato_intencoes_voto` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfis_candidato_intencoes_voto_perfis1_idx` (`perfis_id_candidato`), ADD KEY `fk_perfis_candidato_intencoes_voto_perfis2_idx` (`perfis_id_usuario`); -- -- Indexes for table `perfis_candidato_processos` -- ALTER TABLE `perfis_candidato_processos` ADD PRIMARY KEY (`id`,`perfis_candidato_id`), ADD KEY `fk_perfis_candidato_processos_perfis_candidato1_idx` (`perfis_candidato_id`); -- -- Indexes for table `periodos_eleitorais` -- ALTER TABLE `periodos_eleitorais` ADD PRIMARY KEY (`id`); -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_perfis1_idx` (`perfis_id`); -- -- Indexes for table `posts_comentarios` -- ALTER TABLE `posts_comentarios` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_comentarios_posts1_idx` (`posts_id`), ADD KEY `fk_posts_comentarios_perfis1_idx` (`perfis_id`); -- -- Indexes for table `posts_comentarios_curtidas` -- ALTER TABLE `posts_comentarios_curtidas` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_comentarios_curtidas_posts_comentarios1_idx` (`posts_comentarios_id`), ADD KEY `fk_posts_comentarios_curtidas_perfis1_idx` (`perfis_id`); -- -- Indexes for table `posts_comentarios_respostas` -- ALTER TABLE `posts_comentarios_respostas` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_comentarios_respostas_posts_comentarios1_idx` (`posts_comentarios_id`), ADD KEY `fk_posts_comentarios_respostas_perfis1_idx` (`perfis_id`); -- -- Indexes for table `posts_compartilhamentos` -- ALTER TABLE `posts_compartilhamentos` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_compartilhamentos_posts1_idx` (`posts_id`), ADD KEY `fk_posts_compartilhamentos_perfis1_idx` (`perfis_id`); -- -- Indexes for table `posts_curtidas` -- ALTER TABLE `posts_curtidas` ADD PRIMARY KEY (`id`), ADD KEY `fk_posts_curtidas_posts1_idx` (`posts_id`), ADD KEY `fk_posts_curtidas_perfis1_idx` (`perfis_id`); -- -- Indexes for table `produtos` -- ALTER TABLE `produtos` ADD PRIMARY KEY (`id`), ADD KEY `fk_produtos_categorias1_idx` (`categorias_id`); -- -- Indexes for table `produtos_fotos` -- ALTER TABLE `produtos_fotos` ADD PRIMARY KEY (`id`), ADD KEY `fk_produtos_fotos_produtos1_idx` (`produtos_id`); -- -- Indexes for table `profissoes` -- ALTER TABLE `profissoes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `projeto_meritus` -- ALTER TABLE `projeto_meritus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `projetos_lei` -- ALTER TABLE `projetos_lei` ADD PRIMARY KEY (`id`); -- -- Indexes for table `projetos_lei_has_curtidas` -- ALTER TABLE `projetos_lei_has_curtidas` ADD PRIMARY KEY (`id`), ADD KEY `fk_projetos_lei_has_perfis_perfis1_idx` (`perfis_id`), ADD KEY `fk_projetos_lei_has_perfis_projetos_lei1_idx` (`projetos_lei_id`); -- -- Indexes for table `repostas_comentarios_projetos` -- ALTER TABLE `repostas_comentarios_projetos` ADD PRIMARY KEY (`id`), ADD KEY `fk_repostas_comentarios_projetos_perfis1_idx` (`perfis_id`), ADD KEY `fk_repostas_comentarios_projetos_comentarios_projetos1_idx` (`comentarios_projetos_id`); -- -- Indexes for table `secoes` -- ALTER TABLE `secoes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seguidores` -- ALTER TABLE `seguidores` ADD PRIMARY KEY (`id`), ADD KEY `fk_perfis_has_perfis_perfis2_idx` (`perfis_id_amigo`), ADD KEY `fk_perfis_has_perfis_perfis1_idx` (`perfis_id`); -- -- Indexes for table `servicos_publicos` -- ALTER TABLE `servicos_publicos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `termos_de_uso` -- ALTER TABLE `termos_de_uso` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tipos_denuncia` -- ALTER TABLE `tipos_denuncia` ADD PRIMARY KEY (`id`); -- -- Indexes for table `usuarios` -- ALTER TABLE `usuarios` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `cpf_UNIQUE` (`cpf`); -- -- Indexes for table `videos` -- ALTER TABLE `videos` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `area_atuacao` -- ALTER TABLE `area_atuacao` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `candidatos_oficiais` -- ALTER TABLE `candidatos_oficiais` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT for table `candidatos_oficiais_votos` -- ALTER TABLE `candidatos_oficiais_votos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=230; -- -- AUTO_INCREMENT for table `categorias` -- ALTER TABLE `categorias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `certificacao` -- ALTER TABLE `certificacao` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `cidades` -- ALTER TABLE `cidades` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `codigo_eleitoral` -- ALTER TABLE `codigo_eleitoral` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comentarios_projetos` -- ALTER TABLE `comentarios_projetos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; -- -- AUTO_INCREMENT for table `denuncia_perfil` -- ALTER TABLE `denuncia_perfil` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; -- -- AUTO_INCREMENT for table `ead` -- ALTER TABLE `ead` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `eleicao` -- ALTER TABLE `eleicao` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42; -- -- AUTO_INCREMENT for table `enquete` -- ALTER TABLE `enquete` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `estados` -- ALTER TABLE `estados` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `eventos` -- ALTER TABLE `eventos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `experiencias_internacionais` -- ALTER TABLE `experiencias_internacionais` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `forum_topicos` -- ALTER TABLE `forum_topicos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58; -- -- AUTO_INCREMENT for table `forum_topicos_respostas` -- ALTER TABLE `forum_topicos_respostas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=215; -- -- AUTO_INCREMENT for table `fotos_galerias` -- ALTER TABLE `fotos_galerias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `galerias` -- ALTER TABLE `galerias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `graus_formacao` -- ALTER TABLE `graus_formacao` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `itens_enquete` -- ALTER TABLE `itens_enquete` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `itens_enquete_respostas` -- ALTER TABLE `itens_enquete_respostas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42; -- -- AUTO_INCREMENT for table `log_intencoes_voto` -- ALTER TABLE `log_intencoes_voto` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=267; -- -- AUTO_INCREMENT for table `meritadores_perfil` -- ALTER TABLE `meritadores_perfil` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `news_letter` -- ALTER TABLE `news_letter` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `noticias` -- ALTER TABLE `noticias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `noticias_comentarios` -- ALTER TABLE `noticias_comentarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `noticias_comentarios_respostas` -- ALTER TABLE `noticias_comentarios_respostas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `paises` -- ALTER TABLE `paises` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `partidos` -- ALTER TABLE `partidos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36; -- -- AUTO_INCREMENT for table `patrimonio_declarado` -- ALTER TABLE `patrimonio_declarado` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `pedidos` -- ALTER TABLE `pedidos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57; -- -- AUTO_INCREMENT for table `perfil_endereco` -- ALTER TABLE `perfil_endereco` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `perfis` -- ALTER TABLE `perfis` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=63; -- -- AUTO_INCREMENT for table `perfis_candidato` -- ALTER TABLE `perfis_candidato` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45; -- -- AUTO_INCREMENT for table `perfis_candidato_acoes_extracurriculares` -- ALTER TABLE `perfis_candidato_acoes_extracurriculares` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `perfis_candidato_intencoes_voto` -- ALTER TABLE `perfis_candidato_intencoes_voto` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=160; -- -- AUTO_INCREMENT for table `perfis_candidato_processos` -- ALTER TABLE `perfis_candidato_processos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `periodos_eleitorais` -- ALTER TABLE `periodos_eleitorais` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; -- -- AUTO_INCREMENT for table `posts_comentarios` -- ALTER TABLE `posts_comentarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=69; -- -- AUTO_INCREMENT for table `posts_comentarios_curtidas` -- ALTER TABLE `posts_comentarios_curtidas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30; -- -- AUTO_INCREMENT for table `posts_comentarios_respostas` -- ALTER TABLE `posts_comentarios_respostas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `posts_compartilhamentos` -- ALTER TABLE `posts_compartilhamentos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `posts_curtidas` -- ALTER TABLE `posts_curtidas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `produtos` -- ALTER TABLE `produtos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `produtos_fotos` -- ALTER TABLE `produtos_fotos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `profissoes` -- ALTER TABLE `profissoes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `projeto_meritus` -- ALTER TABLE `projeto_meritus` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `projetos_lei` -- ALTER TABLE `projetos_lei` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53; -- -- AUTO_INCREMENT for table `projetos_lei_has_curtidas` -- ALTER TABLE `projetos_lei_has_curtidas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `repostas_comentarios_projetos` -- ALTER TABLE `repostas_comentarios_projetos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT for table `secoes` -- ALTER TABLE `secoes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seguidores` -- ALTER TABLE `seguidores` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=96; -- -- AUTO_INCREMENT for table `servicos_publicos` -- ALTER TABLE `servicos_publicos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `termos_de_uso` -- ALTER TABLE `termos_de_uso` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tipos_denuncia` -- ALTER TABLE `tipos_denuncia` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `usuarios` -- ALTER TABLE `usuarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `videos` -- ALTER TABLE `videos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `candidatos_oficiais` -- ALTER TABLE `candidatos_oficiais` ADD CONSTRAINT `fk_candidatos_oficiais_eleicao1` FOREIGN KEY (`eleicao_id`) REFERENCES `eleicao` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_candidatos_oficiais_partidos1` FOREIGN KEY (`partidos_id`) REFERENCES `partidos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_candidatos_oficiais_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `candidatos_oficiais_votos` -- ALTER TABLE `candidatos_oficiais_votos` ADD CONSTRAINT `fk_perfis_has_candidatos_oficiais_candidatos_oficiais1` FOREIGN KEY (`candidatos_oficiais_id`) REFERENCES `candidatos_oficiais` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_perfis_has_candidatos_oficiais_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `cidades` -- ALTER TABLE `cidades` ADD CONSTRAINT `fk_cidades_estados1` FOREIGN KEY (`estados_id`) REFERENCES `estados` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `comentarios_projetos` -- ALTER TABLE `comentarios_projetos` ADD CONSTRAINT `fk_comentarios_projetos_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_comentarios_projetos_projetos_lei1` FOREIGN KEY (`projetos_lei_id`) REFERENCES `projetos_lei` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `denuncia_perfil` -- ALTER TABLE `denuncia_perfil` ADD CONSTRAINT `fk_denuncia_perfil_perfis1` FOREIGN KEY (`perfis_id_denunciado`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_denuncia_perfil_perfis2` FOREIGN KEY (`perfis_id_delator`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_denuncia_perfil_tipos_denuncia1` FOREIGN KEY (`tipos_denuncia_id`) REFERENCES `tipos_denuncia` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `eleicao` -- ALTER TABLE `eleicao` ADD CONSTRAINT `fk_eleicao_cidades1` FOREIGN KEY (`cidades_id`) REFERENCES `cidades` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_eleicao_estados1` FOREIGN KEY (`estados_id`) REFERENCES `estados` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_eleicao_paises1` FOREIGN KEY (`paises_id`) REFERENCES `paises` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `estados` -- ALTER TABLE `estados` ADD CONSTRAINT `fk_estados_paises1` FOREIGN KEY (`paises_id`) REFERENCES `paises` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `experiencias_internacionais` -- ALTER TABLE `experiencias_internacionais` ADD CONSTRAINT `fk_experiencias_internacionais_perfis_candidato1` FOREIGN KEY (`perfis_candidato_id`) REFERENCES `perfis_candidato` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `forum_topicos` -- ALTER TABLE `forum_topicos` ADD CONSTRAINT `fk_forum_topicos_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `forum_topicos_respostas` -- ALTER TABLE `forum_topicos_respostas` ADD CONSTRAINT `fk_forum_topicos_respostas_forum_topicos1` FOREIGN KEY (`forum_topicos_id`) REFERENCES `forum_topicos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_forum_topicos_respostas_forum_topicos_respostas1` FOREIGN KEY (`id_citacao`) REFERENCES `forum_topicos_respostas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_forum_topicos_respostas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `fotos_galerias` -- ALTER TABLE `fotos_galerias` ADD CONSTRAINT `fk_fotos_galerias_galerias` FOREIGN KEY (`galerias_id`) REFERENCES `galerias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `itens_enquete` -- ALTER TABLE `itens_enquete` ADD CONSTRAINT `fk_itens_enquete_enquete1` FOREIGN KEY (`enquete_id`) REFERENCES `enquete` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `itens_enquete_respostas` -- ALTER TABLE `itens_enquete_respostas` ADD CONSTRAINT `fk_itens_enquete_respostas_itens_enquete1` FOREIGN KEY (`itens_enquete_id`) REFERENCES `itens_enquete` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_itens_enquete_respostas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `log_intencoes_voto` -- ALTER TABLE `log_intencoes_voto` ADD CONSTRAINT `fk_log_intencoes_voto_perfis1` FOREIGN KEY (`perfis_id_candidato`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_log_intencoes_voto_perfis2` FOREIGN KEY (`perfis_id_usuario`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `meritadores_perfil` -- ALTER TABLE `meritadores_perfil` ADD CONSTRAINT `fk_meritadores_perfil_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_meritadores_perfil_perfis2` FOREIGN KEY (`perfis_id_amigo`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `noticias_comentarios` -- ALTER TABLE `noticias_comentarios` ADD CONSTRAINT `fk_comentarios_noticias1` FOREIGN KEY (`noticias_id`) REFERENCES `noticias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_noticias_comentarios_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `noticias_comentarios_respostas` -- ALTER TABLE `noticias_comentarios_respostas` ADD CONSTRAINT `fk_comentarios_respostas_comentarios1` FOREIGN KEY (`comentarios_id`) REFERENCES `noticias_comentarios` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_noticias_comentarios_respostas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `patrimonio_declarado` -- ALTER TABLE `patrimonio_declarado` ADD CONSTRAINT `fk_patrimonio_declarado_perfis_candidato1` FOREIGN KEY (`perfis_candidato_id`) REFERENCES `perfis_candidato` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `pedidos` -- ALTER TABLE `pedidos` ADD CONSTRAINT `fk_pedidos_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_pedidos_produtos1` FOREIGN KEY (`produtos_id`) REFERENCES `produtos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfil_endereco` -- ALTER TABLE `perfil_endereco` ADD CONSTRAINT `fk_perfil_endereco_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfis` -- ALTER TABLE `perfis` ADD CONSTRAINT `fk_perfis_graus_formacao1` FOREIGN KEY (`graus_formacao_id`) REFERENCES `graus_formacao` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_perfis_profissoes1` FOREIGN KEY (`profissoes_id`) REFERENCES `profissoes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfis_candidato` -- ALTER TABLE `perfis_candidato` ADD CONSTRAINT `fk_perfis_candidato_area_atuacao1` FOREIGN KEY (`area_atuacao_id`) REFERENCES `area_atuacao` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_perfis_candidato_partidos1` FOREIGN KEY (`partidos_id`) REFERENCES `partidos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_perfis_candidato_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfis_candidato_acoes_extracurriculares` -- ALTER TABLE `perfis_candidato_acoes_extracurriculares` ADD CONSTRAINT `fk_perfis_candidato_acoes_extracurriculares_perfis_candidato1` FOREIGN KEY (`perfis_candidato_id`) REFERENCES `perfis_candidato` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfis_candidato_intencoes_voto` -- ALTER TABLE `perfis_candidato_intencoes_voto` ADD CONSTRAINT `fk_perfis_candidato_intencoes_voto_perfis1` FOREIGN KEY (`perfis_id_candidato`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_perfis_candidato_intencoes_voto_perfis2` FOREIGN KEY (`perfis_id_usuario`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `perfis_candidato_processos` -- ALTER TABLE `perfis_candidato_processos` ADD CONSTRAINT `fk_perfis_candidato_processos_perfis_candidato1` FOREIGN KEY (`perfis_candidato_id`) REFERENCES `perfis_candidato` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `fk_posts_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts_comentarios` -- ALTER TABLE `posts_comentarios` ADD CONSTRAINT `fk_posts_comentarios_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_posts_comentarios_posts1` FOREIGN KEY (`posts_id`) REFERENCES `posts` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts_comentarios_curtidas` -- ALTER TABLE `posts_comentarios_curtidas` ADD CONSTRAINT `fk_posts_comentarios_curtidas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_posts_comentarios_curtidas_posts_comentarios1` FOREIGN KEY (`posts_comentarios_id`) REFERENCES `posts_comentarios` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts_comentarios_respostas` -- ALTER TABLE `posts_comentarios_respostas` ADD CONSTRAINT `fk_posts_comentarios_respostas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_posts_comentarios_respostas_posts_comentarios1` FOREIGN KEY (`posts_comentarios_id`) REFERENCES `posts_comentarios` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts_compartilhamentos` -- ALTER TABLE `posts_compartilhamentos` ADD CONSTRAINT `fk_posts_compartilhamentos_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_posts_compartilhamentos_posts1` FOREIGN KEY (`posts_id`) REFERENCES `posts` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `posts_curtidas` -- ALTER TABLE `posts_curtidas` ADD CONSTRAINT `fk_posts_curtidas_perfis1` FOREIGN KEY (`perfis_id`) REFERENCES `perfis` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_posts_curtidas_posts1` FOREIGN KEY (`posts_id`) REFERENCES `posts` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Database: `phpmyadmin` -- CREATE DATABASE IF NOT EXISTS `phpmyadmin` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `phpmyadmin`; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__bookmark` -- CREATE TABLE `pma__bookmark` ( `id` int(11) NOT NULL, `dbase` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `user` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `label` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `query` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Bookmarks'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__central_columns` -- CREATE TABLE `pma__central_columns` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `col_name` varchar(64) COLLATE utf8_bin NOT NULL, `col_type` varchar(64) COLLATE utf8_bin NOT NULL, `col_length` text COLLATE utf8_bin, `col_collation` varchar(64) COLLATE utf8_bin NOT NULL, `col_isNull` tinyint(1) NOT NULL, `col_extra` varchar(255) COLLATE utf8_bin DEFAULT '', `col_default` text COLLATE utf8_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Central list of columns'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__column_info` -- CREATE TABLE `pma__column_info` ( `id` int(5) UNSIGNED NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `column_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `comment` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `mimetype` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `transformation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `transformation_options` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `input_transformation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `input_transformation_options` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column information for phpMyAdmin'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__designer_settings` -- CREATE TABLE `pma__designer_settings` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `settings_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Settings related to Designer'; -- -- Extraindo dados da tabela `pma__designer_settings` -- INSERT INTO `pma__designer_settings` (`username`, `settings_data`) VALUES ('root', '{"angular_direct":"direct","snap_to_grid":"off","relation_lines":"true"}'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__export_templates` -- CREATE TABLE `pma__export_templates` ( `id` int(5) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL, `export_type` varchar(10) COLLATE utf8_bin NOT NULL, `template_name` varchar(64) COLLATE utf8_bin NOT NULL, `template_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Saved export templates'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__favorite` -- CREATE TABLE `pma__favorite` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `tables` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Favorite tables'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__history` -- CREATE TABLE `pma__history` ( `id` bigint(20) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `sqlquery` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='SQL history for phpMyAdmin'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__navigationhiding` -- CREATE TABLE `pma__navigationhiding` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `item_name` varchar(64) COLLATE utf8_bin NOT NULL, `item_type` varchar(64) COLLATE utf8_bin NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Hidden items of navigation tree'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__pdf_pages` -- CREATE TABLE `pma__pdf_pages` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `page_nr` int(10) UNSIGNED NOT NULL, `page_descr` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='PDF relation pages for phpMyAdmin'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__recent` -- CREATE TABLE `pma__recent` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `tables` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Recently accessed tables'; -- -- Extraindo dados da tabela `pma__recent` -- INSERT INTO `pma__recent` (`username`, `tables`) VALUES ('root', '[{"db":"site_cecor","table":"banners"},{"db":"blog","table":"posts"},{"db":"blog","table":"users"},{"db":"blog","table":"categorias"},{"db":"blog","table":"posts_tags"},{"db":"blog","table":"tags"},{"db":"blog2","table":"posts"},{"db":"blog","table":"comentarios"},{"db":"laravel","table":"users"},{"db":"laravel","table":"produtos"}]'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__relation` -- CREATE TABLE `pma__relation` ( `master_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Relation table'; -- -- Extraindo dados da tabela `pma__relation` -- INSERT INTO `pma__relation` (`master_db`, `master_table`, `master_field`, `foreign_db`, `foreign_table`, `foreign_field`) VALUES ('projeto-eduardo', 'alunos', 'id_grupo', 'projeto-eduardo', 'grupos', 'id'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__savedsearches` -- CREATE TABLE `pma__savedsearches` ( `id` int(5) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `search_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `search_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Saved searches'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__table_coords` -- CREATE TABLE `pma__table_coords` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `pdf_page_number` int(11) NOT NULL DEFAULT '0', `x` float UNSIGNED NOT NULL DEFAULT '0', `y` float UNSIGNED NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table coordinates for phpMyAdmin PDF output'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__table_info` -- CREATE TABLE `pma__table_info` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `display_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table information for phpMyAdmin'; -- -- Extraindo dados da tabela `pma__table_info` -- INSERT INTO `pma__table_info` (`db_name`, `table_name`, `display_field`) VALUES ('projeto-eduardo', 'alunos', 'id_grupo'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__table_uiprefs` -- CREATE TABLE `pma__table_uiprefs` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL, `prefs` text COLLATE utf8_bin NOT NULL, `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Tables'' UI preferences'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__tracking` -- CREATE TABLE `pma__tracking` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL, `version` int(10) UNSIGNED NOT NULL, `date_created` datetime NOT NULL, `date_updated` datetime NOT NULL, `schema_snapshot` text COLLATE utf8_bin NOT NULL, `schema_sql` text COLLATE utf8_bin, `data_sql` longtext COLLATE utf8_bin, `tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') COLLATE utf8_bin DEFAULT NULL, `tracking_active` int(1) UNSIGNED NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database changes tracking for phpMyAdmin'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__userconfig` -- CREATE TABLE `pma__userconfig` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `config_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User preferences storage for phpMyAdmin'; -- -- Extraindo dados da tabela `pma__userconfig` -- INSERT INTO `pma__userconfig` (`username`, `timevalue`, `config_data`) VALUES ('root', '2017-11-20 22:31:35', '{"lang":"pt","collation_connection":"utf8mb4_unicode_ci"}'); -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__usergroups` -- CREATE TABLE `pma__usergroups` ( `usergroup` varchar(64) COLLATE utf8_bin NOT NULL, `tab` varchar(64) COLLATE utf8_bin NOT NULL, `allowed` enum('Y','N') COLLATE utf8_bin NOT NULL DEFAULT 'N' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User groups with configured menu items'; -- -------------------------------------------------------- -- -- Estrutura da tabela `pma__users` -- CREATE TABLE `pma__users` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `usergroup` varchar(64) COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and their assignments to user groups'; -- -- Indexes for dumped tables -- -- -- Indexes for table `pma__bookmark` -- ALTER TABLE `pma__bookmark` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pma__central_columns` -- ALTER TABLE `pma__central_columns` ADD PRIMARY KEY (`db_name`,`col_name`); -- -- Indexes for table `pma__column_info` -- ALTER TABLE `pma__column_info` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`); -- -- Indexes for table `pma__designer_settings` -- ALTER TABLE `pma__designer_settings` ADD PRIMARY KEY (`username`); -- -- Indexes for table `pma__export_templates` -- ALTER TABLE `pma__export_templates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `u_user_type_template` (`username`,`export_type`,`template_name`); -- -- Indexes for table `pma__favorite` -- ALTER TABLE `pma__favorite` ADD PRIMARY KEY (`username`); -- -- Indexes for table `pma__history` -- ALTER TABLE `pma__history` ADD PRIMARY KEY (`id`), ADD KEY `username` (`username`,`db`,`table`,`timevalue`); -- -- Indexes for table `pma__navigationhiding` -- ALTER TABLE `pma__navigationhiding` ADD PRIMARY KEY (`username`,`item_name`,`item_type`,`db_name`,`table_name`); -- -- Indexes for table `pma__pdf_pages` -- ALTER TABLE `pma__pdf_pages` ADD PRIMARY KEY (`page_nr`), ADD KEY `db_name` (`db_name`); -- -- Indexes for table `pma__recent` -- ALTER TABLE `pma__recent` ADD PRIMARY KEY (`username`); -- -- Indexes for table `pma__relation` -- ALTER TABLE `pma__relation` ADD PRIMARY KEY (`master_db`,`master_table`,`master_field`), ADD KEY `foreign_field` (`foreign_db`,`foreign_table`); -- -- Indexes for table `pma__savedsearches` -- ALTER TABLE `pma__savedsearches` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `u_savedsearches_username_dbname` (`username`,`db_name`,`search_name`); -- -- Indexes for table `pma__table_coords` -- ALTER TABLE `pma__table_coords` ADD PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`); -- -- Indexes for table `pma__table_info` -- ALTER TABLE `pma__table_info` ADD PRIMARY KEY (`db_name`,`table_name`); -- -- Indexes for table `pma__table_uiprefs` -- ALTER TABLE `pma__table_uiprefs` ADD PRIMARY KEY (`username`,`db_name`,`table_name`); -- -- Indexes for table `pma__tracking` -- ALTER TABLE `pma__tracking` ADD PRIMARY KEY (`db_name`,`table_name`,`version`); -- -- Indexes for table `pma__userconfig` -- ALTER TABLE `pma__userconfig` ADD PRIMARY KEY (`username`); -- -- Indexes for table `pma__usergroups` -- ALTER TABLE `pma__usergroups` ADD PRIMARY KEY (`usergroup`,`tab`,`allowed`); -- -- Indexes for table `pma__users` -- ALTER TABLE `pma__users` ADD PRIMARY KEY (`username`,`usergroup`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `pma__bookmark` -- ALTER TABLE `pma__bookmark` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pma__column_info` -- ALTER TABLE `pma__column_info` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pma__export_templates` -- ALTER TABLE `pma__export_templates` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pma__history` -- ALTER TABLE `pma__history` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pma__pdf_pages` -- ALTER TABLE `pma__pdf_pages` MODIFY `page_nr` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pma__savedsearches` -- ALTER TABLE `pma__savedsearches` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT;-- -- Database: `projeto-eduardo` -- CREATE DATABASE IF NOT EXISTS `projeto-eduardo` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `projeto-eduardo`; -- -------------------------------------------------------- -- -- Estrutura da tabela `alunos` -- CREATE TABLE `alunos` ( `id` int(11) NOT NULL, `nome` varchar(100) DEFAULT NULL, `rua` varchar(100) DEFAULT NULL, `bairro` varchar(100) DEFAULT NULL, `numero` varchar(100) DEFAULT NULL, `cidade` varchar(100) DEFAULT NULL, `telefone` varchar(30) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `facebook` varchar(100) DEFAULT NULL, `identidade` varchar(50) DEFAULT NULL, `cpf` varchar(50) DEFAULT NULL, `escola` varchar(100) DEFAULT NULL, `ano_escolar` varchar(100) DEFAULT NULL, `data_nascimento` date DEFAULT NULL, `observacao` varchar(255) DEFAULT NULL, `id_grupo` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `alunos` -- INSERT INTO `alunos` (`id`, `nome`, `rua`, `bairro`, `numero`, `cidade`, `telefone`, `email`, `facebook`, `identidade`, `cpf`, `escola`, `ano_escolar`, `data_nascimento`, `observacao`, `id_grupo`) VALUES (5, 'Jardel Nathan', 'Alto da boa Vista', '', '', 'Itacambira', '', '[email protected]', '', 'as-32.132.132', '123.456.789-99', 'agostinho', '', '1997-05-22', ' ', 0), (4, 'Jardel Nathan', 'Alto da boa Vista', '', '', 'Itacambira', '', '[email protected]', '', 'as-32.132.132', '', 'asd', '', '1997-05-22', '', 0), (6, 'Jardel Nathan', 'Alto da boa Vista', '', '', 'Itacambira', '', '[email protected]', '', 'as-32.132.132', '', 'Faculdades Santo Agostinho - FASA', '', '1997-05-22', '', 0), (7, 'eduardo', '', '', '', '', '', '', '', 'mg-13.213.213', '008.997.787-87', 'fiunorte', '', '1988-11-05', '', 0), (8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5), (9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6), (10, 'Jardel Nathan', 'Alto da boa Vista', '231231231', '', 'Itacambira', '', '[email protected]', '1', '12-31.231.231', '123.212.312-13', '123', '123', '0000-00-00', '123123', 7); -- -------------------------------------------------------- -- -- Estrutura da tabela `grupos` -- CREATE TABLE `grupos` ( `id` int(11) NOT NULL, `descricao` varchar(100) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `grupos` -- INSERT INTO `grupos` (`id`, `descricao`) VALUES (7, 'teste'); -- -- Indexes for dumped tables -- -- -- Indexes for table `alunos` -- ALTER TABLE `alunos` ADD PRIMARY KEY (`id`), ADD KEY `fk_alunos_grupos_idx` (`id_grupo`); -- -- Indexes for table `grupos` -- ALTER TABLE `grupos` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `alunos` -- ALTER TABLE `alunos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `grupos` -- ALTER TABLE `grupos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;-- -- Database: `site_cecor` -- CREATE DATABASE IF NOT EXISTS `site_cecor` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `site_cecor`; -- -------------------------------------------------------- -- -- Estrutura da tabela `agendamentos` -- CREATE TABLE `agendamentos` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `telefone` varchar(20) DEFAULT NULL, `dia` varchar(40) DEFAULT NULL, `parte_dia` int(11) NOT NULL, `mensagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendamentos` -- INSERT INTO `agendamentos` (`id`, `nome`, `email`, `telefone`, `dia`, `parte_dia`, `mensagem`) VALUES (8, 'asdad', '12312', '(12) 3 2323-2332', '4', 2, 'asd'), (9, 'asd', '[email protected]', '(', '2', 2, 'wda'), (10, 'Jardel Nathan', '[email protected]', '(', '2', 2, ''), (11, 'Jardel Nathan de Souza Rodrigues', '[email protected]', '(38) 9 9913-694', '5', 2, 'as'); -- -------------------------------------------------------- -- -- Estrutura da tabela `agendas` -- CREATE TABLE `agendas` ( `id` int(11) NOT NULL, `dia` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendas` -- INSERT INTO `agendas` (`id`, `dia`) VALUES (1, 'Domingo'), (2, 'Segunda-feira'), (3, 'Terça-feira'), (4, 'Quarta-feira'), (5, 'Quinta-feira'), (6, 'Sexta-feira'), (7, 'Sábado'); -- -------------------------------------------------------- -- -- Estrutura da tabela `agendas_horarios` -- CREATE TABLE `agendas_horarios` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `agendas_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendas_horarios` -- INSERT INTO `agendas_horarios` (`id`, `descricao`, `agendas_id`) VALUES (1, '7:30 às 10:30 h - Complexo Médico Pró-vida - Endereço: Av. Nossa Sra. de Fátima, 719, São Judas Tadeu, Montes Claros - MG - Telefone: (38) 2211-6000', 2), (3, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 2), (5, '7:00 às 12:00 h - Centro Cirúrgico Hospital Dilson Godinho - Endereço: Av. Geraldo Ataíde, 480, Alto São João, Montes Claros - MG - Telefone: (38) 3229-4000', 3), (6, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 3), (7, '8:00 às 12:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 4), (8, '13:30 às 16:30 h - Complexo Médico Pró-vida - Endereço: Av. Nossa Sra. de Fátima, 719, São Judas Tadeu, Montes Claros - MG - (38) 2211-6000', 4), (9, '8:00 às 12:00 h - Clínica Medic Center - Endereço: Av. Bias Fortes, 1030 A, Dona Joaquina, Brasília de Minas - MG - Telefone: (38) 3231-3002', 5), (10, '14:00 às 18:00 h - Centro cirúrgico do Hospital das Clínicas Mário Ribeiro - Endereço: Rua Plínio Ribeiro, 539, Jardim Brasil, Montes Claros - MG - Telefone: (38) 3218-8161', 5), (11, '8:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 6), (12, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 6); -- -------------------------------------------------------- -- -- Estrutura da tabela `banners` -- CREATE TABLE `banners` ( `id` int(11) NOT NULL, `titulo` varchar(255) NOT NULL, `imagem` varchar(45) DEFAULT NULL, `titulo_destaque` text NOT NULL, `descricao` varchar(255) DEFAULT NULL, `link` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `banners` -- INSERT INTO `banners` (`id`, `titulo`, `imagem`, `titulo_destaque`, `descricao`, `link`) VALUES (6, 'banner1', '59430ad6bc82f7458a6b01e06798a894.jpg', '<p>asda</p>', '<p>sd</p>', 'asd'), (7, 'asd', '12afc0adb8bea3d4b726086cce29add6.jpg', 'asdasd', 'asda', 'sd'); -- -------------------------------------------------------- -- -- Estrutura da tabela `categorias_cirurgias` -- CREATE TABLE `categorias_cirurgias` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `categorias_cirurgias` -- INSERT INTO `categorias_cirurgias` (`id`, `nome`, `nome_url`) VALUES (1, 'Estéticos da face', 'esteticos-da-face'), (3, 'Crânio-Maxilo- Facial:', 'cranio-maxilo-facial'), (4, 'Otorrino', 'otorrino'); -- -------------------------------------------------------- -- -- Estrutura da tabela `cirurgias` -- CREATE TABLE `cirurgias` ( `id` int(11) NOT NULL, `categorias_cirurgias_id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto_breve` varchar(500) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `cirurgias` -- INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (3, 1, 'Rinoplastia (Plástica do Nariz)', 'rinoplastia-plastica-do-nariz', '4a700d0b6213eddc2c3c7292e7947388.jpg', 'A Rinoplastia ou cirurgia plástica do nariz é um procedimento cirúrgico para alterar a aparência externa, com o objetivo de melhorar características específicas do nariz e harmonizar a face.', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A Rinoplastia ou cirurgia plástica do nariz é um procedimento cirúrgico para alterar a aparência externa, com o objetivo de melhorar características específicas do nariz e   harmonizar a face.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O nariz é um dos atributos mais proeminentes e notáveis de toda a face e exerce um efeito importante na aparência geral. Além disso, exerce a função de permitir a passagem do ar controlando a sua umidade, temperatura e pureza antes de atingir os pulmões. A cirurgia estética nasal tem repercussão funcional e o contrário pode também acontecer. Dessa forma, é praticamente impossível uma Rinoplastia sem uma abordagem funcional integrada.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Do ponto de vista cirúrgico, a rinoplastia é diferente de vários outros procedimentos pelo seu aspecto dinâmico. As estruturas nasais se movem, não somente durante, mas no período pós operatório também. Assim, o cirurgião deve prever e se antecipar a todas as modificações que possa acontecer, através de técnicas específicas.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A rinoplastia é muito interativa, e quanto mais o cirurgião aprende a interpretar as mudanças intra-operatórias e entender o que elas representam, melhor se torna o seu julgamento e maior controle ele terá de seu resultado. Ela oferece, talvez mais do que qualquer outro procedimento estético, a possibilidade de individualizar o resultado. Mais ainda: <b>Sucesso na rinoplastia requer que o resultado seja individualizado!</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Rinoplastia estruturada:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A rinoplastia  ainda é vista nos dias de hoje por muitos cirurgiões não especialistas como uma cirurgia simples cujo objetivo principal é reduzir o nariz através da remoção de tecidos (osso e cartilagem). No entanto, esta abordagem simplista enfraquece o suporte das estruturas  do nariz, levando a deformidades estéticas e até mesmo colapso de partes do nariz, repercutindo também na função respiratória. Estas complicações frequentemente levam o paciente  a procura de uma rinoplastia revisional (secundária).</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Em se tratando da rinoplastia, forma e função são inseparáveis, e os cirurgiões devem entender como as várias mudanças na aparência nasal, mesmo que sutis,  podem afetar o fluxo respiratório. Devem entender que, na maioria das manobras realizadas durante o procedimento, seja para reduzir o dorso, seja para refinar a ponta, existem implicações funcionais. Este conhecimento deve ser usado a favor do cirurgião para previnir os problemas respiratórias após a rinoplastia (ainda muito comuns), assim como para tratar  e restaurar a função , e a estética, em casos secundários.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Durante toda minha formação cirúrgica, tanto na cirurgia Craniofacial e na Otorrinolaringologia, tenho praticado e sido adepto à Rinoplastia Estruturada, que favorece a preservação da integridade estrutural do nariz, ao mesmo tempo que usa enxerto (do próprio paciente) para restaurar a sustentação e reforçar as áreas de fraqueza do nariz  após as modificações necessárias. Esta filosofia de trabalho proporciona resultados mais naturais e duradouros prevenindo, assim, complicações estéticas e funcionais.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Rinoplastia feira pelo otorrino:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A Rinoplastia é considerada por todos os especialistas na área como a cirurgia estética mais complexa da face, pelo fato do nariz apresentar uma infinidade de variações anatômicas, que requerem decisões acertadas sobre as indicações de cada umas das várias técnicas cirúrgicas existentes. Ela pode ser realizada tanto por otorrinolaringologistas como por cirurgiões plásticos, desde que tenham o devido treinamento específico na área.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A<b> American Academy of Facial Plastic and Reconstructive Surgery</b> , a maior e principal associação de cirurgia plástica facial do mundo, formada na sua grande maioria por otorrinolaringologistas, vem dando suporte no desenvolvimento e aperfeiçoamento da rinoplastia e outras cirurgias plásticas faciais desde 1972. A grande maioria das cirurgias plásticas faciais nos EUA já são realizadas por otorrinos treinados na área, através do programa de Fellowship. Aqui no Brasil, já existe dentro da <b>Associação Brasileira de Otorrinolaringologia e Cirurgia Cérvico Facial a Academia Brasileira de Cirurgia Plástica da Face</b>, associação que vem desempenhando este papel há vários anos, promovendo vários cursos intensivos em todo o país, além da organização de congressos específicos de Rinoplastia com a presença dos maiores especialistas do Brasil e do mundo.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Independente da especialidade que pertença o Cirurgião, o candidato à rinoplastia deve buscar informações  sobre a formação e treinamento de seu médico, assim como a experiência adquirida na área de  rinoplastia. Este treinamento específico é o principal fator determinante para o sucesso da cirurgia  e satisfação do paciente.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Dicas para escolher seu médico:</b></span></font></p><ol><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Informe-se bem sobre o procedimento e sobre o profissional que irá te atender. Os resultados da cirurgia nasal duram uma vida.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><span style="font-size: 14px; color: rgb(27, 27, 27); font-family: Raleway, sans-serif;">Verifique se o seu problema requer uma solução nasal dupla. Diversas técnicas cirúrgicas – funcionais e estéticas – podem ser necessárias, e devem ser combinadas em uma única operação.</span></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Verifique se o cirurgião tem treinamento especializado em cirurgia estética e funcional.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Lembre-se que a cirurgia estética pode distorcer a forma do seu nariz. O cirurgião é capaz de restaurar a sua respiração, assegurando simultaneamente a forma natural de seu nariz?</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Certifique-se que o seu cirurgião entende seus problemas, necessidades e expectativas.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Não prossiga com a cirurgia, a menos que você esteja feliz com o diagnóstico e a recomendação.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Se você tiver dúvidas, peça uma segunda opinião!</span><br><br><br><br></font><br></li></ol><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br></font></p><div style="text-align: justify;"><p></p></div>', '2017-10-19 23:02:20'), (4, 1, 'Otoplastia (Plástica das Orelhas)', 'otoplastia-plastica-das-orelhas', 'ed31571c18a8ae99fdf7ed3e21676c4b.jpg', 'O termo otoplastia refere-se à cirurgia plástica das orelhas, podendo corresponder a várias técnicas, dependendo do problema a ser tratado. Em geral o termo é usado para indicar a correção de orelhas proeminentes (de abano), porém outros problemas como sequelas de traumas, ausência congênita das orelhas e orelhas constritas também são tratadas com técnicas de otoplastia.', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>O que é a otoplastia?</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O termo otoplastia refere-se à cirurgia plástica das orelhas, podendo corresponder a várias técnicas, dependendo do problema a ser tratado. Em geral o termo é usado para indicar a correção de orelhas proeminentes (de abano), porém outros problemas como sequelas de traumas, ausência congênita das orelhas e orelhas constritas também são tratadas com técnicas de otoplastia.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Indicações da otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">As correções de orelha são realizadas para minimizar deformidades, tentar corrigir assimetrias de forma, tamanho e angulação no caso do abano, em orelhas mal formadas de nascença ou que sofreram deformidades após um traumatismo.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Existe desde o grau mais leve até o mais grave de orelhas em abano, porém a indicação cirúrgica é baseada no grau de incômodo que o paciente apresenta.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A idade mínima situa-se entre seis e sete anos de idade. Nessa faixa etária já houve finalização do crescimento das orelhas, de modo que a cirurgia não irá interferir no crescimento. Também coincide com a idade escolar de alfabetização, quando a criança começa a se incomodar com as orelhas proeminentes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Como é feita a cirurgia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A anestesia mais comumente usada é a local com sedação. A cirurgia se inicia com uma incisão atrás da orelha, seguindo a dobra natural da pele. É, então, realizada a retirada do excesso de pele e em seguida é feito o ligamento da cartilagem, para deixa-la mais flexível. Em alguns casos pode ser feita a retirada de cartilagem para diminuição da orelha. Logo em seguida são feitos pontos de fixação para manter uma nova anatomia da orelha e realizando o fechamento da pele. Em geral, os pontos são internos e absorvíveis, não precisam, portanto, ser retirados. A cirurgia tem duração média de uma hora.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Antes da cirurgia:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Consulta médica:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Uma boa consulta pré-operatória, além de preparar o paciente para a cirurgia, deverá fazer com que ele compreenda seu problema, compreenda a solução proposta, riscos e benefícios do procedimento, e alinhe a expectativa ideal com as possibilidades de tratamento e que tipo de resultado poderá ser alcançado.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Exames</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A otoplastia requer que sejam realizados todos os exames pré-operatórios preconizados. Entre eles estão o exame de sangue, composto por hemograma e coagulograma completos, e o eletrocardiograma.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Medicações</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Deve ser interrompido o uso de qualquer outro remédio que altere a coagulação do sangue, entre eles: ácido acetilsalicílico (AAS), gingko biloba, cascara sagrada e clopidogrel. O ideal é que a manutenção do uso dos medicamentos seja feira regularmente, principalmente em casos de pacientes com hipertensão e diabetes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Jejum</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">São necessárias aproximadamente oito horas de jejum de sólidos e líquidos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Após a cirurgia:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Internação</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O tempo médio de internação é de oito a doze horas.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Curativos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Os curativos são geralmente realizados com pomada cicatrizante e gaze. Ele é realizado no final da cirurgia e retirado após um período de 24 a 48 horas da cirurgia no consultório pelo médico. Se houver necessidade de novo curativo, o paciente (ou seu responsável) será orientado como fazê-lo. Deverá ser utilizada uma faixa de tecido compressiva específica nos casos de correção de abano, retirada apenas para o banho, mas utilizada 24 horas por dia, por um mês.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O paciente deverá deixar a região da cicatriz limpa e seca, lavando com cuidado no banho e secando cuidadosamente após, segundo orientação do médico.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Dor</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Sempre são prescritos analgésicos, mas geralmente não há dor, há apenas uma sensação de incômodo. Se houver dor importante, o médico deverá ser avisado para que examine e oriente.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Inchaço e vermelhidão</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">É normal que haja edema (inchaço) e vermelhidão. Com o passar dos dias este aspecto vai melhorando até a cicatrização se completar.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Medicação</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Analgésicos comuns são prescritos de rotina para o pós-operatório, e os pacientes são orientados a tomar se tiverem dor. Anti-inflamatórios também poderão ser prescritos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Volta às atividades normais e exercícios físicos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Em crianças, recomenda-se aguardar uma semana para voltar à escola, para evitar o risco de trauma nas orelhas recém-operadas. Nos casos mais simples, pode-se retornar às aulas em três dias. Nos adultos, geralmente em dois dias. Atividade física deverá ser&nbsp; iniciada após 15 dias, leve no início e evitando-se trauma no local operado.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Uso de óculos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O uso dos óculos é liberado até por cima do curativo, preso com esparadrapo na faixa, desde que não aperte demais a cabeça. Quando for retirado o curativo, deve-se tomar cuidado com os óculos apertados à cabeça, ou atrás da orelha, que deverão ser reajustados à face. Alguns pacientes aprendem a prender as hastes dos óculos acima da inserção da orelha à cabeça, com o uso da própria faixa que deverão usar por 30 dias.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Retorno ao consultório médico</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O primeiro retorno é em 24 a 48 horas, para remoção do curativo e avaliação médica, e então serão combinados os próximos retornos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Cicatrizes e queloide</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Nas cirurgias de correção de abano, as cicatrizes ficam escondidas na parte posterior da orelha, na junção da orelha ao crânio. Há casos que necessitam incisões na parte da frente da orelha, mas procura-se escondê-las nas dobras naturais da pele. A cicatriz chamada de queloide, esteticamente desfavorável, pode ocorrer em alguns pacientes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Contraindicações à otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A infecção de ouvido contraindica a cirurgia, pois a proximidade com o local que será operado faz com que haja maior risco de infecção na ferida ou na cartilagem da orelha.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Infecções em outros locais também são contra indicações para o procedimento, tais como gripes mais intensas, infecções urinarias, amigdalites. A presença de doenças de base mal controladas, como hipertensão e diabetes, são contraindicações para qualquer procedimento plástico, devendo essas doenças serem controladas antes da otoplastia.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O tabagismo é uma contraindicação relativa, o paciente é aconselhado a deixar de fumar por duas semanas antes e 30 dias após a cirurgia, devido ao risco de afetar a cicatrização.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Riscos da otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Pode haver sangramento, hematoma, dor, inchaço maior que o esperado, infecção, ou mesmo permanecer uma assimetria, principalmente em orelhas de adultos, que têm a cartilagem mais dura, tendendo a perder o ângulo da correção e voltar ao abano.</span><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b></b></span><br><br><br><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br></font></p>', '2017-10-19 23:02:35'), (5, 1, 'Mentoplastia (Cirurgia do Queixo)', 'mentoplastia-cirurgia-do-queixo', 'ccfc7efa2e07b0bc7a8a6b29187f662f.jpg', 'A cirurgia para aumentar o queixo é capaz de trazer uma harmonia facial. O que pode ter efeitos positivos no quesito aparência, auto estima e segurança. ', '<p>A cirurgia para aumentar o queixo é capaz de trazer uma harmonia facial. O que pode ter efeitos positivos no quesito aparência, auto estima e segurança.&nbsp;</p><p><b>Tipos de cirurgia</b></p><p>O aumento de mento, aumento de queixo ou Mentoplastia é um procedimento cirúrgico para remodelar o queixo que pode ser aumentada através da colocação de implantes, osteotomia (cortar o osso) ou, em alguns casos, pode-se optar pelo uso de alguns preenchedores. A lipoescultura neste caso, é muito bem vinda.</p><p>Os dois tipos de implantes mais utilizados são o de polietileno poroso de alta densidade e o de silicone. A vantagem do primeiro é que o material é mais aceito pelo organismo (biocompatível), tem menor índice de efeitos adversos e vem se tornando a primeira escolha.</p><p>Na osteotomia de mento não há necessidade da inclusão de implantes, e o aumento do queixo é realizado através de seu reposicionamento anterior e fixação com mini placas de titânio e parafusos. A incisão, tanto na osteotomia quanto com o uso de implante, é posicionada dentro da boca (sulco gengival). É imprescindível a avaliação da oclusão dentária e das projeções da face para o resultado adequado.</p><p><b>Para quem é indicada?</b></p><p>É recomendada para pacientes que têm queixo pequeno e retraído com boa oclusão dentária, ou seja, a pessoa candidata a esta cirurgia não deve apresentar alteração de sua mordida. Por isso, são feitas análises das proporções estéticas da face.</p><p><b>É comum operar queixo junto com o nariz?</b></p><p>É comum o paciente chegar ao consultório achando que seu nariz é grande quando, muitas vezes, o que existe é uma associação de nariz grande e queixo pequeno. Essa impressão errada acontece porque a harmonia facial na visão de perfil é muito dependente da relação entre o queixo e o nariz.</p><p>O nariz pode até nem ser grande, mas parecer se o queixo for pequeno quando analisadas aquelas proporções faciais.</p><p></p><p>À associação entre cirurgia de nariz e mentoplastia dá-se o nome de perfiloplastia, cujo objetivo é melhorar a harmonia das proporções da face.</p><p><b>Pré operatório</b></p><p>O pré-operatório passa por uma análise facial bem como uma história médica e odontológica completas. O tratamento ortodôntico muitas vezes deve ser feito antes da mentoplastia. Isso porque os dentes influenciam a posição dos lábios e estes determinam a estética do perfil, por isso é essencial corrigir as más posições dentárias.</p><p>Os exames pré-operatório variam conforme a idade e estado de saúde, mas os principais são:</p><ul><li>Hemograma, coagulogama, creatinina, glicemia de jejum;</li><li>Rx de tórax PA/P;</li><li>Eletrocardiograma.</li></ul><p><b>Como é feita a cirurgia?</b></p><p>A cirurgia de mentoplastia pode ser feita com uso de implante ou através de fraturas no osso do mento e seu avanço. Dentre os implantes, o melhor é o polietileno poroso – POREX®. Tanto o uso de POREX® quanto a mentoplastia de avanço com fratura são boas opções; a fratura pode ser indicada em casos de hipomentonismo (queixo pequeno) associado a alguns problemas de ronco.</p><p>A incisão de ambas é de 4 cm por dentro da boca e a cicatriz fica imperceptível. O paciente é orientado a ter uma higiene bucal mais cuidadosa nos primeiros 14 dias. O resultado final ocorre em 4-6 meses, com resultados já visíveis dentro das 2 primeiras semanas.</p><p>Caso opte-se por uso de POREX, o mesmo é fixado ao osso com 2 parafusos. Já na mentoplastia de avanço não é usado implante, mas são usados uma placa especial de titânio e 5 parafusos.</p><p></p><p>As duas cirurgias são realizadas com anestesia geral ou local com sedação, com duração de 2 horas.</p><p><b>O pós operatório da Mentoplastia é muito doloroso?</b></p><p>Geralmente não há dor no pós-operatório. Quando ocorre um discreto desconforto, poderemos neutralizá-la com o uso de analgésicos comuns.</p><p></p><p>Pode haver uma diminuição da sensibilidade que pode durar de 2 a 3 meses.</p><p><b>Como é a recuperação da cirurgia de Mentoplastia?</b></p><p>A recuperação exige alguns cuidados especiais, tais como:</p><ul><li>Evitar sol e traumatismos locais no pós-operatório;</li><li>Retornar ao consultório nos dias e horários estabelecidos;</li><li>Escovar os dentes com escova macia e reforçar a higiene bucal com soluções antissépticas ;</li><li>Necessário fazer uso correto de medicação para dor, inflamação e prevenção de infecção por 7 dias;</li><li>Não se preocupar com o “inchaço” natural do queixo, que poderá persistir por algumas semanas;</li><li>Deitar de barriga para cima;</li><li>Compressas geladas locais por 2-3 dias são;</li><li>Evitar alimentos sólidos que exijam mastigação intensa nos primeiros dias. Alimentação livre, a partir do segundo dia, principalmente à base de proteínas (carnes, leite, ovos) e vitaminas (frutas);</li><li>Recomenda-se fazer uma adequada avaliação ortodôntica e odontológica. Se necessário, deve-se realizar uma avaliação por um Cirurgião Buco-Maxilo-Facial;</li><li>É indicado a realização da drenagem linfática no pescoço para acelerar o processo de desinchar o edema.</li></ul><p><b>Como é a cicatriz?</b></p><p>A cicatriz mede 4 cm e fica por dentro da boca.</p><p><b>Qual a vantagem da Mentoplastia cirúrgica em relação ao preenchimento?</b></p><p>Enquanto a cirurgia tem duração para toda a vida do paciente, o preenchimento dura de 18-24 meses e seu resultado é bem mais modesto.</p><p>Porém, o preenchimento tem como principal vantagem o preço, uma vez que não é necessário arcar com custos de hospital, equipe médica e material, e não necessita de internação e recuperação pós-operatória.</p><p><b></b><br><br></p><p><b></b><br></p>', '2017-11-22 17:29:50'), (6, 1, 'Blefaroplastia (Plástica das Pálpebras)', 'blefaroplastia-plastica-das-palpebras', '8f62d0423ddb9dda0ba977c3a9591370.jpg', 'É um procedimento cirúrgico realizado para melhorar a aparência das pálpebras superiores, inferiores ou de ambas. A cirurgia proporciona uma aparência rejuvenescida ao redor dos olhos, fazendo com que o olhar não tenha o visual de cansado e caído.', '<p><b>O que é a cirurgia das pálpebras?</b></p><p>É um procedimento cirúrgico realizado para melhorar a aparência das pálpebras superiores, inferiores ou de ambas. A cirurgia proporciona uma aparência rejuvenescida ao redor dos olhos, fazendo com que o olhar não tenha o visual de cansado e caído.</p><p><b>Como a blefaroplastia é realizada e após quanto tempo os resultados são visíveis?</b></p><p>O procedimento dura por volta de 45 a 90 minutos, sob anestesia local com sedação ou anestesia geral. É necessário que o paciente fique internado por um período de 6h a 8h para observação.</p><p><b>Resultados</b></p><p>Logo na primeira semana, é possível ver os primeiros resultados, que se tornam mais evidentes após dois ou três meses com a diminuição do inchaço, com seu resultado final depois de seis meses a um ano.</p><p>Os melhores resultados aparecem em pacientes que têm a pele das pálpebras mais firme, pois se a região é muito flácida, a probabilidade de a pálpebra cair novamente é maior.</p><p><b>Quais são os seus benefícios e para quem a cirurgia é indicada?</b></p><p>A cirurgia é indicada para pessoas com grande quantidade e flacidez de pele nas pálpebras, e o seu principal benefício é o rejuvenescimento da pele na área dos olhos.</p><p>Na pálpebra superior, a cirurgia remove o depósito elevado de gordura que aparenta inchaço, e na pálpebra inferior retira o excesso de pele e rugas finas. Remove também a sobra de pele que resulta em dobras ou atrapalha o contorno natural da pálpebra superior — às vezes, prejudicando a visão.</p><p>Bolsas sob os olhos também podem ser corrigidas, assim como a queda das pálpebras inferiores. Além disso, a cirurgia também é recomendada para a remoção de xantelasmas, que são pequenas bolinhas de colesterol que se formam nessa região.</p><p><b>Quais riscos a blefaroplastia oferece e quais são os cuidados pós-operatórios da cirurgia?</b><br></p><p>Assim como outras intervenções cirúrgicas, a blefaroplastia oferece riscos à saúde do paciente, como complicações cardíacas e pulmonares e os riscos relacionados à anestesia, à alteração da frequência cardíaca e à pressão arterial. Por isso, é necessário procurar um profissional de confiança e realizar a cirurgia em um local adequado.</p><p></p><p>Após a cirurgia, os olhos podem ficar temporariamente ou permanentemente secos, sendo necessário o uso frequente de colírios. Pode ocorrer também uma disfunção envolvendo a posição anormal das pálpebras superiores, pele solta e fechamento inadequado da pálpebra, com exposição da conjuntiva e frouxidão anormal da pálpebra inferior.</p><p><b>Pós-operatório</b></p><p>No pós-operatório, devem ser seguidas todas as recomendações do médico responsável, como evitar cigarro, a ingestão de antibiótico e analgésicos, o uso correto de colírios, a higienização e o repouso. É importante que, durante o período de cicatrização, o local da cirurgia não sofra esforço excessivo, escoriação ou movimento.</p><p>Entre outros cuidados após o procedimento, deve-se usar uma pomada lubrificante e fazer compressas frias no local, e o uso de óculos escuros deve ser feito por cerca de 30 dias até que a cicatrização esteja completa.</p><p><b></b><br></p>', '2017-11-22 17:30:09'), (7, 1, 'Bichectomia (Redução do volume das bochechas)', 'bichectomia-reducao-do-volume-das-bochechas', '9cdc4c2ea0ff6ad47de59e6137839a8f.jpg', 'A bichectomia é a cirurgia em que há a retirada total ou mesmo parcial de duas bolsas de gorduras presentes uma em cada lado da boca, entre o maxilar e a mandíbula, chamadas de "bolas de Bichat". A finalidade da bichectomia é puramente estética: reduzir o volume da parte de baixo do rosto, por isso, é uma cirurgia controversa.', '<p><b>O que é a bichectomia</b></p><p>A bichectomia é a cirurgia em que há a retirada total ou mesmo parcial de duas bolsas de gorduras presentes uma em cada lado da boca, entre o maxilar e a mandíbula, chamadas de "bolas de Bichat". A finalidade da bichectomia é puramente estética: reduzir o volume da parte de baixo do rosto, por isso, é uma cirurgia controversa.</p><p>Com o passar da idade e a retirada dessas bolsas de gordura pode acarretar em uma aparência mais envelhecida, principalmente se for total.</p><p><b>Indicações da bichectomia</b></p><p>A bichectomia é uma cirurgia puramente estética e pode ser realizada por pessoas que querem afinar o rosto.</p><p><b>Pré-requisitos para fazer a cirurgia</b></p><p>É importante que seja feita uma avaliação clínica pelo profissional que executará a cirurgia, para que ele possa avaliar se há indicação e quais são as expectativas da paciente quanto ao tratamento.</p><p></p><p>Depois disso, é importante que o paciente faça os exames pré-cirúrgicos, que incluem hemograma completo, coagulograma e glicemia, para ver se ele está em condições de saúde para realizar a cirurgia. Além disso, é importante que o paciente passe pela avaliação de um cardiologista, se o médico achar necessário.</p><p><b>Contraindicações para bichectomia</b></p><p>Pessoas com problemas de saúde, como doenças infecciosas ativas, são contraindicadas a fazer esse tipo de cirurgia. Além disso, pessoas com uma expectativa irreal sobre o procedimento não devem realizar esse tipo de operação.</p><p><b>Como é feita bichectomia</b></p><p>A cirurgia é intraoral, ou seja, o corte é feito dentro da boca, pois as mucosas bucais tem uma melhor cicatrização e não deixam marca aparente. Nesses casos o paciente recebe anestesia local e sedação.</p><p><b>Duração da cirurgia</b></p><p>O tempo de duração da cirurgia dependerá da experiência do médico e de quaisquer eventuais complicações. Mas a bichectomia dura em média entre uma hora e uma hora e meia.<br><br><b>Possíveis complicações da bichectomia</b></p><p>As possíveis complicações são hemorragia, infecção local, formação de hematomas, e lesões à nervos que podem levar distúrbios sensitivos ou paralisias faciais.</p><p><b>Pré-operatório da bichectomia</b></p><p>Além da realização dos exames pré-operatórios (glicemia, coagulograma e hemograma completo) e da avaliação cardiológica, é importante que antes da bichectomia o paciente realize jejum de oito horas.</p><p><b>Pós-operatório da bichectomia</b></p><p>Normalmente ocorre um inchaço na região, devido ao corte cirúrgico, que pode ser tratado com o uso de compressas de água fria. Deve-se evitar consumir alimentos cítricos, que podem causar maior desconforto.</p><p>O retorno às atividades normais em geral demora uma semana e a volta das atividades físicas em torno de 3 semanas.</p><p><b></b><br></p><p><br><br></p>', '2017-11-22 17:30:36'), (8, 1, 'Lipoaspiração de Papada', 'lipoaspiracao-de-papada', '25631061145248f50d59197b18881f61.jpg', 'O tratamento da papada pode ser feito através de uma lipoaspiração da região cervical. Pequenas incisões são feitas para a introdução de cânulas bem pequenas para aspirar a gordura.', '<p>O tratamento da papada pode ser feito através de uma lipoaspiração da região cervical. Pequenas incisões são feitas para a introdução de cânulas bem pequenas para aspirar a gordura.</p><p><b>Como é feita a lipo de papada?</b></p><p>A cirurgia é realizada com anestesia local e não há necessidade de internação. O procedimento tem duração média de 30 a 40 minutos.</p><p>Após a infiltração da região com anestésico local é utilizado uma fibra de 2mm de largura para liberar a energia na região. O processo de aplicação do laser dura em média 15 minutos para essa região. Em seguida é realizada a aspiração da gordura “derretida”.</p><p>Para a cirurgia é realizada uma pequena incisão de 4mm abaixo do queixo. Para o fechamento da incisão é necessário apenas um ponto que é removido com 1 semana de pós operatório.</p><p><b>Recuperação após da lipo da papada</b></p><p>Em 72 horas o paciente já pode retornar às suas atividades diárias. Em 5 dias já é possível realizar atividades físicas. Recomenda–se utilizar uma malha compressiva por um período de 2 a 3 semanas após a lipo de papada. Não há necessidade de usar a malha compressiva o dia todo, apenas no período em que se está em casa. Algumas sessões de drenagem linfática na região podem ajudar na redução do inchaço e melhorar a recuperação. O resultado definitivo da cirurgia é esperado em 4 a 6 meses após o procedimento.Nossa sociedade ocidental tende a valorizar pessoas com o rosto angulado e queixo bem definido, associando a elas características de personalidade forte e beleza.<br></p><p><br></p>', '2017-11-22 17:31:07'), (11, 3, 'Fissuras Lábio-palatinas', 'fissuras-labio-palatinas', 'f09fd0f6140091044d5ce3b1032bc5d2.jpg', 'As fissuras labiopalatinas são os defeitos congênitos mais comuns entre as malformações que afetam a face do ser humano, atingindo uma criança a cada 650 nascidas, de acordo com a literatura especializada. De origem latina, a palavra “fissura” significa fenda, abertura.', '<p>As fissuras labiopalatinas são os defeitos congênitos mais comuns entre as malformações que afetam a face do ser humano, atingindo uma criança a cada 650 nascidas, de acordo com a literatura especializada. De origem latina, a palavra “fissura” significa fenda, abertura.</p><p><b>O que é fissura labiopalatina?</b></p><p>A maioria dos estudos considera as fissuras labiopalatinas como defeitos de não fusão de estruturas embrionárias. Ou seja, tanto o lábio como palato (“céu da boca”) são formados por estruturas que, nas primeiras semanas de vida, estão separadas. Estas estruturas devem se unir para que ocorra a formação normal da face. Se, no entanto, esta fusão não acontece, as estruturas permanecem separadas, dando origem às fissuras no lábio e/ou no palato. As fissuras faciais são estabelecidas na vida intra-uterina, no período embrionário (ou seja, até a 12a. semana de gestação), e apresentam grande diversidade de forma pela variabilidade na amplitude e pelas estruturas afetadas no rosto.</p><p><b>Classificação das fissuras</b></p><p>De acordo com as estruturas faciais afetadas, as fissuras recebem uma classificação. A figura abaixo ajuda a entender onde se localiza o forame incisivo, ponto anatômico de referência no diagnóstico da fissura.</p><p style="text-align: center;"><img src="http://files.marina-fissura.webnode.com.br/200000080-1264b135e4/esquema.jpg" alt="Resultado de imagem para CLASSIFICAÇÃO DAS FISSURAS" style="width: 529px; height: 312.992px;"></p><p style="text-align: left;"><b>Fissuras pré-forame incisivo:</b></p><p style="text-align: left;">Fissuras que se restringem ao palato primário, ou seja, envolvem o lábio e/ou o rebordo alveolar sem ultrapassar o limite do forame incisivo. Varia desde um pequeno corte no vermelhão do lábio (incompleta) até toda a extensão do palato primário (completa). Podem ser classificadas em unilateral (só de um lado),bilateral (nos dois lados) ou mediana (no meio).</p><p style="text-align: left;"><b>Fissuras transforame incisivo:</b></p><p style="text-align: left;">São fissuras completas, ou seja, que envolvem total e simultaneamente o palato primário e o palato secundário. Estende-se desde o lábio até a úvula (“campainha”), atravessando o rebordo alveolar. Podem ser também classificadas em unilateral (só de um lado), bilateral (nos dois lados) ou mediana (no meio).</p><p style="text-align: left;"><b>Fissuras pós-forame incisivo:</b></p><p style="text-align: left;">Envolvem apenas o palato (“céu da boca”), mantendo o lábio intacto assim como os dentes. Ocorrem quando as estruturas do palato secundário não fazem a fusão. As consequências são essencialmente funcionais, no mecanismo velofaríngeo e na tuba auditiva. São consideradas completas quando atingem tanto palato mole como palato duro, morrendo no forame incisivo.</p><p style="text-align: left;"><b>Fissura submucosa:</b></p><p style="text-align: left;">Malformação que ocorre no palato secundário considerada forma anatômica subclínica. O defeito é na musculatura do palato mole e/ou no tecido ósseo do palato duro, sendo que a camada da mucosa permanece íntegra. Pode ocorrer de forma isolada, associada à fissura de palato primário ou a síndromes.&nbsp;</p><p style="text-align: left;"><b>Por que ocorre?</b></p><p style="text-align: left;">Não há apenas uma causa para a ocorrência da fissura. Acredita-se que a fissura se dê por uma interação de diversos genes associados a fatores ambientais; este modelo é conhecido como herança multifatorial. Os fatores ambientais mais conhecidos que são de risco para as fissuras são: bebida alcoólica, cigarros e alguns medicamentos (como corticóides e anticonvulsivantes), principalmente quando utilizados no primeiro trimestre da gestação. A ação destes fatores ambientais depende de uma predisposição genética do embrião (interação gene versus ambiente). Hoje, com o avanço das tecnologias de imaginologia, é possível identificar a ocorrência de fissura por exames de imagens no período pré-natal.</p><p style="text-align: left;"><b>Como é o tratamento?</b></p><p>O processo de reabilitação é longo e deve observar o crescimento craniofacial do indivíduo para que não haja sequelas, como crescimento ósseo inadequado. A reabilitação compreende etapas terapêuticas de acordo com idade e crescimento, e envolve a atuação de diversas especialidades.</p><p>A criança deve ser acompanhada por uma equipe interdisciplinar, composta por profissionais da cirurgia craniomaxilofacial, otorrinolaringologia, cirurgia plástica, fonoaudiologia e odontologia, especialidades consideradas essenciais na reabilitação das fissuras, além de um profissional de genética. Após essa primeira avaliação são discutidas as condutas terapêuticas iniciais e realizado encaminhamento para exames e outros atendimentos, de acordo com a necessidade de cada caso.</p><p></p><p>Embora haja um protocolo comum de etapas e condutas terapêuticas no tratamento da fissura labiopalatina, cada caso é analisado individualmente, pois a evolução do tratamento depende de vários fatores individuais. O protocolo estabelece as épocas adequadas de cada intervenção, sempre respeitando o crescimento craniofacial e a maturidade fisiológica do paciente. No total, o tratamento leva de 16 a 20 anos para se completar.</p><div><br></div>', '2017-11-22 17:32:11'); INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (12, 3, 'Trauma Facial', 'trauma-facial', '063838ae8425469be62edf5dc5933893.jpg', 'Os traumas de face são ocorrências comuns em hospitais e unidades de emergência, variando de leves traumatismos que necessitam de alguns cuidados básicos no seu tratamento, à fraturas complexas que exigem tratamento cirúrgico em nível hospitalar. Dentro da traumatologia craniomaxilofacial, podemos incluir tanto os traumatismos nas estruturas da face propriamente dita (pele, músculos, nervos, vasos sanguíneos e ossos da face e crânio), quanto os traumas da cavidade bucal (dentes, gengiva, língua,', '<p>Os traumas de face são ocorrências comuns em hospitais e unidades de emergência, variando de leves traumatismos que necessitam de alguns cuidados básicos no seu tratamento, à fraturas complexas que exigem tratamento cirúrgico em nível hospitalar. Dentro da traumatologia craniomaxilofacial, podemos incluir tanto os traumatismos nas estruturas da face propriamente dita (pele, músculos, nervos, vasos sanguíneos e ossos da face e crânio), quanto os traumas da cavidade bucal (dentes, gengiva, língua, osso maxilar, osso mandibular, vasos sanguíneos e nervos da boca).</p><p><b>Qual a área profissional responsável pelo tratamento dos traumas de face?</b></p><p>A área de traumatologia craniomaxilofacial, representada pelo Cirurgião Craniomaxilofacial, é aquela responsável pelos traumas da face, também chamado de traumatismos craniofaciais. Esta área compreende os traumas localizados em: (1) ossos do crânio (frontal, parietais, temporais, occiptal); (2) ossos nasais (fraturas de nariz); (3) ossos malares ou zigomáticos (fraturas na região da maçã do rosto); (4) ossos da órbita (fraturas na região da órbita dos olhos); (5) ossos maxilares (fratura de maxila ou fratura de mandíbula); (6) rebordo alveolar e dentes (fraturas alvéolo-dentárias ou dentárias); (7) pele da face, lábios e língua, além de músculos, vasos sanguíneos e nervos da região da face e da cavidade bucal (cortes, lacerações, ferimentos perfuro-cortantes).</p><p><b>Quais os sinais e sintomas das fraturas de face?</b></p><p>Entre os sintomas das fraturas faciais podemos citar: (1) dor variável, de leve a intensa, dependendo do tipo de trauma de face e do local acometido; (2) dormência do queixo, lábios, língua, gengiva, dentes, bochechas, nariz e testa, dependendo do tipo de trauma de face e local de acometimento; (3) dificuldades em movimentar a mandíbula (dor e limitação dos movimentos por impedimento mecânico); (4) alterações da oclusão, ou seja, modificações na “mordida”; (5) cortes e lacerações; (6) hematoma, equimose e edema (áreas arroxeadas e inchadas).</p><p><b>Como é o tratamento dos traumas de face?</b></p><p>O primeiro atendimento é emergencial e tem como objetivo garantir a vida do paciente nos traumas mais graves ou apenas evitar maiores danos no local das injúrias nos casos de traumas faciais mais leves. Após o atendimento emergencial, segue-se a solicitação de exames complementares para determinação de um diagnóstico mais preciso e, desta forma, instituir o correto tratamento.</p><p>O cirurgião Craniomaxilofacial, muitas vezes solicitado para agir em salas emergenciais, é o especialista que irá realizar o tratamento do paciente vítima de trauma de face. Após o atendimento emergencial e a execução dos exames de rotina e exames complementares para diagnóstico, inicia-se o tratamento definitivo do paciente. Na maioria das vezes estes tratamentos envolvem suturas de feridas e tratamento cirúrgico das fraturas presentes.</p><p>Por fim, o cirurgião prescreve as medicações que serão utilizadas após o procedimento, esclarece dúvidas e orienta paciente e familiares quais serão os cuidados necessários. Todos estes passos são importantes para que o procedimento seja feito em segurança.</p><p>Confie sua face a um cirurgião craniomaxilofacial!</p>', '2017-11-22 17:32:32'), (13, 3, 'Deformidades Craniofaciais', 'deformidades-craniofaciais', 'f0bda61d5db55abce6a6d78bad4c3b10.jpg', 'As anomalias congênitas afetam cerca de 5% dos nascidos vivos em todo mundo. Possui incidência mais discreta em países desenvolvidos porém, nos países em desenvolvimento da América Latina, esses índices variam em torno de 10-25% de internações hospitalares pediátricas, ocupando entre a terceira e quarta causa de morte no primeiro ano de vida. No Brasil, os defeitos congênitos ocuparam a segunda causa de mortes perinatais no ano 2000.', '<p>As anomalias congênitas afetam cerca de 5% dos nascidos vivos em todo mundo. Possui incidência mais discreta em países desenvolvidos porém, nos países em desenvolvimento da América Latina, esses índices variam em torno de 10-25% de internações hospitalares pediátricas, ocupando entre a terceira e quarta causa de morte no primeiro ano de vida. No Brasil, os defeitos congênitos ocuparam a segunda causa de mortes perinatais no ano 2000.<br></p>', '2017-11-22 17:32:52'), (14, 3, 'Cirurgia Ortognática (Deformidades dentofaciais)', 'cirurgia-ortognatica-deformidades-dentofaciais', '803c0a4d93bfe5991a9d63feb5a34070.jpg', 'A cirurgia ortognática é o tratamento para pacientes que possuem deformidades envolvendo os dentes e o esqueleto da face. Quando não é possível resolver o caso somente com o tratamento ortodôntico, uma vez que o problema está no excesso ou falta de crescimento do esqueleto facial e não somente na posição dos dentes, então é necessária a cirurgia ortognática.', '<p>A cirurgia ortognática é o tratamento para pacientes que possuem deformidades envolvendo os dentes e o esqueleto da face. Quando não é possível resolver o caso somente com o tratamento ortodôntico, uma vez que o problema está no excesso ou falta de crescimento do esqueleto facial e não somente na posição dos dentes, então é necessária a cirurgia ortognática.</p><p><b>Qual a origem das deformidades?</b></p><p>Essas deformidades podem ter origem devido a Síndromes e Anomalias Específicas (fatores teratogênicos, fatores embriológicos, microssomia hemifacial, Treacher Collins, fissuras faciais, craniossinostoses, Pierre Robin...), distúrbios de crescimento após o nascimento, trauma facial, problemas musculares e hormonais ou de origem genética quando existe algum familiar com as mesmas características.</p><p><b>Quais as alterações que podem implicar a necessidade da cirurgia ortognática?</b></p><ul><li>Dificuldade na mastigação;</li><li>Dificuldade na deglutição;</li><li>Desgaste excessivo dos dentes;</li><li>Mordida aberta;</li><li>Mordida profunda;</li><li>Mordida cruzada;</li><li>Aparência facial desarmônica;</li><li>Defeitos congênitos ou sequelas de trauma na face;</li><li>Queixo pequeno ou retraído;</li><li>Queixo grande ou protuído;</li><li>Queixo desviado para um dos lados;</li><li>Mandíbula muito para frente ou projetada;</li><li>Mandíbula muito para trás ou retruída;</li><li>Incapacidade  de fechar os lábios sem esforço muscular;</li><li>Respiração oral crônica;</li><li>Dor crônica na ATM e cefaléias;</li><li>Síndrome da apnéia obstrutiva do sono;</li></ul><p><b>Quais os benefícios deste tratamento ortodôntico e cirúrgico?</b></p><ul><li>Melhoria da relação entre os dentes, músculos e esqueleto;</li><li>Melhoria da respiração;</li><li>Melhoria do posicionamento da musculatura do pescoço;</li><li>Melhoria do posicionamento da língua;</li><li>Melhoria da fonação e da articulação das palavras;</li><li>Melhoria da oclusão e da articulação temporomandibular (ATM);</li><li>Melhoria da mastigação e da digestão;</li><li>Melhoria no relacionamento social;</li></ul><p><b>Quais são as fases do tratamento?</b></p><ul><li>Montagem do aparelho ortodôntico fixo – o tratamento ortodôntico pode levar de 18 a 24 meses antes da cirurgia para deixar os dentes em uma posição adequada;</li><li>Cirurgia Ortognática (ainda com o aparelho ortodôntico);</li><li>Retorno ao tratamento ortodôntico após a cirurgia para melhorar definitivamente a posição dos dentes;</li></ul><p></p><p>O tempo do tratamento depende do grau de dificuldade do tratamento ortodôntico.</p><p><b>Como é realizada a cirurgia?</b></p><p>Antes é feita a preparação do paciente com todos os exames necessários. O diagnóstico e o planejamento da cirurgia são realizados minuciosamente antes da cirurgia por meio de modelos de estudo montados em articulador, radiografias e traçados cefalométricos. O planejamento leva muito mais tempo do que a própria cirurgia.</p><p></p><p>A cirurgia é realizada sob anestesia geral. O paciente é internado na manhã da cirurgia em "jejum absoluto" (não pode comer nenhum tipo de alimento nem tomar água nas 08h antes da cirurgia) e dependendo da situação o paciente recebe alta no dia seguinte. A cirurgia é realizada através da cavidade oral, não deixando cicatriz na face. O esqueleto é fixado com mini-placas e parafusos de titânio não permitindo micromovimentação dos ossos. Na pós-cirurgia é normal surgir inchaço na face o qual diminui ao fim de alguns dias.</p><p><b>Quais são os cuidados Pós Cirúrgicos?</b></p><ul><li>A alimentação deve ser fria e mole.</li><li>A utilização de gelo diminui o inchaço e deve ser usado frequentemente nas primeiras 24 horas.</li><li>Cumprir rigorosamente a medicação prescrita.</li></ul><p><b></b><br></p>', '2017-11-22 17:33:16'), (15, 4, 'Amigdalectomia (retirada das amígdalas)', 'amigdalectomia-retirada-das-amigdalas', '1bdbf2e6184e11a5532e44ae274ff15d.jpg', 'As amígdalas são órgãos que ajudam a reforçar a imunidade do trato aero digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.', '<p style="text-align: justify; ">O que são as amígdalas?</p><p style="text-align: justify;">As amígdalas são órgãos que ajudam a reforçar a imunidade do trato aero digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.</p><p style="text-align: justify;">O que é a amigdalectomia?</p><p style="text-align: justify; ">É o nome dado à remoção cirúrgica das tonsilas palatinas (amígdalas).</p><p style="text-align: justify;">Qual sua finalidade?</p><p style="text-align: justify;">O principal objetivo desta cirurgia é restabelecer uma adequada respiração nasal, normalmente prejudicada em pacientes com hipertrofia de amígdalas e adenóides. As indicações cirúrgicas são absolutas quando ocorre hipertrofia com obstrução da via respiratória (roncos e obstrução nasal) ou da via digestiva (engasgos freqüentes e dificuldade de alimentação) e crises infecciosas muito intensas ou repetidas. As indicações cirúrgicas são relativas nas adenoamigdalites de repetição, abscesso periamigdaliano,&nbsp; halitose (mau hálito) e para o tratamento de sinusites ou otites de repetição.</p><p style="text-align: justify;">Como é realizada?</p><p style="text-align: justify;">A cirurgia deve ser realizada sob anestesia geral somente em hospitais com estrutura adequada. O paciente dorme e não sente nenhuma dor durante o procedimento. Na maioria dos casos recebe alta no mesmo dia da cirurgia, necessitando de poucos dias de recuperação em casa. </p><p style="text-align: justify;">Estamos preparados para explicar os riscos e benefícios dessa cirurgia, assim como a forma mais segura possível de realizá-la. Estamos à disposição para o esclarecimento de eventuais dúvidas.<br></p>', '2017-11-22 17:34:12'), (16, 4, 'Adenoidectomia (remoção da adenóide)', 'adenoidectomia-remocao-da-adenoide', '403fd14d1bcb48498f5794a9af5dd8d7.jpg', 'As adenóides são órgãos que reforçam a imunidade do trato aero ¬digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.', '<p style="text-align: justify; ">O que são as adenóides?</p><p style="text-align: justify; ">As adenóides são órgãos que reforçam a imunidade do trato aero ¬digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.</p><p style="text-align: justify;">O que é a adenoidectomia?</p><p style="text-align: justify;">É o nomes dado à remoção cirúrgica das tonsilas faríngeas (adenóides).</p><p style="text-align: justify;">Qual a sua finalidade?</p><p style="text-align: justify;">O principal objetivo desta cirurgia é restabelecer uma adequada respiração nasal, normalmente prejudicada em pacientes com hipertrofia da adenóide.</p><p style="text-align: justify;">As indicações cirúrgicas são absolutas quando ocorre hipertrofia com obstrução da via respiratória (roncos e obstrução nasal) e crises infecciosas muito intensas ou repetidas.</p><p style="text-align: justify;">As indicações cirúrgicas são relativas para o tratamento de sinusites ou otites de repetição.</p><p style="text-align: justify;">Como é realizada?</p><p style="text-align: justify;">A cirurgia é realizada sob anestesia geral somente em hospitais com estrutura adequada. O paciente dorme e não sente nenhuma dor durante o procedimento. Na maioria dos casos recebe alta no mesmo dia da cirurgia, necessitando de poucos dias de recuperação em casa.</p><p style="text-align: justify;">É comum a remoção das amígdalas hipertrofiadas junto com as adenóides. Estamos preparados para explicar os riscos e benefícios dessa cirurgia, assim como a forma mais segura possível de realizá-la. Estamos à disposição para o esclarecimento de eventuais dúvidas.<br></p>', '2017-11-22 17:34:37'), (17, 4, 'Cirurgia dos cornetos inferiores', 'cirurgia-dos-cornetos-inferiores', '6aa01e951297ec407a48c2c0ffaac821.jpg', 'Conchas ou cornetos nasais são projeções ósseas para o interior da cavidade nasal, recobertos por mucosa com função de aquecer e umidificar o ar inspirado. Existem no nariz cerca de três conchas de cada lado (superior, média e inferior).', '<p style="text-align: justify; ">O que são as conchas nasais?</p><p style="text-align: justify;">Conchas ou cornetos nasais são projeções ósseas para o interior da cavidade nasal, recobertos por mucosa com função de aquecer e umidificar o ar inspirado. Existem no nariz cerca de três conchas de cada lado (superior, média e inferior).</p><p style="text-align: justify;">Corneto e adenóide são a mesma coisa?</p><p style="text-align: justify;">Não, esta é uma confusão frequente! O corneto fica dentro do nariz e é uma das principais causas de obstrução nasal em adultos. A adenóide fica no fundo do nariz e é importante causa de obstrução nasal em crianças (no adulto a adenóide praticamente não existe).</p><p style="text-align: justify;">Para quem está indicada a Turbinectomia?</p><p style="text-align: justify;">A Turbinectomia está indicada quando o paciente apresenta obstrução nasal importante decorrente do aumento (hipertrofia) do corneto, que não responde ao tratamento medicamentoso. A principal causa para o aumento dos cornetos é a Rinite Alérgica.</p><p style="text-align: justify; ">Como é realizada a cirurgia?</p><p style="text-align: justify;">Geralmente, a obstrução nasal é causada por aumento do corneto inferior. A cirurgia consiste em basicamente remoção do excesso do corneto. A cirurgia dura cerca de 30 minutos. Normalmente não é necessário uso de tampões.</p><p style="text-align: justify;">Quais são os possíveis riscos e complicações?</p><p style="text-align: justify;">É considerada uma cirurgia de baixo risco. Raramente ocorrem sangramentos importantes em que há necessidade de uso de tampão nasal ou cauterização do vaso sangrante. A taxa de satisfação com essa cirurgia é altíssima.</p><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Normalmente, o paciente recebe alta no mesmo dia em que foi realizada a cirurgia. Deve ser mantido repouso relativo por cerca de 48 horas após a cirurgia. Neste período é normal a saída de pequena quantidade de sangue pelo nariz ou garganta. Atividade física deve ser iniciada somente após 30 dias.</p><p style="text-align: justify;">É importante a realização de limpeza nasal rigorosa especialmente no primeiro mês após o procedimento cirúrgico. Neste período será necessário retorno semanalmente ao consultório, para que sejam removidas crostas que por ventura venham a se formar.</p><p style="text-align: justify;">Nos pacientes portadores de Rinite Alérgica é essencial o acompanhamento e tratamento da doença mesmo com a cirurgia para que os sintomas não retornem.</p>', '2017-11-22 17:34:56'), (18, 4, 'Cirurgia dos seios da face (sinusectomia)', 'cirurgia-dos-seios-da-face-sinusectomia', '1d3f79539929ed47bba7194690256090.jpg', 'São cavidades localizadas na face recobertas por epitélio semelhante ao do nariz e que possuem óstios de drenagem para dentro da cavidade nasal.', '<p style="text-align: justify; ">O que são seios paranasais?</p><p style="text-align: justify;">São cavidades localizadas na face recobertas por epitélio semelhante ao do nariz e que possuem óstios de drenagem para dentro da cavidade nasal.</p><p style="text-align: justify;">Quando deve ser realizada a cirurgia dos seios paranasais?</p><p style="text-align: justify;">A cirurgia endoscópica dos seios da face é geralmente utilizada para tratamento, diagnóstico, biópsia de diversas doenças do nariz e seios da face, como sinusite crônica, micoses, cistos de seios paranasais, polipose nasal, tumores de nariz e seios da face, entre outros.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">A cirurgia é realizada na maioria das vezes com anestesia geral. É introduzido, na cavidade nasal uma fibra óptica, conectado a um sistema de vídeo que amplia a imagem do interior do nariz, dando ao cirurgião maior detalhamento da área a ser operada. O médico então poderá realizar tanto a remoção de lesões dentro do nariz, quanto dos seios da face, drenagem de secreções no interior dos seios. Na maioria das vezes também é necessário ampliar os óstios dos seios da face, para melhorar a drenagem e evitar assim novos episódios de sinusite.</p><p style="text-align: justify;">Quais são as possíveis complicações?</p><ul><li style="text-align: justify;"><b>Sinéquias </b>– Consiste em uma cicatrização inadequada do corneto, que leva a obstrução nasal, ocorre em cerca de 8% dos casos. Pode ser evitada com limpeza adequada no pós-operatório.</li><li style="text-align: justify;"><b>Fechamento do óstio</b> – Causando sinusite, sendo necessário reoperação.</li><li style="text-align: justify;"><b>Hemorragia </b>– Pode ocorrer sangramentos tanto no pós-operatório imediato quanto tardio, sendo raramente necessário colocação de tampão ou reintervenção cirúrgica para nova cauterização.</li><li style="text-align: justify;"><b>Fístula liquórica</b> – Cérebro é envolvido por três membranas e uma fina camada de líquido chamada líquor. Devido a proximidade dos seios da face com o cérebro existe uma rara chance de lesão do cérebro ou dos tecidos que envolvem o cérebro, podendo haver saída de líquor pela cavidade nasal.</li><li style="text-align: justify;"><b>Problemas visuais</b> – Em casos extremamente raros podem ocorrer danos ao olho causando redução da visão. Pode evoluir também com lacrimejamento excessivo, olho seco.</li></ul><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Normalmente o paciente recebe alta no mesmo dia em que foi realizada a cirurgia. Se houver a necessidade de se colocar tampão, o paciente deve retornar em cerca de 24 horas para remoção do mesmo.</p><p style="text-align: justify;">Deve ser mantido repouso relativo cerca de 48 horas após a cirurgia, neste período e normal a saída de pequena quantidade de sangue pelo nariz ou garganta. Atividade física deve ser iniciada somente após 30 dias.</p><p style="text-align: justify; ">É importante realização de limpeza nasal rigorosa cerca de seis semanas após o procedimento cirúrgico. Neste período será necessário retorno periódico ao consultório, para que sejam removidas crostas que por ventura venham a se formar.</p>', '2017-11-22 17:35:17'), (19, 4, 'Septoplastia (cirurgia do septo nasal)', 'septoplastia-cirurgia-do-septo-nasal', '00ec8d2f3402311b52a7a403c252ec8f.jpg', 'Septoplastia é a cirurgia realizada para corrigir o desvio de septo. Na maioria das vezes, realizamos a septoplastia sob anestesia geral. Em casos mais simples ou retoques de cirurgias já feitas, podemos optar pela anestesia local com sedação.', '<p style="text-align: justify; ">O DESVIO DE SEPTO<br></p><p style="text-align: justify;">Geralmente, existem duas razões para uma pessoa a ser submetida à cirurgia do nariz: <b>Funcional</b>, para correção do desvio de septo e outras alterações que impedem a boa respiração e <b>estético</b>, para corrigir características externas que incomodem o paciente. Os procedimentos necessários para correção destas alterações podem ser realizados juntos ou isoladamente.</p><p style="text-align: justify;">Aqui falaremos do <b>desvio de septo nasal e da septoplastia</b>. Trata-se da cirurgia empregada&nbsp; para aliviar as queixas de <b>nariz entupido, sinusites de repetição, dores de cabeça, dificuldades no olfato e no paladar.</b></p><p style="text-align: justify;">O<b> septo nasal</b> é uma “parede” constituída em parte por uma fina lâmina óssea e cartilagem. Essa estrutura, recoberta pela mucosa nasal, separa a cavidade dos dois lados. Em algumas pessoas, o septo pode acabar saindo da linha média, se posicionando muito “desviado” para um ou ambos os lados. O desvio do septo pode ser causado por traumas e falhas no crescimento, impedindo o bom fluxo de ar pelo nariz. Essa má ventilação piora a qualidade respiratória, com impacto importante no sono e no dia a dia.<br></p><p style="text-align: justify; ">SEPTOPLASTIA, RINOPLASTIA E RINOSSEPTOPLASTIA</p><p style="text-align: justify;">Septoplastia é a cirurgia realizada para corrigir o desvio de septo. Na maioria das vezes, realizamos a septoplastia sob anestesia geral. Em casos mais simples ou retoques de cirurgias já feitas, podemos optar pela anestesia local com sedação.</p><p style="text-align: justify;">O septo nasal, como todo o restante da cavidade nasal, é coberto pela mucosa nasal. O primeiro passo da cirurgia consiste em se levantar esta cobertura, para que se exponha todas as alterações ósseas e cartilaginosas do septo. Após a remoção e remodelagem das áreas desviadas,&nbsp; a mucosa nasal é reposicionada e suturada.</p><p style="text-align: justify;">Já a rinoplastia é a técnica cirúrgica aplicada para a correção das alterações estéticas, ou externas, do nariz. Num grande número de pacientes lançamos mão da rinosseptoplastia, união das duas técnicas, para proceder uma cirurgia que tenha tanto o objetivo de melhorar a respiração, quanto a estética.</p><p style="text-align: justify;">No passado era comum o uso de tampões nasais após o término da cirurgia. Tanto a permanência quando a remoção do tampão nasal eram rodeadas de muitas queixas. O uso rotineiro do tamponamento acabou para contribuir para a péssima fama da cirurgia nasal, o que faz com que até hoje muitos pacientes candidatos a esses procedimentos cheguem ao consultório receosos deste procedimento. Felizmente, esse medo hoje é injustificado</p><p style="text-align: justify;">Pessoalmente, não uso os tampões de forma rotineira, bem como a maioria dos cirurgiões nasais. A experiência de sair da cirurgia respirando pelo nariz e sem as dores causadas pelos tampões é radicalmente diferente do passado, sendo o pós-operatório atual praticamente indolor.</p><p style="text-align: justify;">O uso da fibra ótica na cirurgia nasal (cirurgia endoscópica), de maneira minimamente invasiva, permite uma visão detalhada de todas alterações anatômicas. Isso permite uma correção precisa do desvio de septo, sem trauma desnecessário. Além disso, a visão endoscópica permite observar e cauterizar todas as áreas sangrantes, evitando o uso dos tampões nasais.</p><p style="text-align: justify;">CUIDADOS PRÉ E PÓS-OPERATÓRIOS</p><p style="text-align: justify;">Existe uma rotina de cuidados aplicados antes e após a cirurgia, com o objetivo de melhorar a experiência do pacientes, minimizando riscos e maximizando resultados. Seguem alguns deles:</p><p style="text-align: justify;">PRÉ-OPERATÓRIO PARA CORREÇÃO DO DESVIO DE SEPTO</p><ul><li style="text-align: justify;">Realização dos exames pré-operatórias adequados para cada paciente, dependendo da idade e condições clínicas</li><li style="text-align: justify;">Todas as medicações usadas rotineiramente devem ser informadas ao médico. Anti-inflamatórios, aspirina e anti-coagulantes devem ser suspensos 7 a 10 dias antes da cirurgia.</li></ul><p style="text-align: justify;">O DIA DA CIRURGIA:</p><ul><li style="text-align: justify;">No dia, o paciente comparecerá ao hospital cerca de uma hora e meia antes da hora marcada para cirurgia, em jejum de 8 horas, inclusive de água.</li><li style="text-align: justify;">Todos os exames relacionados à cirurgia devem ser levados ao hospital.</li><li style="text-align: justify;">Já no hospital, tendo passado pelo procedimento de internação, o paciente será encaminhado ao seu quarto, onde trocará de roupa e aguardará o momento do deslocamento para o centro cirúrgico.</li><li style="text-align: justify;">Dependendo do grau de ansiedade de cada paciente pela cirurgia, pode ser necessário o uso de um calmante antes da ida para a sala de cirurgia.</li></ul><p style="text-align: justify;">PÓS-OPERATÓRIO IMEDIATO – Primeiras 4 horas:</p><ul><li style="text-align: justify;">Após ter acordado ainda na sala de cirurgia o paciente será levado à sala de recuperação dentro do próprio centro cirúrgico ou retornará diretamente para o quarto, dependendo de suas condições clínicas. Não é comum a ocorrência de dor após a septoplastia.</li><li style="text-align: justify;">Neste período alguns pacientes têm náuseas e mais raramente vômitos (que podem conter sangue), que costumam ser passageiros e não comprometem a cirurgia.</li><li style="text-align: justify;">Pequenos sangramentos nasais também podem ocorrer e por isso usamos um curativo tipo “bigode” preso abaixo do nariz, que poderá ser trocado várias vezes, se necessário.</li><li style="text-align: justify;">A melhor orientação para essas primeiras horas é deixar o paciente descansar, de preferência dormir, para que possa eliminar as medicações anestésicas ainda circulantes em sua corrente sanguínea.</li></ul><p style="text-align: justify;">Normalmente o paciente sai do centro cirúrgico com uma gaze presa com esparadrapo obstruindo parcialmente as narinas (“bigode”). Nos casos de plástica nasal também poderão ser posicionados curativos especiais sobre o nariz.</p><p style="text-align: justify;">PÓS-OPERATÓRIO TARDIO – Até 30 dias</p><ul><li style="text-align: justify;">A dieta nos primeiros 2-3 dias deverá ser líquida e pastosa, sempre fria ou na temperatura ambiente. Exemplos: água, leite, sucos, água-de-coco, sopas frias, iogurtes, sorvetes, gelatinas. Entre o terceiro e quarto dias deverá ser iniciada a dieta mais sólida podendo o paciente se alimentar (quase) normalmente.</li><li style="text-align: justify;">O desconforto da primeira semana ocorre pela obstrução nasal. A correta limpeza nasal e o uso de soluções salinas em spray ajudam a aliviar esta queixa. Nas três semanas seguintes, a obstrução ainda pode incomodar, porém em intensidade menor.</li><li style="text-align: justify;">Inchaço do rosto e dos olhos podem ocorrer entre o segundo e sétimo dias, apenas quando houver correção estética do nariz (rinoplastia) associada.</li><li style="text-align: justify;">Exercícios físicos de qualquer tipo estão proibidos nesta fase. Corrida, bicicleta ou musculação normalmente podem ser retomadas após um mês.</li><li style="text-align: justify;">Ainda nesta fase, entre a segunda e quinta semanas, é comum a eliminação de crostas pretas e duras de dentro do nariz, causadas pelo sangue coagulado e seco.</li></ul>', '2017-11-22 17:35:38'), (20, 4, 'Colocação de tubos de ventilação', 'colocacao-de-tubos-de-ventilacao', 'c48068f59e9ce0fdb7653c7503c4bbea.jpg', 'Muitas crianças passam por um ou mais episódios de dor de ouvido causados por otite média até os 5 anos de idade. Na grande maiorias das vezes, essas otites curam espontaneamente ou são tratadas com antibióticos orais. Mais raramente entretanto, esses episódios repetem-se muitas vezes, ou tornam-se crônicos. Esses casos podem gerar complicações, como perda auditiva, atraso no desenvolvimento da linguagem e alteração no comportamento e outras complicações mais sérias, com risco de vida ou de sequ', '<p style="text-align: justify;">OTITES NA INFÂNCIA</p><p style="text-align: justify;">Muitas crianças passam por um ou mais episódios de dor de ouvido causados por otite média até os 5 anos de idade. Na grande maiorias das vezes, essas otites curam espontaneamente ou são tratadas com antibióticos orais. Mais raramente entretanto, esses episódios repetem-se muitas vezes, ou tornam-se crônicos. Esses casos podem gerar complicações, como perda auditiva, atraso no desenvolvimento da linguagem e alteração no comportamento e outras complicações mais sérias, com risco de vida ou de sequelas graves (quadro abaixo). É quando o tubo de ventilação se torna uma arma importante na para o tratamento ou prevenção.</p><table class="table table-bordered"><tbody><tr><td style="text-align: center;">COMPLICAÇÕES DAS OTITES MÉDIAS<br></td></tr><tr><td style="text-align: center;">Atraso na fala</td></tr><tr><td style="text-align: center;">Meningite</td></tr><tr><td style="text-align: center;">Paralisia facial<br></td></tr><tr><td style="text-align: center; ">Abcesso cerebral\r\n</td></tr><tr><td style="text-align: center; ">Mastoidite\r\n</td></tr><tr><td style="text-align: center; ">Trombose do seio sigmoide</td></tr><tr><td style="text-align: center; ">Labirintite infecciosa</td></tr><tr><td style="text-align: center; ">Fístula labiríntica</td></tr><tr><td style="text-align: center; ">Petrosite</td></tr></tbody></table><p style="text-align: justify; ">O que é o tubo de ventilação?</p><p style="text-align: justify;">Tubo de ventilação é um pequeno cilindro no formato de carretel, que funciona como um dreno comunicando suas extremidades, uma voltada para fora e outra para dentro da membrana do tímpano. Eles são feitos de diferentes materiais e podem ser de curta ou longa permanência. Com isso, a parte interna do tímpano, chamada orelha média, fica permanentemente aerada através do tubo, evitando o acúmulo das secreções causadoras das otites. Os tubos de curta permanência são colocados para permanecer em média 6 a 12 meses nos ouvidos enquanto os de longa permanência são usados para permanecer por&nbsp; anos ou por prazo indeterminado.</p><p><br></p><p style="text-align: center; "><img src="http://www.movimentodown.org.br/wp-content/uploads/2013/02/problemasauditivos.jpg" alt="Resultado de imagem para o tubo de ventilação naniz" style="float: none;"></p><p style="text-align: left;"><br></p><p style="text-align: justify;">Quem precisa de tubos de ventilação?</p><ul><li style="text-align: justify;"><b>Otites de repetição</b>: Crianças com quadros de dor de ouvido recorrentes, com uso de antibiótico várias vezes ao ano podem se beneficiar da colocação do carretel para melhorar a ventilação do ouvido médio</li><li style="text-align: justify;"><b>Otite média serosa, otite médica secretora (acúmulo de secreção atrás do tímpano)</b>: Quadros que pode acontecer em todas as idades, embora sejam mais comuns na criança. Além de causar perda auditiva e poder prejudicar o desenvolvimento das crianças, pode causar também zumbido, tonteira e alteração do equilíbrio.</li><li style="text-align: justify;"><b>Aplicação de medicação tópica na orelha média</b>: o uso de medicação intratimpânica tem ganhado espaço no tratamento de algumas doenças do ouvido interno como surdez súbita e a síndrome de Ménière. Nesses casos o tubo de ventilação pode fornecer um canal adequado para aplicação de corticoides ou antibióticos.</li><li style="text-align: justify;"><b>Disfunção da tuba auditiva</b>: o bom funcionamento da tuba auditiva (que liga o ouvido médio ao fundo do nariz) é fundamental para a saúde do ouvido médio e também para os momentos em que somos submetidos a diferenças na pressão ambientes como em viagens aéreas, mergulhos, subidas e descidas de serras e montanhas. Pacientes que viajam de avião com muita frequência e não conseguem aliviar os sintomas de dor e pressão nos ouvidos com o tratamento clínico, podem se beneficiar dos tubos de ventilação.</li></ul><p style="text-align: justify;">Como é o procedimento para colocar o tubo de ventilação?</p><p style="text-align: justify;">Apesar de ser um procedimento cirúrgico, a colocação do tubo de ventilação pode ser feita no consultório nos adultos, utilizando o videoendoscópio ou o microscópio. Em crianças podemos precisar de uma sedação ou anestesia geral, em ambiente hospitalar. O procedimento dura poucos minutos. Após a anestesia (geral ou local) e com visualização videoendoscópica ou microscópica, fazemos uma incisão na membrana timpânica e aspiração da secreção no ouvido médio. Em seguida introduzimos o tubo de ventilação através desta incisão.</p><p style="text-align: justify;">Como é o pós-operatório?</p><p style="text-align: justify;">A recuperação do procedimento costuma ser muito boa. No caso das crianças submetidas a anestesia geral, são necessárias 2 ou 3 horas para a recuperação completa do torpor e desorientação causados pela medicação anestésica.</p><p style="text-align: justify;">O maior cuidado a partir deste momento é impedir a entrada de água nos ouvidos, já que eles se encontram “abertos” através dos tubos e sujeitos à infecções causadas pela entrada de bactérias contaminantes.</p><p style="text-align: justify;">Após a cicatrização que dura alguns dias pode ser necessária uma audiometria para avaliar a recuperação da audição.</p><p style="text-align: justify;">Quais as complicações possíveis?</p><p style="text-align: justify;">A colocação do tubo de ventilação é um procedimento muito comum e seguro, entretanto não está livre de algumas raras complicações como a permanência de uma perfuração timpânica após a saída do tubo, infecções repetidas e drenagem de secreção pelo tubo.<br></p>', '2017-11-22 17:36:02'), (21, 4, 'Cirurgia do Ronco e apnéia do sono', 'cirurgia-do-ronco-e-apneia-do-sono', '7945d60e90e42c74c8d4dd92cd2316fc.jpg', 'O som do ronco ocorre quando existe uma obstrução no fluxo livre de ar pela passagem na parte de trás da boca e do nariz. Esta região é a região que pode colapsar da via aérea (veja a ilustração) onde a língua e a parte superior da garganta se encontra com o palato mole e úvula. O ronco ocorre quando estas estruturas se chocam uma contra as outras e vibram durante a respiração.', '<p style="text-align: justify; ">Quarenta e cinco por cento da população de adultos normais roncam pelo menos, ocasionalmente e 25% por cento são roncadores habituais. O ronco patológico é mais freqüente em homens e pessoas com sobrepeso ou obesas, e geralmente piora com a idade.<br></p><p style="text-align: justify;">O que causa o ronco?</p><p style="text-align: justify;">O som do ronco ocorre quando existe uma obstrução no fluxo livre de ar pela passagem na parte de trás da boca e do nariz. Esta região é a região que pode colapsar da via aérea (veja a ilustração) onde a língua e a parte superior da garganta se encontra com o palato mole e úvula. O ronco ocorre quando estas estruturas se chocam uma contra as outras e vibram durante a respiração.</p><p style="text-align: justify;">As pessoas que roncam podem sofrer de:</p><p style="text-align: justify;"><b>Diminuição do tônus muscular na língua e na garganta</b>: quando os músculos estão muito relaxados, tanto pelo álcool ou por uso de medicações que causam sonolência, a língua cai para trás na via aérea e os músculos da garganta caem para os lados na via aérea. Isto ocorre durante o sono.</p><p style="text-align: justify;"><b>Volume excessivo dos tecidos da garganta</b>: Crianças com amígdalas ou adenóides volumosas freqüentemente roncam. Pessoas com sobrepeso ou obesas também possuem aumento do volume dos tecidos do pescoço . De maneira mais rara tumores ou cistos também podem causar aumento do volume dos tecidos da garganta.</p><p style="text-align: justify;"><b>Palato mole ou úvula alongada</b>: Um palato mole longo diminui a abertura do nariz para a garganta. Quando estes tecidos balançam (por estarem pendentes) funcionam como uma válvula durante a respiração relaxada. Uma úvula longa piora este aspecto ainda mais.</p><p style="text-align: justify;"><b>Obstrução Nasal</b>: Um nariz congestionado ou trancado requer um esforço extra para a passagem do ar. Isto cria um vácuo exagerado na garganta, e puxa os tecidos moles um de encontro ao outro, funcionam como uma válvula causando o ronco. Desta maneira o ronco ocorre apenas durante a a primavera (fatores alérgicos) ou nos períodos de gripe ou sinusites. Deformidades nasais ou do septo nasal, tais como desvios de septo podem da mesma maneira causar obstrução.</p><p style="text-align: justify;">O que é a Síndrome da Apnéia Obstrutiva do Sono (SAOS)?</p><p style="text-align: justify;">Quando um ronco forte é interrompido por episódios freqüentes de paradas da respiração, isto é conhecido como apnéia obstrutiva do sono. Episódios mais sérios duram cerca de 10 segundos cada e ocorrem mais de 7 vezes por hora.</p><p style="text-align: justify;">Pacientes com Síndrome da Apnéia Obstrutiva podem sofrem 30 a 300 eventos de apnéia por noite. Estes episódios podem reduzir os níveis sanguíneos de oxigênio, levando o coração a bater mais forte.</p><p style="text-align: justify;">O efeito imediato da apnéia do sono é que o roncador deve dormir superficialmente e manter os músculos contraídos de maneira que mantenha a via aérea livre até os pulmões.</p><p style="text-align: justify;">Porque o roncador não possui um bom sono, ele pode ficar sonolento durante o dia, o que pode comprometer o rendimento no trabalho e ser um perigo quando o roncador sonolento dirige ou opera um equipamento que exija atenção. Após muitos anos com esta desordem, pressão elevada e aumento de doenças cardiovasculares podem ocorrer.</p><p style="text-align: justify;">Um otorrinolaringologista irá proporcionar uma avaliação do nariz, boca, garganta, palato e pescoço. Um estudo do sono em um ambiente adequado é necessário para determinar qual a intensidade do ronco e a relação na saúde do roncador.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">Úvulopalatofaringoplastia (UPFP) é a cirurgia para o tratamento da apnéia obstrutiva do sono. Visa a retirar tecidos moles que vibram no palato e na garganta, e aumenta a passagem de ar. Ela é realizada através da boca sem realizar incisões na pele.</p><p style="text-align: justify;">Quais são as complicações possíveis?</p><ul><li style="text-align: justify;">Febre e dor – Febre e dores de garganta ou dor no ouvido ocorrem normalmente e não devem ser causa de inquietação, pois geralmente cedem entre 3 e 10 dias.</li><li style="text-align: justify;">Mau-hálito – É comum ocorrer, e cede entre 7 e 14 dias.</li><li style="text-align: justify;">Vômitos – Podem ocorrer algumas vezes, no dia da cirurgia, constituídos de sangue, mas sem significado de gravidade.</li><li style="text-align: justify;">Hemorragia – Representa o maior risco desta cirurgia, podendo ocorrer até 10 dias após a mesma, sendo mais freqüente em pequeno volume e, mais raramente, em maior volume, podendo levar até a necessidade de nova cirurgia com anestesia geral e transfusão sanguínea.</li><li style="text-align: justify;">Infecção – Pode ocorrer na região operada, causada por germes normais da faringe e, geralmente, regride sem antibióticos.</li><li style="text-align: justify;">Voz anasalada (fanhosa) e refluxo de líquidos – Podem ocorrer nos primeiros dias desaparecendo sozinhos.</li></ul><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Após a operação, aparecem no local da cirurgia placas brancas (fibrina). Essas placas não são sinais de infecção, e sim a evolução normal da cicatrização da mucosa da faringe. Deve-se tomar cuidado com essas placas para que elas não se desprendam bruscamente para evitar sangramento. Por isso, é conveniente:</p><ul><li style="text-align: justify;">Repouso relativo após a cirurgia, evitando os exercícios bruscos.</li><li style="text-align: justify;">Evitar manobras na boca que podem levar a desprendimentos das placas\r\n(higiene dental posterior, bochechos vigorosos).</li><li style="text-align: justify;">Há medicamentos com a aspirina que interfere com a coagulação, procurar evitá-los antes e após a cirurgia.</li></ul><p style="text-align: justify;">Dieta (alimentação) após a cirurgia:</p><p style="text-align: justify;">1º dia: somente líquidos, ao natural ou gelado (leite, chá, sorvete, caldos, sucos de frutas não-ácidas).</p><p style="text-align: justify;">2º e 3º dias: líquidos e alimentos pastosos: frio ou natural (chá, café, mingaus ralos, caldos, leite, suco de frutas, gemadas, etc).</p><p style="text-align: justify;">4º, 5º e 6º dias: líquidos e alimentos pastosos: sopa de massa fina, mingaus, arroz mole com caldo de feijão, purê de batata, canja de galinha). Evite comer pão torrado ou outro alimento capaz de ferir a garganta. Retornar ao pouco a alimentação costumeira na medida do possível.<br></p>', '2017-11-22 17:36:23'), (22, 4, 'Biópsias nasais e bucais', 'biopsias-nasais-e-bucais', '023a289035209410b05b65f45ca4e57d.jpg', 'Biópsia (ou biopsia) é o procedimento cirúrgico no qual se colhe células ou um pequeno fragmento de tecido orgânico para serem submetidos a estudo em laboratório, visando determinar a natureza e o grau da lesão estudada. Também podem ser examinados líquidos, secreções e outros materiais orgânicos. Praticamente todos os órgãos e componentes corporais podem ser biopsiados: músculos, pele, ossos, líquidos, secreções, etc. O termo biópsia vem do grego, bios = vida e opsis = aparência, visão.', '<p style="text-align: justify; ">O que é biópsia?</p><p style="text-align: justify;">Biópsia (ou biopsia) é o procedimento cirúrgico no qual se colhe células ou um pequeno fragmento de tecido orgânico para serem submetidos a estudo em laboratório, visando determinar a natureza e o grau da lesão estudada. Também podem ser examinados líquidos, secreções e outros materiais orgânicos. Praticamente todos os órgãos e componentes corporais podem ser biopsiados: músculos, pele, ossos, líquidos, secreções, etc. O termo biópsia vem do grego, bios = vida e opsis = aparência, visão.</p><p style="text-align: justify;">Quais são as indicações para se fazer uma biópsia?</p><p style="text-align: justify;">Os exames de imagem fornecem uma visão da morfologia ou funcionalidade dos órgãos ou de partes do corpo e os exames bioquímicos oferecem algumas comprovações indiretas do funcionamento intrínseco deles, no entanto, a morfologia das células e tecidos depende de uma análise microscópica de amostras retiradas das pessoas. Assim, o mais comum é proceder-se à biópsia naquelas pessoas com suspeitas diagnósticas de doenças que podem provocar alterações morfológicas nas células e tecidos, como os tumores, por exemplo, ou para estabelecer um diagnóstico diferencial entre enfermidades assemelhadas. Esse exame diagnóstico é indicado tanto em enfermidades simples, como as verrugas, como nas mais graves, como o câncer.&nbsp;</p><p style="text-align: justify;">Embora o termo biópsia sempre desperte certa apreensão nas pessoas, a maioria delas revela situações simples e benignas. Em doenças infecciosas a biópsia pode ajudar a determinar o agente causal. Em doenças autoimunes uma biópsia ajuda a confirmar ou informar as alterações esperadas em órgãos ou tecidos. Uma biópsia também pode ajudar a avaliar a gravidade da lesão e a evolução do tratamento. Em lesões de malignidade suspeita ou confirmada, as biópsias ajudam a estabelecer o grau histológico de neoplasia e a determinar a natureza, taxa de crescimento e agressividade do tumor, ajudando a elaborar o plano do tratamento e a prever o prognóstico da doença.</p><p style="text-align: justify;">Quais são as complicações possíveis da biópsia?</p><p style="text-align: justify;">De uma maneira geral as biópsias são procedimentos simples, realizados em ambulatório, mas algumas podem demandar internações. As complicações dependem do tipo de intervenção, mas num sentido geral pode ocorrer agravamento de lesões por excesso de manipulação, hemorragias, infecções e/ou formação de fístulas.</p><p style="text-align: justify;">Como se realiza uma biópsia?</p><p style="text-align: justify;">Em geral as biópsias são realizadas sem necessidade de internação. Apenas em poucos casos a hospitalização pode se impor. Uma biópsia bem feita começa com uma adequada coleta do material. O profissional deve escolher a melhor área da lesão a ser biopsiada, a extensão correta de coleta e o material a ser colhido. O material colhido deverá ser conservado em solução de formol e posteriormente enviado a um laboratório de patologia, para avaliação e emissão de um laudo histopatológico.&nbsp;</p><p style="text-align: justify;">Os prazos necessários para que se possa produzir esses laudos variam de acordo com o tipo de lesão, do material a ser analisado e o procedimento técnico adotado. O prazo médio oscila entre sete e quatorze dias, podendo chegar a um mês em casos de exames mais sofisticados.</p><p style="text-align: justify;">Para que serve uma biópsia?</p><p style="text-align: justify;">Uma biópsia serve para esclarecer um diagnóstico se ainda restarem dúvidas depois da história clínica, exame físico, dados bioquímicos e de imagens. Em casos de tumores, além de definir o diagnóstico, podem estabelecer a malignidade ou não deles e o grau histológico em que se encontram.<br></p>', '2017-11-22 17:36:43'); INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (23, 4, 'Frenectomia Labial e lingual', 'frenectomia-labial-e-lingual', '5bd0ad84c9426dc64467a2973c5d9102.jpg', 'Frenectomia é a designação atribuída a uma pequena cirurgia que consiste em cortar e remover o freio, que é uma “prega” fina de tecido fibroso (tipo membrana), presente na boca. Em alguns casos, torna-se suficiente seccionar ou cortar parcialmente esse freio, visando alterar apenas o nível da sua inserção nos tecidos moles, por forma a dividi-lo ou reduzir o seu tamanho, sendo que neste caso passamos a denominar esta pequena operação cirúrgica de frenotomia, em vez de frenectomia.', '<p style="text-align: justify;">O que é frenectomia?<br></p><p style="text-align: justify;">Frenectomia é a designação atribuída a uma pequena cirurgia que consiste em cortar e remover o freio, que é uma “prega” fina de tecido fibroso (tipo membrana), presente na boca.&nbsp;</p><p style="text-align: justify;">Em alguns casos, torna-se suficiente seccionar ou cortar parcialmente esse freio, visando alterar apenas o nível da sua inserção nos tecidos moles, por forma a dividi-lo ou reduzir o seu tamanho, sendo que neste caso passamos a denominar esta pequena operação cirúrgica de frenotomia, em vez de frenectomia.</p><div style="text-align: justify;">Existem basicamente 2 tipos de freios:</div><div style="text-align: justify;"><br></div><ol><li style="text-align: justify;"><b>Freios labiais</b> (superior e inferior), localizados na linha mediana, sendo visíveis quando levantamos o lábio superior ou baixamos o inferior, e que se estendem desde o interior do lábio até à gengiva vestibular (frontal), tanto no maxilar superior como no inferior;</li><li style="text-align: justify;"><b>Freio lingual</b>, localizado no ventre da língua (por baixo da língua), e que se insere desde a língua ao soalho da boca.</li></ol><p style="text-align: justify;">Consoante o tipo de freio, denominamos de frenectomia lingual, no caso de secção do freio lingual, e frenectomia labial no caso dos freios labiais. No caso desta subdividimos em frenectomia labial superior, que como o próprio nome indica, é realizada no freio do lábio superior, e frenectomia labial inferior, que como o próprio nome indica, aquela que é efetuada no freio do lábio inferior.</p><p style="text-align: justify;">Lateralmente aos freios labiais, podem ainda existir outras “pregas” fibrosas mais largas, chamadas de bridas, que são em quase tudo semelhantes aos freios. Diferem apenas na sua localização e dimensão em largura, que pode variar de alguns mm a 1 cm, por sua vez os freios geralmente não têm mais que 1 a 2 mm.</p><p style="text-align: justify;">Indicações:</p><p style="text-align: justify;">A cirurgia de Frenectomia é indicada nas seguintes situações, consoante o tipo de freio considerado, a saber:</p><p style="text-align: justify;">Frenectomia labial</p><p style="text-align: center; "><img src="http://staticr1.blastingcdn.com/media/photogallery/2017/1/28/660x290/b_586x276/freio-labial-com-baixa-insercao-na-denticao-mista-https-goo-gl-images-x6rbqu_1117623.jpg" alt="Resultado de imagem para Frenectomia labial"></p><ul><li style="text-align: justify;">Presença de diastema interincisivo (dentes separados devido a espaço entre os dois incisivos centrais), associado à presença entre os mesmos de fibras do freio com inserção baixa, ao nível da papila interdentária, impedindo assim o fecho natural desse espaço;</li><li style="text-align: justify;">Eventual limitação da mobilidade do lábio, resultante de uma inserção muito baixa do freio labial;</li><li style="text-align: justify;">Motivos estéticos, principalmente nas situações de sorriso alto, ou seja, quando a pessoa expõe, ao sorrir, uma maior porção de gengiva, o chamado sorriso gengival;</li><li style="text-align: justify;">Alterações da fonética (normalmente associadas à presença de um diastema de grande dimensão);</li><li style="text-align: justify;">Quando interfere com a correção ortodôntica (ortodontia);</li><li style="text-align: justify;">Quando interfere na estabilidade e retenção de próteses dentárias.</li></ul><p style="text-align: justify;">Frenectomia lingual</p><p style="text-align: center;"><img src="https://fortissima.com.br/wp-content/uploads/2013/07/lan-5-300x295.jpg" alt="Resultado de imagem para Frenectomia lingual"></p><ul><li style="text-align: justify;">Limitação dos movimentos da língua quando o freio é muito curto, inserindo-se muito perto da ponta da língua;</li><li style="text-align: justify;">Alterações da fala (fonética), pelo mesmo motivo;</li><li style="text-align: justify;">Transtornos ou dificuldade na mastigação, também pelo mesmo motivo;</li><li style="text-align: justify;">Lesões traumáticas, resultantes do “roçar” do freio nos incisivos inferiores, devido à grande proximidade entre as duas estruturas.</li></ul><p style="text-align: justify;">Os casos de freio lingual muito curto que fazem a língua ficar “presa” (anquiloglosia), são mais prevalentes nos recém-nascidos e lactantes, podendo causar-lhes transtornos na alimentação, incluindo na sucção, pelo que a frenectomia lingual em bebe é um procedimento muitas vezes necessário para corrigir estas limitações. Se o problema for corretamente diagnosticado, a cirurgia pode realizar-se independentemente da idade, desde que o bebé não apresente qualquer contraindicação específica para o fazer.</p><p style="text-align: justify;">Já quanto à idade ideal para se realizar a frenectomia labial, existem algumas considerações a ter em conta, pois existem situações que logo aos 2 anos de idade é possível identificar situações bem marcadas de um freio mais hipertrofiado (mais grosso) que o normal, de reservado prognóstico de regressão, pelo que nestes casos poder-se-á desde logo considerar a realização da cirurgia. Contudo, existem situações em que um freio anormal entre os 2 e os 4 anos, pode evoluir naturalmente para uma situação normal aos 8 ou 9 anos, consequência do natural alongamento da língua, pelo que muitas vezes se fica na expetativa, aguardando-se a possível e natural regressão do freio, a menos que hajam fortes evidências de que o impedimento do fecho de diastemas interincisivos seja causado por esse freio labial, e que isso esteja a implicar algum tipo de transtorno.</p><p style="text-align: justify;">Assim sendo, torna-se algo discutível indicar com exatidão a partir de que idade se deve efetuar a frenectomia labial, havendo contudo alguma concordância de que este procedimento pode ou deve, esperar pela erupção completa dos dentes caninos, o que ocorre por norma entre os 11 e os 13 anos de idade. Estes dentes vão exercer forças mesiais que poderão fazer com que o freio se afaste da região interincisiva, promovendo o fecho natural dos diastemas.</p><p style="text-align: justify;">Veja de seguida, passo a passo, como é realizada a cirurgia.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">A cirurgia de Frenectomia é geralmente simples e possível de ser feita através de duas formas distintas, que passamos a descrever:</p><p style="text-align: justify;"><b>Cirurgia convencional</b> - é realizada com bisturi normal ou convencional, sendo feitas incisões para corte ou secção do freio, no sentido de o remover parcial ou totalmente. Após este procedimento, é efetuada a sutura dos tecidos moles, com pontos reabsorvíveis ou não reabsorvíveis, sendo que estes últimos terão que ser posteriormente removidos (entre 7 a 10 dias).</p><p style="text-align: justify;"><b>Cirurgia convencional</b> - é realizada com bisturi normal ou convencional, sendo feitas incisões para corte ou secção do freio, no sentido de o remover parcial ou totalmente. Após este procedimento, é efetuada a sutura dos tecidos moles, com pontos reabsorvíveis ou não reabsorvíveis, sendo que estes últimos terão que ser posteriormente removidos (entre 7 a 10 dias).</p><p style="text-align: justify;">A cirurgia de frenectomia, independentemente do método ou técnica cirúrgica utilizada, não implica dor, pois a operação é realizada sob anestesia local e o pós-operatório, por norma, também não implica qualquer sintomatologia relevante.</p><p style="text-align: justify;">Riscos e complicações:</p><p style="text-align: justify;">A frenectomia é uma cirurgia que apresenta riscos reduzidos, no entanto podem ocorrer algumas complicações pós-operatórias, como por exemplo, dor, pequenas hemorragias ou sangramento excessivo (principalmente na frenectomia lingual), edema, inflamação ou infeção (ainda que raramente), entre outras de menor relevo.</p><p style="text-align: justify;">Durante o ato cirúrgico, para além da possibilidade de sangramento excessivo, pode haver um risco de lesão de estruturas vizinhas, (principalmente nos casos de frenectomia lingual), se a técnica for executada de forma incorreta.&nbsp;</p><p style="text-align: justify;">De qualquer forma, estes riscos e complicações são por norma reversíveis, não deixando sequelas dignas de registo.</p><p style="text-align: justify;">Pós-operatório:</p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">De um modo geral, a recuperaçã</span><span lang="IT" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:it"="">o da cirurgia de frenotomia </span><span lang="FR" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:fr"="">é </span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">rápida, não necessitando o doente de\r\nefetuar repouso <span class="Nenhum"><b>p</b></span></span><span class="Nenhum"><b><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span></b></span><span class="Nenhum"><b><span lang="NL" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:nl"="">s operat</span></b></span><span class="Nenhum"><b><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span></b></span><span class="Nenhum"><b><span style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:pt-br"="">rio</span></b></span><span lang="PT" style="font-family:\r\n" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms""="">. Pode, portanto,\r\nretomar as suas atividades imediatamente ap</span><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">s a cirurgia, desde que obedeça a\r\nalguns cuidados no p</span><span lang="ES-TRAD" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms";mso-ansi-language:es-trad"="">ó</span><span lang="NL" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:nl"="">s operat</span><span lang="ES-TRAD" style="font-family:\r\n" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";mso-ansi-language:="" es-trad"="">ó</span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">rio, por forma a reduzir o tempo de\r\nrecuperação, favorecendo assim a cicatrização, nomeadamente:</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""=""></span></p><ul><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Evitar alimentos duros nos primeiros dias (preferir alimentos algo pastosos), principalmente nos casos de frenectomia lingual;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Evitar alimentos muito quentes nos primeiros dois dias pelo menos, sendo que após a cirurgia é também benéfica a aplicação local de frio (bolsa de gelo por ex.), nos casos de frenectomia labial;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Redobrar os cuidados de higiene oral, sendo que a zona da cirurgia deve ser escovada com pouca pressão e com escovas adequadas para o efeito (com cerdas muito suaves), complementado com bochechos de soluções antissépticas;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Tomar devidamente a medicação prescrita pelo médico dentista (normalmente analgésicos e/ou anti-inflamatórios).</span></li></ul><p style="text-align: justify; line-height: 150%;"><span lang="PT" style=""><font face="Arial, sans-serif"><br></font><br></span><span class="Nenhum"><span lang="PT" style="font-family: Arial, sans-serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;"><o:p></o:p></span></span></p><p style="text-align: left;"><br></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-fareast-font-family:arial"=""><o:p></o:p></span></p>', '2017-11-22 17:37:00'); -- -------------------------------------------------------- -- -- Estrutura da tabela `clinica` -- CREATE TABLE `clinica` ( `id` int(11) NOT NULL, `titulo_introducao` text NOT NULL, `texto_introducao` text NOT NULL, `titulo_segunda_parte` text NOT NULL, `texto_segunda_parte` text NOT NULL, `titulo_collapse` text NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `clinica` -- INSERT INTO `clinica` (`id`, `titulo_introducao`, `texto_introducao`, `titulo_segunda_parte`, `texto_segunda_parte`, `titulo_collapse`, `imagem`) VALUES (1, ' Cupiditate? Tempus quidem, vestibulum! Est? At minus quia augue au', 'taciti impedit veniam consequuntur tempora cras torquent dolor. Soluta odio tortor placerat, sequi luctus quis impedit iure sollicitudin, iure eu proident a sem at blandit, mattis veritatis officiis dolore eveniet quo, quo, culpa occaecat rem, lacinia hac, iure laoreet cubilia? Luctus sapien iusto doloribus, viverra aliquip. Sunt cupiditate aenean maecenas vestibulum dolor, lobortis eleifend voluptatem quidem', 'tus! Anim repellat imp', 'bh porttitor ullam ex, gravida metus! Anim repellat impedit magna? Dis class nisl urna laborum enim, augue quae! Inventore expedita, dolores dictumst possimus ut nonummy venenatis veniam, facilisis. Soluta mollit? Iste, placerat fuga, ante est ', 'asd', '5188895eae21c6727f902485f7bedafe.jpg'); -- -------------------------------------------------------- -- -- Estrutura da tabela `convenios` -- CREATE TABLE `convenios` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `convenios` -- INSERT INTO `convenios` (`id`, `titulo`, `imagem`, `data`) VALUES (1, 'Amagis saúde', '734eec165d8df5fefb74381fddb34b1f.jpg', '2017-11-17 17:40:51'), (2, 'Amil', 'd1ae4bd898c7264a474cf99b252f1101.jpg', '2017-11-17 17:41:00'), (3, 'Amma', '5969cb75ccbff8b1046a5dcd2750e81e.jpg', '2017-11-17 17:41:10'), (4, 'Assefaz', '9711d539b331c507b233a158d9e2ea47.jpg', '2017-11-17 17:41:23'), (5, 'Assist card', '7c2124c17aec55ada81910ff9a717dd4.jpg', '2017-11-17 17:41:34'), (6, 'Bradesco saúde', '2220b1283e030597db8b1155fda76cd5.jpg', '2017-11-17 17:41:43'), (7, 'Cabefe', 'fba6bc84d8b1bbe2818027b41350801e.jpg', '2017-11-17 17:41:55'), (8, 'Caixa', '56191b2ffa0df310f1ae349d3e6df49e.jpg', '2017-11-17 17:42:08'), (9, 'Camed', 'e72cfa32714837be304f47ed8edb451e.jpg', '2017-11-17 17:42:16'), (10, 'Capesesp', 'cc31cddde4c98adb6c48811c0e9f6527.jpg', '2017-11-17 17:42:33'), (11, 'Casec', 'd097ce3785bbd4fd45b50eae7e7a0dea.jpg', '2017-11-17 17:42:47'), (12, 'Casembrapa', 'e8522f4687f45fba2c4e6893262dd51c.jpg', '2017-11-17 17:43:00'), (13, 'Cassi', 'e89a5cdc0bf486f241af5b0e43bbb892.jpg', '2017-11-17 17:43:11'), (14, 'Casu', '448f0c135eac872673bba753aea22c32.jpg', '2017-11-17 17:43:21'), (15, 'Cemig', 'cdba76253f7688a29bd4793c6a4b4784.jpg', '2017-11-17 17:43:30'), (16, 'Cis', 'a05e3fa0c57bbada27a4867912caee20.jpg', '2017-11-17 17:43:39'), (17, 'Capass', '410ba776f6e27c3796a97c443978deb8.jpg', '2017-11-17 17:43:53'), (18, 'Funasa', '97d694c2def67b17aca9e43578a47e49.jpg', '2017-11-17 17:44:06'), (19, 'Fundaffemg', '9acabf585eec0e5847c2bc270e890c2b.jpg', '2017-11-17 17:47:54'), (20, 'Fusex', 'eb8e388e7dcd539cfa71e0a77c8720a9.jpg', '2017-11-17 17:48:23'), (21, 'Gama', 'a2299cb243f45b68b8759ad2c3ecbcd9.jpg', '2017-11-17 17:48:34'), (22, 'Geap', '36e367d8dca906e776c01ce80fec2848.jpg', '2017-11-17 17:48:44'), (23, 'INB', 'a3a70bff4a757d32caba5e44487751fe.jpg', '2017-11-17 17:48:56'), (24, 'Itau', '05df7901c49230e5984973db875fb2fd.jpg', '2017-11-17 17:49:47'), (25, 'Life', '30e0c1386d65ac01e848b5e94d54c2a1.jpg', '2017-11-17 17:50:56'), (26, 'Mapfre', '5a94efad7fedc8387198596459e71e7f.jpg', '2017-11-17 17:51:26'), (27, 'Mondial', 'a10588e3116a85a934165d07bce8b40c.jpg', '2017-11-17 17:52:13'), (28, 'Petrobras', 'e2d6db97fdfa36e27fc48dae9fc9a082.jpg', '2017-11-17 17:52:28'), (29, 'PMMG', '225351ca8ca9bee76a37e8ae12da071d.jpg', '2017-11-17 17:52:43'), (30, 'Postal Saúde', '4cab0b334161eb303910007110d744cc.jpg', '2017-11-17 17:52:54'), (31, 'Promed', 'a86220e1c32d06d06994aa679773c5be.jpg', '2017-11-17 17:53:29'), (32, 'Prevminas', '841c83479ebb8d998b67f98072df89d3.jpg', '2017-11-17 17:56:02'), (33, 'Proasa', 'cdc61ea73bdab8747f4f7938428bc1c7.jpg', '2017-11-17 17:56:26'), (34, 'Samp', '13c302d2e71cbc35a124b3206939436c.jpg', '2017-11-17 17:56:44'), (35, 'Santa casa familia', '6189255a96f085c8037faf1e5b4a2903.jpg', '2017-11-17 17:56:57'), (36, 'Saúde sistema', '149a76a9ecccc137ccc0f986cece11dd.jpg', '2017-11-17 17:57:14'), (37, 'Unafisco', 'aff089dd65ab95be38aad6b6d7e6f492.jpg', '2017-11-17 17:57:32'), (38, 'Unimed', '1b5366a9e1bf45f06c4b5632d1e64705.jpg', '2017-11-17 17:57:54'), (39, 'Vitallis', 'ae0466c832a9370171f56a206dc6d523.jpg', '2017-11-17 17:58:02'), (40, 'Vivamed', 'f6b6846616553c8b507c77b83aaa6995.jpg', '2017-11-17 17:58:11'); -- -------------------------------------------------------- -- -- Estrutura da tabela `corpo_clinico` -- CREATE TABLE `corpo_clinico` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `imagem` text NOT NULL, `texto` text NOT NULL, `profissao` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `corpo_clinico` -- INSERT INTO `corpo_clinico` (`id`, `titulo`, `imagem`, `texto`, `profissao`) VALUES (5, 'Dixie Armstrong', '9cf4621ad28a81473d4da2af577e0e72.jpg', '<p>m imperdiet, deleniti reprehenderit odio non, torquent, illo, rutrum, congue nostrum! Eligendi asperiores pariatur, dolorem!<br></p>', 'Cirurgião'), (6, 'João Bertolucci', 'e96d76ca860a4a28ed0df54c48ae20ac.png', '<p>Quia praesent aenean? Tempor dolorem molestias, rutrum in distinctio enim perferendis convallis, nostrud voluptas, nisi cubilia gravida malesuada distinctio ullamcorper gravida varius fuga massa taciti, similique nesciunt leo, culpa exercitationem, nibh commodi mattis mi consectetuer aliquam, esse nam consequat! Sint<br></p>', 'Cardiologista'), (7, 'Angela Tarantino', '80ca0cc192964145adbc709c302eceb4.png', '<p>nulla, aliquip accusamus! Veniam vehicula egestas. Sunt. Accusantium eius iaculis scelerisque atque laboriosam aliqua morbi, consequuntur pellentesque pulvinar fuga, nascetur convallis. Voluptatibus blandit aliquip vitae?<br></p>', 'Cirurgiã'), (8, 'Júlia Guerra', 'be50e88c91329c95ff89a30d3e67b965.png', '<p>Eiusmod, ultricies, duis ullamcorper dolor dictumst! Vulputate optio cupidatat aptent! Reiciendis rerum in risus? Placerat porro nostrud nostrud? Rem nostra felis eligendi! Ducimus saepe, dolorem laboriosam provident assumenda, nisl recusandae?<br></p>', 'Cardiologistas'), (9, 'João Cardoso', '562891bc26a766a87237fc42a42fedda.png', '<p>iaculis explicabo rutrum ipsum, tempor, accusantium natus eleifend diamlorem sodales pede architecto mus varius, nullam libero primis exercitationem porttitor, fringilla cum veniam?</p><div><br></div>', 'Atendente'), (10, 'Zeca Oliveira', 'd0f8460e2ba7e59090831fcda9b6e6b5.png', '<p>Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis, Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis, Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis<br></p>', 'Cirurgião'), (11, 'josé Rodrigues', '62df285de29181f14108fc528ec36a4f.png', '<p>e, ea netus massa culpa tempore ullamco tempus nisi provident consectetuer, animi doloribus? Quod nesciunt sapiente sociosqu vestibulum porttitor soluta veniam! Consequatur metus deserunt fringilla. Pariatur gravida assumenda fugiat consequat accusamus. Consectetuer sit maiores arcu, omnis rhoncus, exer<br></p>', 'Cirurgião'); -- -------------------------------------------------------- -- -- Estrutura da tabela `especialidades` -- CREATE TABLE `especialidades` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `texto` text NOT NULL, `detalhes` text NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `especialidades` -- INSERT INTO `especialidades` (`id`, `titulo`, `texto`, `detalhes`, `imagem`) VALUES (2, 'Cirurgia Cardíaca', ' Porttitor, in veniam, magnam facilisi? Minima voluptatum ', '<p></p><p>&lt;p&gt;Massa exercitationem laoreet nisi aspernatur sociosqu iusto turpis eum dui augue montes imperdiet repudiandae dis tristique nihil sociosqu. Error. Porttitor, in veniam, magnam facilisi? Minima voluptatum ligula duis scelerisque vestibulum, et natus, nostrud, eu, commodi officiis felis malesuada arcu cras! Minus feugiat, minus sociosqu, interdum ligula, curabitur wisi, excepturi parturient libero diam lacus magna, eius consequuntur, ea dictumst convallis laudantium. Magnam lacus, primis sem autem placerat consequatur mauris pellentesque! Ullamcorper consectetuer habitant, ullam eos commodo faucibus mauris dolores maiores quam maxime pharetra ratione libero, accumsan, consequuntur eveniet assumenda dolores penatibus. Vulputate repellat incidunt doloribus quia litora beatae, convallis nostrum magna.&lt;/p&gt;<br></p>', '91d95b6857fa490e611331ce22212adb.jpg'); -- -------------------------------------------------------- -- -- Estrutura da tabela `itens_clinica` -- CREATE TABLE `itens_clinica` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `descricao` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `itens_clinica` -- INSERT INTO `itens_clinica` (`id`, `titulo`, `descricao`) VALUES (10, 'asad', 'asdas'); -- -------------------------------------------------------- -- -- Estrutura da tabela `newsletter` -- CREATE TABLE `newsletter` ( `id` int(11) NOT NULL, `email` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `newsletter` -- INSERT INTO `newsletter` (`id`, `email`) VALUES (1, '[email protected]'), (2, '[email protected]'); -- -------------------------------------------------------- -- -- Estrutura da tabela `noticias` -- CREATE TABLE `noticias` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL, `texto_breve` varchar(500) DEFAULT NULL, `autor` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `noticias` -- INSERT INTO `noticias` (`id`, `titulo`, `nome_url`, `imagem`, `texto`, `data`, `texto_breve`, `autor`) VALUES (2, 'Como escolher o seu cirurgião da face, aspectos essenciais', 'como-escolher-o-seu-cirurgiao-da-face-aspectos-essenciais', 'ca98082264c8e326af52fe017430aca2.jpg', '<p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">A face humana é extremamente complexa devido às estruturas anatômicas nobres que a compõem. Além da identidade humana, externa os nossos sentimentos e serve de interface para interação com o mundo exterior. </span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Ao escolher seu cirurgião da face é necessário que você conheça sua formação, quais especializações possui, se participa de cursos de atualização e se tem experiência naquela cirurgia que vc deseja realizar.</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">A medicina encontra-se extremamente especializada, sendo que, existem profissionais que se dedicam à areas específicas do corpo humano. Isto permite um melhor entendimento das indicações, técnicas cirúrgicas e melhor controle dos resultados.</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Pensando nisto, fiz toda a minha formação voltada para a face e estudo da harmonia facial. Cirurgia é coisa muito séria!</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Consulte seu cirurgião da face e confie sua face à um especialista!</span></p>', '2017-10-11 15:15:52', 'A face humana é extremamente complexa devido às estruturas anatômicas nobres que a compõem. Além da identidade humana, externa os nossos sentimentos e serve de interface para interação com o mundo exterior. ', 'Dr. Bruno'), (3, 'Enfrentando o medo antes da Rinoplastia', 'enfrentando-o-medo-antes-da-rinoplastia', '44901acb84d6f517a867e081747aa71f.jpg', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">A rinoplastia ou cirurgia plástica do nariz é um procedimento que pode ser realizado por diversas técnicas. Ela pode ser realizada com anestesia local e sedação ou anestesia geral. Além disso, a cirurgia pode ser feita com técnica aberta, semi-aberta ou fechada, cada uma com suas indicações, vantagens e desvantagens. </p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Normalmente este procedimento dura entre 2 e 4 horas, dependendo de cada caso. Os curativos são removidos em 7 dias e normalmente, os resultados definitivos são observados entre 6 meses a 01 ano. A rinoplastia geralmente não apresenta um pós-operatório doloroso, apenas o inconveniente de ficar um pouco obstruído nas primeiras semanas devido a formação de crostas nasais temporárias.</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">O planejamento é fundamental e, além da estética, lembre-se: VOCÊ TEM QUE RESPIRAR!!! Por isso operar seu nariz com um médico que conheça bem sobre o nariz é fundamental!</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Consulte seu cirurgião facial e discuta sobre o melhor plano de tratamento para você. Só assim você estará preparado e confiante para sua rinoplastia!</p>', '2017-10-11 16:24:00', 'A rinoplastia ou cirurgia plástica do nariz é um procedimento que pode ser realizado por diversas técnicas. Ela pode ser realizada com anestesia local e sedação ou anestesia geral. Além disso, a cirurgia pode ser feita com técnica aberta, semi-aberta ou fechada, cada uma com suas indicações, vantagens e desvantagens. ', 'Dr. Bruno'), (4, 'O que devo saber sobre Otoplastia', 'o-que-devo-saber-sobre-otoplastia', '9f75a81eac2355971de42c95b9ee0410.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A otoplastia é uma cirurgia estética para correção do tamanho e formato das orelhas. O problema a ser corrigido é a famosa “orelha de abano”, que muitas crianças têm e que pode causar problemas de convívio social, pois acaba se tornando motivo de bullying e de dificuldades no relacionamento durante a infância e adolescência. A otoplastia é a cirurgia estética mais realizada em crianças e adolescentes.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Estima-se que cerca de 5% das crianças nascem com o problema, que é uma alteração congênita.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A idade mínima recomendada para o procedimento é 6 anos, quando a orelha já atingiu o crescimento mais significativo. Mas é recomendado que a cirurgia não seja imposta para a criança e, sim, que seja um desejo dela, apoiado pelos pais. Por este motivo, muitas vezes ela não acontece durante a infância, mas depois, quando chega a adolescência e os problemas sociais se tornam mais aparentes e começam a incomodar mais.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O mais importante na decisão, além de ter que partir do próprio paciente, é que exista uma conversa franca entre o médico de confiança – otorrinolaringologista ou cirurgião plástico da face, paciente e família. Harmonizadas as expectativas e reais possibilidades de resultados, é hora de saber todos os detalhes sobre a cirurgia:</p><ul><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O adolescente deve ser informado sobre a técnica utilizada; local da cicatriz cirúrgica; tipo de anestesia; tempo para retirada dos pontos; tempo de internação e recuperação pós-cirúrgica.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Os riscos anestésicos são pequenos. A cirurgia pode ser feita com anestesia local. Mas, no caso dos adolescentes, é indicada a anestesia geral.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">A cirurgia deve ser realizada em hospitais ou clínicas especializadas, e é possível receber alta no mesmo dia.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após a cirurgia, o paciente permanece com um curativo “capacete” por um período de 24 horas, com o objetivo de proteger a região, diminuir os incômodos do pós-operatório e, ainda, prevenir a formação de hematomas e diminuir o inchaço.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após retirar o curativo, é recomendado que se utilize uma bandana ou faixa para dormir, com o objetivo de manter as orelhas na posição até a completa cicatrização durante 6 semanas.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Outra dica para a redução do inchaço é dormir com a cabeceira da cama elevada, pois a cabeça na posição mais alta permite maior drenagem venosa.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">É bom que se evite dormir de lado, sobre as orelhas, nos primeiros dias após a cirurgia.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Deve-se evitar, também, a exposição solar por dois meses após a cirurgia. O sol do dia a dia não tem implicações, mas é preciso evitar a exposição solar que pode bronzear.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Para a sutura da pele, são utilizados fios absorvíveis e, por isso, não há necessidade de serem retirados. Há equipes que preferem utilizar fios que não são absorvíveis e, nesses casos, os pontos são retirados em 7 a 10 dias.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">As principais complicações que podem acontecer são: sangramento e hematoma, já que a orelha possui uma grande vascularização.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O retorno às atividades escolares dever ser em 5 a 7 dias.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">A prática de exercícios físicos deve ser evitada por 3 semanas. Para esportes em que o contato físico é maior, como esportes coletivos, lutas etc., o tempo de afastamento é de dois meses.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O resultado da cirurgia quanto à posição da orelha é observado no pós-operatório imediato. No entanto, a redução completa do inchaço ocorre por volta do 3º a 4º mês após a cirurgia.</li></ul>', '2017-10-11 16:25:18', 'A otoplastia é uma cirurgia estética para correção do tamanho e formato das orelhas. O problema a ser corrigido é a famosa “orelha de abano”, que muitas crianças têm e que pode causar problemas de convívio social, pois acaba se tornando motivo de bullying e de dificuldades no relacionamento durante a infância e adolescência. A otoplastia é a cirurgia estética mais realizada em crianças e adolescentes.', 'Dr. Bruno'), (5, 'cirurgia das pálpebras', 'cirurgia-das-palpebras', '9147157e4dd56497b44129235158950d.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A cirurgia das pálpebras ou blefaroplastia se dedica à correção do excesso de pele ou gordura das pálpebras, geralmente após os 40 anos de idade. Ela visa devolver ao paciente uma região periocular menos cansada. Geralmente, o procedimento pode ser realizado sobre anestesia local e sedação e em casos específicos sob anestesia geral.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A cirurgia pode durar entre 2 a 3 horas normalmente, dependendo da região operada e a internação hospitalar dura de 6 a 12 horas.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Normalmente este procedimento não provoca uma dor pós-operatória importante e se, presente, pode ser controlada com analgésicos comuns. Os olhos geralmente ficam inchados por cerca de 7 dias até duas semanas. Durante esse período, compressas frias podem diminuir o edema e o uso de óculos escuros ajuda na proteção dos olhos.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O resultado definitivo vai aparecer após a terceira semana, geralmente no máximo em até 3 meses. Sempre confie seu rosto a um cirurgião da face!</p>', '2017-10-11 16:26:07', 'A cirurgia das pálpebras ou blefaroplastia se dedica à correção do excesso de pele ou gordura das pálpebras, geralmente após os 40 anos de idade. Ela visa devolver ao paciente uma região periocular menos cansada. Geralmente, o procedimento pode ser realizado sobre anestesia local e sedação e em casos específicos sob anestesia geral.', 'Dr. Bruno'), (6, 'Cuidados com a Rinoplastia em Nariz Negróide', 'cuidados-com-a-rinoplastia-em-nariz-negroide', '537fa0c5b952286ad92e2811468ae92a.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A pele negra apresenta características e cuidados especiais. O nariz negróide apresenta caraterísticas únicas como por exemplo a pele mais grossa, cartilagens alares mais largas e delicadas e um septo nasal mais curto. </p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Ao planejarmos uma rinoplastia nestes casos, todas essas informações devem ser levadas em consideração. Por exemplo, para uma ponta nasal mais definida, geralmente técnicas com enxerto nesta região devem ser usadas para melhorar a aparência desta região, pois a pele grossa esconde estes resultados. Estes narizes devem ser tratados com enxertos estruturadores para uma boa sustentação.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Planejar estes casos com parcimônia, conhecer as características raciais, individuais e os anseios do paciente podem proporcionar um nariz natural e com sua função preservada. </p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Confie sua face a um cirurgião facial!</p>', '2017-10-11 16:26:37', 'A pele negra apresenta características e cuidados especiais. O nariz negróide apresenta caraterísticas únicas como por exemplo a pele mais grossa, cartilagens alares mais largas e delicadas e um septo nasal mais curto. ', 'Dr. Bruno'), (7, 'Cuidados com a pele do rosto', 'cuidados-com-a-pele-do-rosto', '19e20905d264befb6a7d7cbb958a9e43.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Para garantir uma pele jovem e bonita, é preciso tomar alguns cuidados no dia a dia. Mantenha uma alimentação rica em vitaminas e minerais, beba bastante água e evite o cigarro. Além disso, siga uma rotina de limpeza e hidratação.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Rotina de cuidados com a pele:</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Lave o rosto</b><br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Manter o rosto sempre livre de impurezas é fundamental para ter uma pele saudável.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Lavar o rosto duas vezes por dia é fundamental para manter a saúde da pele e evitar o entupimento dos poros, principal responsável pelo surgimento de cravos e espinhas. A primeira lavagem deve ser feita de manhã, eliminando a oleosidade natural produzida durante o sono, e a segunda no fim do dia, retirando poluição, impurezas e a maquiagem. Utilize sabonete neutro ou específico para o seu tipo de pele. Lavar o rosto mais do que duas vezes por dia não é recomendado, pois estimula a produção de oleosidade, assim como usar água muito quente.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Retire a maquiagem</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A maquiagem obstrui os poros e impede a pele de respirar, atrapalhando essa etapa e promovendo o envelhecimento precoce da pele. Para deixar o rosto bem limpo, use um demaquilante adequado para o seu tipo de pele e finalize com um sabonete.<br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Hidrate</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Tanto a pele seca quanto a pele oleosa precisam de hidratação para equilibrar a proteção de sebo. Pessoas com pele oleosa devem preferir produtos oil-free ou em gel, enquanto quem tem a pele seca pode apostar em produtos mais hidratantes.<br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Protenção</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O sol é um dos principais responsáveis pelo envelhecimento precoce da pele, além de causar doenças sérias, como o câncer de pele. Por isso, proteger-se dele diariamente é fundamental para manter a pele sempre jovem e bonita. Aplique pela manhã, depois do hidratante, e reaplique durante a tarde para garantir a eficácia do produto.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Consulte seu dermatologista e sempre mantenha a saúde da sua pele em dia!</p>', '2017-10-11 16:27:04', 'Para garantir uma pele jovem e bonita, é preciso tomar alguns cuidados no dia a dia. Mantenha uma alimentação rica em vitaminas e minerais, beba bastante água e evite o cigarro. Além disso, siga uma rotina de limpeza e hidratação.', 'Dr. Bruno'); -- -------------------------------------------------------- -- -- Estrutura da tabela `procedimentos_esteticos` -- CREATE TABLE `procedimentos_esteticos` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `procedimentos_esteticos` -- INSERT INTO `procedimentos_esteticos` (`id`, `titulo`, `nome_url`, `imagem`, `texto`, `data`) VALUES (1, 'Toxina Botulínica (Botox ou Dysport)', 'toxina-botulinica-botox-ou-dysport', 'f43b6c5533fea4114701f3360126e414.jpg', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A toxina botulínica, é uma toxina produzida por uma bactéria chamada Clostridium Botulinium. A substância é usada para correção de rugas e marcas de expressão. A toxina age paralisando o músculo e consequentemente impedindo a contração muscular, que é o que forma a ruga. Para as rugas que já existem, esse relaxamento da musculatura suaviza os vincos. A aplicação é indicada para as rugas da testa, a glabela (espaço entre as sobrancelhas), os “pés de galinha” e rugas ao redor dos olhos e outros locais da face.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Como age a toxina botulínica?</b></span><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">Quando injetada nas rugas, a toxina botulínica age bloqueando a transmissão de estímulos dos neurônios para os músculos, impedindo a contração muscular. Em geral as rugas aparecem devido ao envelhecimento facial, que ocorre por idade avançada, exposição solar sem proteção, má alimentação e tabagismo. Muitas pessoas também têm o hábito de franzir a testa ao se expressar, o que contribui para a formação das linhas de expressão.<br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Como atua?</b><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">A toxina botulínica pode atuar de duas maneiras:</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><b>De forma preventiva</b><font color="#1b1b1b" face="Raleway, sans-serif"><b>:</b> É a aplicação do produto antes mesmo do aparecimento de linhas de expressão. Como a contração muscular é paralisada, não haverá a formação de rugas por movimentação muscular na área que foi aplicado a toxina. Geralmente a aplicação preventiva é feita por volta dos 25 anos de idade, mas não existe uma idade certa.</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>De forma corretiva:</b> Esse tipo de aplicação geralmente é realizada em torno dos 30 anos. Como a toxina tira a tensão da musculatura, as rugas causadas por esses músculos são amenizadas.<br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Como é feita a aplicação?</b><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">A injeção é aplicada no tecido subcutâneo por agulhas bem finas e em pequenas quantidades, e provocam uma pausa nos impulsos nervosos. Porém, o efeito não é imediato, e as primeiras alterações começam a aparecer somente depois de três a sete dias.</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Quanto tempo dura o seu efeito?</b></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Os efeitos duram, em média, de 4 a 6 meses. O período entre as sessões varia de paciente para paciente, e para que o resultado seja efetivo, é preciso fazer sempre uma manutenção.</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><b>Quais os cuidados após a aplicação?</b><br></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após a aplicação, a pele pode ficar um pouco sensível e inchada. Para evitar complicações, deve-se evitar a exposição direta ao sol, e usar filtro solar. É recomendado evitar a prática de atividades físicas no mesmo dia das aplicações. É importante não massagear a área, pois o efeito da aplicação pode ser reduzido.<br></p>', '2017-10-19 22:59:34'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao1` -- CREATE TABLE `secao1` ( `id` int(11) NOT NULL, `texto` text NOT NULL, `imagem` text NOT NULL, `link` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao1` -- INSERT INTO `secao1` (`id`, `texto`, `imagem`, `link`) VALUES (1, '<h4 style="color: rgb(0, 0, 0);">molestiae imperdiet laudantium semper tristique diam! Illum ab? Eveniet. Facilisis, feugiat pede eu commodi tristique eiusmod placerat accusantium interdum soluta ac natoque. Phasellus accusantium dignissimos hac</h4>', '9cd81ac80be166c97d879264aafbb670.png', 'http://10.0.0.115/cecor/clinica'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao2` -- CREATE TABLE `secao2` ( `id` int(11) NOT NULL, `imagem` text NOT NULL, `texto` text NOT NULL, `titulo` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao2` -- INSERT INTO `secao2` (`id`, `imagem`, `texto`, `titulo`) VALUES (3, '74d4aa190497e3b07c362bfaeeb53029.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste1'), (4, '294463a2113b0f71a8d82a5cfe051008.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste2'), (5, '1c916641f3f1d8bdf193062ffdf91ece.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao3` -- CREATE TABLE `secao3` ( `id` int(11) NOT NULL, `titulo` varchar(200) NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao3` -- INSERT INTO `secao3` (`id`, `titulo`, `imagem`) VALUES (2, 'Cemig', '563ff56fa0c7e954c062e1b3ec7481e4.png'), (3, 'Caixa', '075c11e9843243c7e5176fe5da4401ab.png'), (4, 'Copasa', '7950999cda95d1886dc5ad71edecdb87.png'), (5, 'Amil', 'c523e2c759936a36a0d8f89e1e8c1685.png'); -- -------------------------------------------------------- -- -- Estrutura da tabela `usuarios` -- CREATE TABLE `usuarios` ( `id` int(11) NOT NULL, `nome` varchar(255) NOT NULL, `cpf` varchar(15) NOT NULL, `senha` varchar(32) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `status` tinyint(1) DEFAULT '1' COMMENT '0 - bloqueado\n1 - ativo' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `usuarios` -- INSERT INTO `usuarios` (`id`, `nome`, `cpf`, `senha`, `email`, `status`) VALUES (1, 'Marcos Vinicius Soares Santos', '115.800.856-28', '202cb962ac59075b964b07152d234b70', '[email protected]', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `agendamentos` -- ALTER TABLE `agendamentos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `agendas` -- ALTER TABLE `agendas` ADD PRIMARY KEY (`id`); -- -- Indexes for table `agendas_horarios` -- ALTER TABLE `agendas_horarios` ADD PRIMARY KEY (`id`), ADD KEY `fk_horarios_agendas_idx` (`agendas_id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categorias_cirurgias` -- ALTER TABLE `categorias_cirurgias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cirurgias` -- ALTER TABLE `cirurgias` ADD PRIMARY KEY (`id`), ADD KEY `fk_cirurgias_categorias_cirurgias1_idx` (`categorias_cirurgias_id`); -- -- Indexes for table `clinica` -- ALTER TABLE `clinica` ADD PRIMARY KEY (`id`); -- -- Indexes for table `convenios` -- ALTER TABLE `convenios` ADD PRIMARY KEY (`id`); -- -- Indexes for table `corpo_clinico` -- ALTER TABLE `corpo_clinico` ADD PRIMARY KEY (`id`); -- -- Indexes for table `especialidades` -- ALTER TABLE `especialidades` ADD PRIMARY KEY (`id`); -- -- Indexes for table `itens_clinica` -- ALTER TABLE `itens_clinica` ADD PRIMARY KEY (`id`); -- -- Indexes for table `newsletter` -- ALTER TABLE `newsletter` ADD PRIMARY KEY (`id`); -- -- Indexes for table `noticias` -- ALTER TABLE `noticias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `procedimentos_esteticos` -- ALTER TABLE `procedimentos_esteticos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao1` -- ALTER TABLE `secao1` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao2` -- ALTER TABLE `secao2` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao3` -- ALTER TABLE `secao3` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `agendamentos` -- ALTER TABLE `agendamentos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `agendas` -- ALTER TABLE `agendas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `agendas_horarios` -- ALTER TABLE `agendas_horarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `categorias_cirurgias` -- ALTER TABLE `categorias_cirurgias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `cirurgias` -- ALTER TABLE `cirurgias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT for table `clinica` -- ALTER TABLE `clinica` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `convenios` -- ALTER TABLE `convenios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `corpo_clinico` -- ALTER TABLE `corpo_clinico` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `especialidades` -- ALTER TABLE `especialidades` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `itens_clinica` -- ALTER TABLE `itens_clinica` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `newsletter` -- ALTER TABLE `newsletter` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `noticias` -- ALTER TABLE `noticias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `procedimentos_esteticos` -- ALTER TABLE `procedimentos_esteticos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `secao1` -- ALTER TABLE `secao1` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `secao2` -- ALTER TABLE `secao2` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `secao3` -- ALTER TABLE `secao3` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `agendas_horarios` -- ALTER TABLE `agendas_horarios` ADD CONSTRAINT `fk_horarios_agendas` FOREIGN KEY (`agendas_id`) REFERENCES `agendas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `cirurgias` -- ALTER TABLE `cirurgias` ADD CONSTRAINT `fk_cirurgias_categorias_cirurgias1` FOREIGN KEY (`categorias_cirurgias_id`) REFERENCES `categorias_cirurgias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Database: `site_hosp` -- CREATE DATABASE IF NOT EXISTS `site_hosp` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `site_hosp`; -- -------------------------------------------------------- -- -- Estrutura da tabela `agendamentos` -- CREATE TABLE `agendamentos` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `telefone` varchar(20) DEFAULT NULL, `dia` varchar(40) DEFAULT NULL, `parte_dia` int(11) NOT NULL, `mensagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendamentos` -- INSERT INTO `agendamentos` (`id`, `nome`, `email`, `telefone`, `dia`, `parte_dia`, `mensagem`) VALUES (8, 'asdad', '12312', '(12) 3 2323-2332', '4', 2, 'asd'), (9, 'asd', '[email protected]', '(', '2', 2, 'wda'), (10, 'Jardel Nathan', '[email protected]', '(', '2', 2, ''), (11, 'Jardel Nathan de Souza Rodrigues', '[email protected]', '(38) 9 9913-694', '5', 2, 'as'); -- -------------------------------------------------------- -- -- Estrutura da tabela `agendas` -- CREATE TABLE `agendas` ( `id` int(11) NOT NULL, `dia` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendas` -- INSERT INTO `agendas` (`id`, `dia`) VALUES (1, 'Domingo'), (2, 'Segunda-feira'), (3, 'Terça-feira'), (4, 'Quarta-feira'), (5, 'Quinta-feira'), (6, 'Sexta-feira'), (7, 'Sábado'); -- -------------------------------------------------------- -- -- Estrutura da tabela `agendas_horarios` -- CREATE TABLE `agendas_horarios` ( `id` int(11) NOT NULL, `descricao` varchar(255) DEFAULT NULL, `agendas_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `agendas_horarios` -- INSERT INTO `agendas_horarios` (`id`, `descricao`, `agendas_id`) VALUES (1, '7:30 às 10:30 h - Complexo Médico Pró-vida - Endereço: Av. Nossa Sra. de Fátima, 719, São Judas Tadeu, Montes Claros - MG - Telefone: (38) 2211-6000', 2), (3, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 2), (5, '7:00 às 12:00 h - Centro Cirúrgico Hospital Dilson Godinho - Endereço: Av. Geraldo Ataíde, 480, Alto São João, Montes Claros - MG - Telefone: (38) 3229-4000', 3), (6, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 3), (7, '8:00 às 12:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 4), (8, '13:30 às 16:30 h - Complexo Médico Pró-vida - Endereço: Av. Nossa Sra. de Fátima, 719, São Judas Tadeu, Montes Claros - MG - (38) 2211-6000', 4), (9, '8:00 às 12:00 h - Clínica Medic Center - Endereço: Av. Bias Fortes, 1030 A, Dona Joaquina, Brasília de Minas - MG - Telefone: (38) 3231-3002', 5), (10, '14:00 às 18:00 h - Centro cirúrgico do Hospital das Clínicas Mário Ribeiro - Endereço: Rua Plínio Ribeiro, 539, Jardim Brasil, Montes Claros - MG - Telefone: (38) 3218-8161', 5), (11, '8:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 6), (12, '14:00 às 18:00 h - Otorrino Fisio Center - Endereço: Rua Santa Maria, 86, Centro, Montes Claros - MG - Telefone: (38) 3218-5000', 6); -- -------------------------------------------------------- -- -- Estrutura da tabela `banners` -- CREATE TABLE `banners` ( `id` int(11) NOT NULL, `titulo` varchar(255) NOT NULL, `imagem` varchar(45) DEFAULT NULL, `titulo_destaque` text NOT NULL, `descricao` varchar(255) DEFAULT NULL, `link` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `banners` -- INSERT INTO `banners` (`id`, `titulo`, `imagem`, `titulo_destaque`, `descricao`, `link`) VALUES (6, 'banner1', '59430ad6bc82f7458a6b01e06798a894.jpg', '<p>asda</p>', '<p>sd</p>', 'asd'), (7, 'asd', '12afc0adb8bea3d4b726086cce29add6.jpg', 'asdasd', 'asda', 'sd'); -- -------------------------------------------------------- -- -- Estrutura da tabela `categorias_cirurgias` -- CREATE TABLE `categorias_cirurgias` ( `id` int(11) NOT NULL, `nome` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `categorias_cirurgias` -- INSERT INTO `categorias_cirurgias` (`id`, `nome`, `nome_url`) VALUES (1, 'Estéticos da face', 'esteticos-da-face'), (3, 'Crânio-Maxilo- Facial:', 'cranio-maxilo-facial'), (4, 'Otorrino', 'otorrino'); -- -------------------------------------------------------- -- -- Estrutura da tabela `cirurgias` -- CREATE TABLE `cirurgias` ( `id` int(11) NOT NULL, `categorias_cirurgias_id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto_breve` varchar(500) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `cirurgias` -- INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (3, 1, 'Rinoplastia (Plástica do Nariz)', 'rinoplastia-plastica-do-nariz', '4a700d0b6213eddc2c3c7292e7947388.jpg', 'A Rinoplastia ou cirurgia plástica do nariz é um procedimento cirúrgico para alterar a aparência externa, com o objetivo de melhorar características específicas do nariz e harmonizar a face.', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A Rinoplastia ou cirurgia plástica do nariz é um procedimento cirúrgico para alterar a aparência externa, com o objetivo de melhorar características específicas do nariz e   harmonizar a face.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O nariz é um dos atributos mais proeminentes e notáveis de toda a face e exerce um efeito importante na aparência geral. Além disso, exerce a função de permitir a passagem do ar controlando a sua umidade, temperatura e pureza antes de atingir os pulmões. A cirurgia estética nasal tem repercussão funcional e o contrário pode também acontecer. Dessa forma, é praticamente impossível uma Rinoplastia sem uma abordagem funcional integrada.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Do ponto de vista cirúrgico, a rinoplastia é diferente de vários outros procedimentos pelo seu aspecto dinâmico. As estruturas nasais se movem, não somente durante, mas no período pós operatório também. Assim, o cirurgião deve prever e se antecipar a todas as modificações que possa acontecer, através de técnicas específicas.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A rinoplastia é muito interativa, e quanto mais o cirurgião aprende a interpretar as mudanças intra-operatórias e entender o que elas representam, melhor se torna o seu julgamento e maior controle ele terá de seu resultado. Ela oferece, talvez mais do que qualquer outro procedimento estético, a possibilidade de individualizar o resultado. Mais ainda: <b>Sucesso na rinoplastia requer que o resultado seja individualizado!</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Rinoplastia estruturada:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A rinoplastia  ainda é vista nos dias de hoje por muitos cirurgiões não especialistas como uma cirurgia simples cujo objetivo principal é reduzir o nariz através da remoção de tecidos (osso e cartilagem). No entanto, esta abordagem simplista enfraquece o suporte das estruturas  do nariz, levando a deformidades estéticas e até mesmo colapso de partes do nariz, repercutindo também na função respiratória. Estas complicações frequentemente levam o paciente  a procura de uma rinoplastia revisional (secundária).</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Em se tratando da rinoplastia, forma e função são inseparáveis, e os cirurgiões devem entender como as várias mudanças na aparência nasal, mesmo que sutis,  podem afetar o fluxo respiratório. Devem entender que, na maioria das manobras realizadas durante o procedimento, seja para reduzir o dorso, seja para refinar a ponta, existem implicações funcionais. Este conhecimento deve ser usado a favor do cirurgião para previnir os problemas respiratórias após a rinoplastia (ainda muito comuns), assim como para tratar  e restaurar a função , e a estética, em casos secundários.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Durante toda minha formação cirúrgica, tanto na cirurgia Craniofacial e na Otorrinolaringologia, tenho praticado e sido adepto à Rinoplastia Estruturada, que favorece a preservação da integridade estrutural do nariz, ao mesmo tempo que usa enxerto (do próprio paciente) para restaurar a sustentação e reforçar as áreas de fraqueza do nariz  após as modificações necessárias. Esta filosofia de trabalho proporciona resultados mais naturais e duradouros prevenindo, assim, complicações estéticas e funcionais.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Rinoplastia feira pelo otorrino:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A Rinoplastia é considerada por todos os especialistas na área como a cirurgia estética mais complexa da face, pelo fato do nariz apresentar uma infinidade de variações anatômicas, que requerem decisões acertadas sobre as indicações de cada umas das várias técnicas cirúrgicas existentes. Ela pode ser realizada tanto por otorrinolaringologistas como por cirurgiões plásticos, desde que tenham o devido treinamento específico na área.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A<b> American Academy of Facial Plastic and Reconstructive Surgery</b> , a maior e principal associação de cirurgia plástica facial do mundo, formada na sua grande maioria por otorrinolaringologistas, vem dando suporte no desenvolvimento e aperfeiçoamento da rinoplastia e outras cirurgias plásticas faciais desde 1972. A grande maioria das cirurgias plásticas faciais nos EUA já são realizadas por otorrinos treinados na área, através do programa de Fellowship. Aqui no Brasil, já existe dentro da <b>Associação Brasileira de Otorrinolaringologia e Cirurgia Cérvico Facial a Academia Brasileira de Cirurgia Plástica da Face</b>, associação que vem desempenhando este papel há vários anos, promovendo vários cursos intensivos em todo o país, além da organização de congressos específicos de Rinoplastia com a presença dos maiores especialistas do Brasil e do mundo.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Independente da especialidade que pertença o Cirurgião, o candidato à rinoplastia deve buscar informações  sobre a formação e treinamento de seu médico, assim como a experiência adquirida na área de  rinoplastia. Este treinamento específico é o principal fator determinante para o sucesso da cirurgia  e satisfação do paciente.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Dicas para escolher seu médico:</b></span></font></p><ol><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Informe-se bem sobre o procedimento e sobre o profissional que irá te atender. Os resultados da cirurgia nasal duram uma vida.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><span style="font-size: 14px; color: rgb(27, 27, 27); font-family: Raleway, sans-serif;">Verifique se o seu problema requer uma solução nasal dupla. Diversas técnicas cirúrgicas – funcionais e estéticas – podem ser necessárias, e devem ser combinadas em uma única operação.</span></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Verifique se o cirurgião tem treinamento especializado em cirurgia estética e funcional.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Lembre-se que a cirurgia estética pode distorcer a forma do seu nariz. O cirurgião é capaz de restaurar a sua respiração, assegurando simultaneamente a forma natural de seu nariz?</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Certifique-se que o seu cirurgião entende seus problemas, necessidades e expectativas.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Não prossiga com a cirurgia, a menos que você esteja feliz com o diagnóstico e a recomendação.</span></font></li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Se você tiver dúvidas, peça uma segunda opinião!</span><br><br><br><br></font><br></li></ol><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br></font></p><div style="text-align: justify;"><p></p></div>', '2017-10-19 23:02:20'), (4, 1, 'Otoplastia (Plástica das Orelhas)', 'otoplastia-plastica-das-orelhas', 'ed31571c18a8ae99fdf7ed3e21676c4b.jpg', 'O termo otoplastia refere-se à cirurgia plástica das orelhas, podendo corresponder a várias técnicas, dependendo do problema a ser tratado. Em geral o termo é usado para indicar a correção de orelhas proeminentes (de abano), porém outros problemas como sequelas de traumas, ausência congênita das orelhas e orelhas constritas também são tratadas com técnicas de otoplastia.', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>O que é a otoplastia?</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O termo otoplastia refere-se à cirurgia plástica das orelhas, podendo corresponder a várias técnicas, dependendo do problema a ser tratado. Em geral o termo é usado para indicar a correção de orelhas proeminentes (de abano), porém outros problemas como sequelas de traumas, ausência congênita das orelhas e orelhas constritas também são tratadas com técnicas de otoplastia.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Indicações da otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">As correções de orelha são realizadas para minimizar deformidades, tentar corrigir assimetrias de forma, tamanho e angulação no caso do abano, em orelhas mal formadas de nascença ou que sofreram deformidades após um traumatismo.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Existe desde o grau mais leve até o mais grave de orelhas em abano, porém a indicação cirúrgica é baseada no grau de incômodo que o paciente apresenta.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A idade mínima situa-se entre seis e sete anos de idade. Nessa faixa etária já houve finalização do crescimento das orelhas, de modo que a cirurgia não irá interferir no crescimento. Também coincide com a idade escolar de alfabetização, quando a criança começa a se incomodar com as orelhas proeminentes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Como é feita a cirurgia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A anestesia mais comumente usada é a local com sedação. A cirurgia se inicia com uma incisão atrás da orelha, seguindo a dobra natural da pele. É, então, realizada a retirada do excesso de pele e em seguida é feito o ligamento da cartilagem, para deixa-la mais flexível. Em alguns casos pode ser feita a retirada de cartilagem para diminuição da orelha. Logo em seguida são feitos pontos de fixação para manter uma nova anatomia da orelha e realizando o fechamento da pele. Em geral, os pontos são internos e absorvíveis, não precisam, portanto, ser retirados. A cirurgia tem duração média de uma hora.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Antes da cirurgia:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Consulta médica:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Uma boa consulta pré-operatória, além de preparar o paciente para a cirurgia, deverá fazer com que ele compreenda seu problema, compreenda a solução proposta, riscos e benefícios do procedimento, e alinhe a expectativa ideal com as possibilidades de tratamento e que tipo de resultado poderá ser alcançado.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Exames</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A otoplastia requer que sejam realizados todos os exames pré-operatórios preconizados. Entre eles estão o exame de sangue, composto por hemograma e coagulograma completos, e o eletrocardiograma.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Medicações</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Deve ser interrompido o uso de qualquer outro remédio que altere a coagulação do sangue, entre eles: ácido acetilsalicílico (AAS), gingko biloba, cascara sagrada e clopidogrel. O ideal é que a manutenção do uso dos medicamentos seja feira regularmente, principalmente em casos de pacientes com hipertensão e diabetes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Jejum</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">São necessárias aproximadamente oito horas de jejum de sólidos e líquidos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Após a cirurgia:</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Internação</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O tempo médio de internação é de oito a doze horas.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Curativos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Os curativos são geralmente realizados com pomada cicatrizante e gaze. Ele é realizado no final da cirurgia e retirado após um período de 24 a 48 horas da cirurgia no consultório pelo médico. Se houver necessidade de novo curativo, o paciente (ou seu responsável) será orientado como fazê-lo. Deverá ser utilizada uma faixa de tecido compressiva específica nos casos de correção de abano, retirada apenas para o banho, mas utilizada 24 horas por dia, por um mês.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O paciente deverá deixar a região da cicatriz limpa e seca, lavando com cuidado no banho e secando cuidadosamente após, segundo orientação do médico.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Dor</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Sempre são prescritos analgésicos, mas geralmente não há dor, há apenas uma sensação de incômodo. Se houver dor importante, o médico deverá ser avisado para que examine e oriente.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Inchaço e vermelhidão</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">É normal que haja edema (inchaço) e vermelhidão. Com o passar dos dias este aspecto vai melhorando até a cicatrização se completar.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Medicação</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Analgésicos comuns são prescritos de rotina para o pós-operatório, e os pacientes são orientados a tomar se tiverem dor. Anti-inflamatórios também poderão ser prescritos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Volta às atividades normais e exercícios físicos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Em crianças, recomenda-se aguardar uma semana para voltar à escola, para evitar o risco de trauma nas orelhas recém-operadas. Nos casos mais simples, pode-se retornar às aulas em três dias. Nos adultos, geralmente em dois dias. Atividade física deverá ser&nbsp; iniciada após 15 dias, leve no início e evitando-se trauma no local operado.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Uso de óculos</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O uso dos óculos é liberado até por cima do curativo, preso com esparadrapo na faixa, desde que não aperte demais a cabeça. Quando for retirado o curativo, deve-se tomar cuidado com os óculos apertados à cabeça, ou atrás da orelha, que deverão ser reajustados à face. Alguns pacientes aprendem a prender as hastes dos óculos acima da inserção da orelha à cabeça, com o uso da própria faixa que deverão usar por 30 dias.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Retorno ao consultório médico</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O primeiro retorno é em 24 a 48 horas, para remoção do curativo e avaliação médica, e então serão combinados os próximos retornos.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Cicatrizes e queloide</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Nas cirurgias de correção de abano, as cicatrizes ficam escondidas na parte posterior da orelha, na junção da orelha ao crânio. Há casos que necessitam incisões na parte da frente da orelha, mas procura-se escondê-las nas dobras naturais da pele. A cicatriz chamada de queloide, esteticamente desfavorável, pode ocorrer em alguns pacientes.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Contraindicações à otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A infecção de ouvido contraindica a cirurgia, pois a proximidade com o local que será operado faz com que haja maior risco de infecção na ferida ou na cartilagem da orelha.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Infecções em outros locais também são contra indicações para o procedimento, tais como gripes mais intensas, infecções urinarias, amigdalites. A presença de doenças de base mal controladas, como hipertensão e diabetes, são contraindicações para qualquer procedimento plástico, devendo essas doenças serem controladas antes da otoplastia.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">O tabagismo é uma contraindicação relativa, o paciente é aconselhado a deixar de fumar por duas semanas antes e 30 dias após a cirurgia, devido ao risco de afetar a cicatrização.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Riscos da otoplastia</b></span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">Pode haver sangramento, hematoma, dor, inchaço maior que o esperado, infecção, ou mesmo permanecer uma assimetria, principalmente em orelhas de adultos, que têm a cartilagem mais dura, tendendo a perder o ângulo da correção e voltar ao abano.</span><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b></b></span><br><br><br><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><br></font></p>', '2017-10-19 23:02:35'), (5, 1, 'Mentoplastia (Cirurgia do Queixo)', 'mentoplastia-cirurgia-do-queixo', 'ccfc7efa2e07b0bc7a8a6b29187f662f.jpg', 'A cirurgia para aumentar o queixo é capaz de trazer uma harmonia facial. O que pode ter efeitos positivos no quesito aparência, auto estima e segurança. ', '<p>A cirurgia para aumentar o queixo é capaz de trazer uma harmonia facial. O que pode ter efeitos positivos no quesito aparência, auto estima e segurança.&nbsp;</p><p><b>Tipos de cirurgia</b></p><p>O aumento de mento, aumento de queixo ou Mentoplastia é um procedimento cirúrgico para remodelar o queixo que pode ser aumentada através da colocação de implantes, osteotomia (cortar o osso) ou, em alguns casos, pode-se optar pelo uso de alguns preenchedores. A lipoescultura neste caso, é muito bem vinda.</p><p>Os dois tipos de implantes mais utilizados são o de polietileno poroso de alta densidade e o de silicone. A vantagem do primeiro é que o material é mais aceito pelo organismo (biocompatível), tem menor índice de efeitos adversos e vem se tornando a primeira escolha.</p><p>Na osteotomia de mento não há necessidade da inclusão de implantes, e o aumento do queixo é realizado através de seu reposicionamento anterior e fixação com mini placas de titânio e parafusos. A incisão, tanto na osteotomia quanto com o uso de implante, é posicionada dentro da boca (sulco gengival). É imprescindível a avaliação da oclusão dentária e das projeções da face para o resultado adequado.</p><p><b>Para quem é indicada?</b></p><p>É recomendada para pacientes que têm queixo pequeno e retraído com boa oclusão dentária, ou seja, a pessoa candidata a esta cirurgia não deve apresentar alteração de sua mordida. Por isso, são feitas análises das proporções estéticas da face.</p><p><b>É comum operar queixo junto com o nariz?</b></p><p>É comum o paciente chegar ao consultório achando que seu nariz é grande quando, muitas vezes, o que existe é uma associação de nariz grande e queixo pequeno. Essa impressão errada acontece porque a harmonia facial na visão de perfil é muito dependente da relação entre o queixo e o nariz.</p><p>O nariz pode até nem ser grande, mas parecer se o queixo for pequeno quando analisadas aquelas proporções faciais.</p><p></p><p>À associação entre cirurgia de nariz e mentoplastia dá-se o nome de perfiloplastia, cujo objetivo é melhorar a harmonia das proporções da face.</p><p><b>Pré operatório</b></p><p>O pré-operatório passa por uma análise facial bem como uma história médica e odontológica completas. O tratamento ortodôntico muitas vezes deve ser feito antes da mentoplastia. Isso porque os dentes influenciam a posição dos lábios e estes determinam a estética do perfil, por isso é essencial corrigir as más posições dentárias.</p><p>Os exames pré-operatório variam conforme a idade e estado de saúde, mas os principais são:</p><ul><li>Hemograma, coagulogama, creatinina, glicemia de jejum;</li><li>Rx de tórax PA/P;</li><li>Eletrocardiograma.</li></ul><p><b>Como é feita a cirurgia?</b></p><p>A cirurgia de mentoplastia pode ser feita com uso de implante ou através de fraturas no osso do mento e seu avanço. Dentre os implantes, o melhor é o polietileno poroso – POREX®. Tanto o uso de POREX® quanto a mentoplastia de avanço com fratura são boas opções; a fratura pode ser indicada em casos de hipomentonismo (queixo pequeno) associado a alguns problemas de ronco.</p><p>A incisão de ambas é de 4 cm por dentro da boca e a cicatriz fica imperceptível. O paciente é orientado a ter uma higiene bucal mais cuidadosa nos primeiros 14 dias. O resultado final ocorre em 4-6 meses, com resultados já visíveis dentro das 2 primeiras semanas.</p><p>Caso opte-se por uso de POREX, o mesmo é fixado ao osso com 2 parafusos. Já na mentoplastia de avanço não é usado implante, mas são usados uma placa especial de titânio e 5 parafusos.</p><p></p><p>As duas cirurgias são realizadas com anestesia geral ou local com sedação, com duração de 2 horas.</p><p><b>O pós operatório da Mentoplastia é muito doloroso?</b></p><p>Geralmente não há dor no pós-operatório. Quando ocorre um discreto desconforto, poderemos neutralizá-la com o uso de analgésicos comuns.</p><p></p><p>Pode haver uma diminuição da sensibilidade que pode durar de 2 a 3 meses.</p><p><b>Como é a recuperação da cirurgia de Mentoplastia?</b></p><p>A recuperação exige alguns cuidados especiais, tais como:</p><ul><li>Evitar sol e traumatismos locais no pós-operatório;</li><li>Retornar ao consultório nos dias e horários estabelecidos;</li><li>Escovar os dentes com escova macia e reforçar a higiene bucal com soluções antissépticas ;</li><li>Necessário fazer uso correto de medicação para dor, inflamação e prevenção de infecção por 7 dias;</li><li>Não se preocupar com o “inchaço” natural do queixo, que poderá persistir por algumas semanas;</li><li>Deitar de barriga para cima;</li><li>Compressas geladas locais por 2-3 dias são;</li><li>Evitar alimentos sólidos que exijam mastigação intensa nos primeiros dias. Alimentação livre, a partir do segundo dia, principalmente à base de proteínas (carnes, leite, ovos) e vitaminas (frutas);</li><li>Recomenda-se fazer uma adequada avaliação ortodôntica e odontológica. Se necessário, deve-se realizar uma avaliação por um Cirurgião Buco-Maxilo-Facial;</li><li>É indicado a realização da drenagem linfática no pescoço para acelerar o processo de desinchar o edema.</li></ul><p><b>Como é a cicatriz?</b></p><p>A cicatriz mede 4 cm e fica por dentro da boca.</p><p><b>Qual a vantagem da Mentoplastia cirúrgica em relação ao preenchimento?</b></p><p>Enquanto a cirurgia tem duração para toda a vida do paciente, o preenchimento dura de 18-24 meses e seu resultado é bem mais modesto.</p><p>Porém, o preenchimento tem como principal vantagem o preço, uma vez que não é necessário arcar com custos de hospital, equipe médica e material, e não necessita de internação e recuperação pós-operatória.</p><p><b></b><br><br></p><p><b></b><br></p>', '2017-11-22 17:29:50'), (6, 1, 'Blefaroplastia (Plástica das Pálpebras)', 'blefaroplastia-plastica-das-palpebras', '8f62d0423ddb9dda0ba977c3a9591370.jpg', 'É um procedimento cirúrgico realizado para melhorar a aparência das pálpebras superiores, inferiores ou de ambas. A cirurgia proporciona uma aparência rejuvenescida ao redor dos olhos, fazendo com que o olhar não tenha o visual de cansado e caído.', '<p><b>O que é a cirurgia das pálpebras?</b></p><p>É um procedimento cirúrgico realizado para melhorar a aparência das pálpebras superiores, inferiores ou de ambas. A cirurgia proporciona uma aparência rejuvenescida ao redor dos olhos, fazendo com que o olhar não tenha o visual de cansado e caído.</p><p><b>Como a blefaroplastia é realizada e após quanto tempo os resultados são visíveis?</b></p><p>O procedimento dura por volta de 45 a 90 minutos, sob anestesia local com sedação ou anestesia geral. É necessário que o paciente fique internado por um período de 6h a 8h para observação.</p><p><b>Resultados</b></p><p>Logo na primeira semana, é possível ver os primeiros resultados, que se tornam mais evidentes após dois ou três meses com a diminuição do inchaço, com seu resultado final depois de seis meses a um ano.</p><p>Os melhores resultados aparecem em pacientes que têm a pele das pálpebras mais firme, pois se a região é muito flácida, a probabilidade de a pálpebra cair novamente é maior.</p><p><b>Quais são os seus benefícios e para quem a cirurgia é indicada?</b></p><p>A cirurgia é indicada para pessoas com grande quantidade e flacidez de pele nas pálpebras, e o seu principal benefício é o rejuvenescimento da pele na área dos olhos.</p><p>Na pálpebra superior, a cirurgia remove o depósito elevado de gordura que aparenta inchaço, e na pálpebra inferior retira o excesso de pele e rugas finas. Remove também a sobra de pele que resulta em dobras ou atrapalha o contorno natural da pálpebra superior — às vezes, prejudicando a visão.</p><p>Bolsas sob os olhos também podem ser corrigidas, assim como a queda das pálpebras inferiores. Além disso, a cirurgia também é recomendada para a remoção de xantelasmas, que são pequenas bolinhas de colesterol que se formam nessa região.</p><p><b>Quais riscos a blefaroplastia oferece e quais são os cuidados pós-operatórios da cirurgia?</b><br></p><p>Assim como outras intervenções cirúrgicas, a blefaroplastia oferece riscos à saúde do paciente, como complicações cardíacas e pulmonares e os riscos relacionados à anestesia, à alteração da frequência cardíaca e à pressão arterial. Por isso, é necessário procurar um profissional de confiança e realizar a cirurgia em um local adequado.</p><p></p><p>Após a cirurgia, os olhos podem ficar temporariamente ou permanentemente secos, sendo necessário o uso frequente de colírios. Pode ocorrer também uma disfunção envolvendo a posição anormal das pálpebras superiores, pele solta e fechamento inadequado da pálpebra, com exposição da conjuntiva e frouxidão anormal da pálpebra inferior.</p><p><b>Pós-operatório</b></p><p>No pós-operatório, devem ser seguidas todas as recomendações do médico responsável, como evitar cigarro, a ingestão de antibiótico e analgésicos, o uso correto de colírios, a higienização e o repouso. É importante que, durante o período de cicatrização, o local da cirurgia não sofra esforço excessivo, escoriação ou movimento.</p><p>Entre outros cuidados após o procedimento, deve-se usar uma pomada lubrificante e fazer compressas frias no local, e o uso de óculos escuros deve ser feito por cerca de 30 dias até que a cicatrização esteja completa.</p><p><b></b><br></p>', '2017-11-22 17:30:09'), (7, 1, 'Bichectomia (Redução do volume das bochechas)', 'bichectomia-reducao-do-volume-das-bochechas', '9cdc4c2ea0ff6ad47de59e6137839a8f.jpg', 'A bichectomia é a cirurgia em que há a retirada total ou mesmo parcial de duas bolsas de gorduras presentes uma em cada lado da boca, entre o maxilar e a mandíbula, chamadas de "bolas de Bichat". A finalidade da bichectomia é puramente estética: reduzir o volume da parte de baixo do rosto, por isso, é uma cirurgia controversa.', '<p><b>O que é a bichectomia</b></p><p>A bichectomia é a cirurgia em que há a retirada total ou mesmo parcial de duas bolsas de gorduras presentes uma em cada lado da boca, entre o maxilar e a mandíbula, chamadas de "bolas de Bichat". A finalidade da bichectomia é puramente estética: reduzir o volume da parte de baixo do rosto, por isso, é uma cirurgia controversa.</p><p>Com o passar da idade e a retirada dessas bolsas de gordura pode acarretar em uma aparência mais envelhecida, principalmente se for total.</p><p><b>Indicações da bichectomia</b></p><p>A bichectomia é uma cirurgia puramente estética e pode ser realizada por pessoas que querem afinar o rosto.</p><p><b>Pré-requisitos para fazer a cirurgia</b></p><p>É importante que seja feita uma avaliação clínica pelo profissional que executará a cirurgia, para que ele possa avaliar se há indicação e quais são as expectativas da paciente quanto ao tratamento.</p><p></p><p>Depois disso, é importante que o paciente faça os exames pré-cirúrgicos, que incluem hemograma completo, coagulograma e glicemia, para ver se ele está em condições de saúde para realizar a cirurgia. Além disso, é importante que o paciente passe pela avaliação de um cardiologista, se o médico achar necessário.</p><p><b>Contraindicações para bichectomia</b></p><p>Pessoas com problemas de saúde, como doenças infecciosas ativas, são contraindicadas a fazer esse tipo de cirurgia. Além disso, pessoas com uma expectativa irreal sobre o procedimento não devem realizar esse tipo de operação.</p><p><b>Como é feita bichectomia</b></p><p>A cirurgia é intraoral, ou seja, o corte é feito dentro da boca, pois as mucosas bucais tem uma melhor cicatrização e não deixam marca aparente. Nesses casos o paciente recebe anestesia local e sedação.</p><p><b>Duração da cirurgia</b></p><p>O tempo de duração da cirurgia dependerá da experiência do médico e de quaisquer eventuais complicações. Mas a bichectomia dura em média entre uma hora e uma hora e meia.<br><br><b>Possíveis complicações da bichectomia</b></p><p>As possíveis complicações são hemorragia, infecção local, formação de hematomas, e lesões à nervos que podem levar distúrbios sensitivos ou paralisias faciais.</p><p><b>Pré-operatório da bichectomia</b></p><p>Além da realização dos exames pré-operatórios (glicemia, coagulograma e hemograma completo) e da avaliação cardiológica, é importante que antes da bichectomia o paciente realize jejum de oito horas.</p><p><b>Pós-operatório da bichectomia</b></p><p>Normalmente ocorre um inchaço na região, devido ao corte cirúrgico, que pode ser tratado com o uso de compressas de água fria. Deve-se evitar consumir alimentos cítricos, que podem causar maior desconforto.</p><p>O retorno às atividades normais em geral demora uma semana e a volta das atividades físicas em torno de 3 semanas.</p><p><b></b><br></p><p><br><br></p>', '2017-11-22 17:30:36'), (8, 1, 'Lipoaspiração de Papada', 'lipoaspiracao-de-papada', '25631061145248f50d59197b18881f61.jpg', 'O tratamento da papada pode ser feito através de uma lipoaspiração da região cervical. Pequenas incisões são feitas para a introdução de cânulas bem pequenas para aspirar a gordura.', '<p>O tratamento da papada pode ser feito através de uma lipoaspiração da região cervical. Pequenas incisões são feitas para a introdução de cânulas bem pequenas para aspirar a gordura.</p><p><b>Como é feita a lipo de papada?</b></p><p>A cirurgia é realizada com anestesia local e não há necessidade de internação. O procedimento tem duração média de 30 a 40 minutos.</p><p>Após a infiltração da região com anestésico local é utilizado uma fibra de 2mm de largura para liberar a energia na região. O processo de aplicação do laser dura em média 15 minutos para essa região. Em seguida é realizada a aspiração da gordura “derretida”.</p><p>Para a cirurgia é realizada uma pequena incisão de 4mm abaixo do queixo. Para o fechamento da incisão é necessário apenas um ponto que é removido com 1 semana de pós operatório.</p><p><b>Recuperação após da lipo da papada</b></p><p>Em 72 horas o paciente já pode retornar às suas atividades diárias. Em 5 dias já é possível realizar atividades físicas. Recomenda–se utilizar uma malha compressiva por um período de 2 a 3 semanas após a lipo de papada. Não há necessidade de usar a malha compressiva o dia todo, apenas no período em que se está em casa. Algumas sessões de drenagem linfática na região podem ajudar na redução do inchaço e melhorar a recuperação. O resultado definitivo da cirurgia é esperado em 4 a 6 meses após o procedimento.Nossa sociedade ocidental tende a valorizar pessoas com o rosto angulado e queixo bem definido, associando a elas características de personalidade forte e beleza.<br></p><p><br></p>', '2017-11-22 17:31:07'), (11, 3, 'Fissuras Lábio-palatinas', 'fissuras-labio-palatinas', 'f09fd0f6140091044d5ce3b1032bc5d2.jpg', 'As fissuras labiopalatinas são os defeitos congênitos mais comuns entre as malformações que afetam a face do ser humano, atingindo uma criança a cada 650 nascidas, de acordo com a literatura especializada. De origem latina, a palavra “fissura” significa fenda, abertura.', '<p>As fissuras labiopalatinas são os defeitos congênitos mais comuns entre as malformações que afetam a face do ser humano, atingindo uma criança a cada 650 nascidas, de acordo com a literatura especializada. De origem latina, a palavra “fissura” significa fenda, abertura.</p><p><b>O que é fissura labiopalatina?</b></p><p>A maioria dos estudos considera as fissuras labiopalatinas como defeitos de não fusão de estruturas embrionárias. Ou seja, tanto o lábio como palato (“céu da boca”) são formados por estruturas que, nas primeiras semanas de vida, estão separadas. Estas estruturas devem se unir para que ocorra a formação normal da face. Se, no entanto, esta fusão não acontece, as estruturas permanecem separadas, dando origem às fissuras no lábio e/ou no palato. As fissuras faciais são estabelecidas na vida intra-uterina, no período embrionário (ou seja, até a 12a. semana de gestação), e apresentam grande diversidade de forma pela variabilidade na amplitude e pelas estruturas afetadas no rosto.</p><p><b>Classificação das fissuras</b></p><p>De acordo com as estruturas faciais afetadas, as fissuras recebem uma classificação. A figura abaixo ajuda a entender onde se localiza o forame incisivo, ponto anatômico de referência no diagnóstico da fissura.</p><p style="text-align: center;"><img src="http://files.marina-fissura.webnode.com.br/200000080-1264b135e4/esquema.jpg" alt="Resultado de imagem para CLASSIFICAÇÃO DAS FISSURAS" style="width: 529px; height: 312.992px;"></p><p style="text-align: left;"><b>Fissuras pré-forame incisivo:</b></p><p style="text-align: left;">Fissuras que se restringem ao palato primário, ou seja, envolvem o lábio e/ou o rebordo alveolar sem ultrapassar o limite do forame incisivo. Varia desde um pequeno corte no vermelhão do lábio (incompleta) até toda a extensão do palato primário (completa). Podem ser classificadas em unilateral (só de um lado),bilateral (nos dois lados) ou mediana (no meio).</p><p style="text-align: left;"><b>Fissuras transforame incisivo:</b></p><p style="text-align: left;">São fissuras completas, ou seja, que envolvem total e simultaneamente o palato primário e o palato secundário. Estende-se desde o lábio até a úvula (“campainha”), atravessando o rebordo alveolar. Podem ser também classificadas em unilateral (só de um lado), bilateral (nos dois lados) ou mediana (no meio).</p><p style="text-align: left;"><b>Fissuras pós-forame incisivo:</b></p><p style="text-align: left;">Envolvem apenas o palato (“céu da boca”), mantendo o lábio intacto assim como os dentes. Ocorrem quando as estruturas do palato secundário não fazem a fusão. As consequências são essencialmente funcionais, no mecanismo velofaríngeo e na tuba auditiva. São consideradas completas quando atingem tanto palato mole como palato duro, morrendo no forame incisivo.</p><p style="text-align: left;"><b>Fissura submucosa:</b></p><p style="text-align: left;">Malformação que ocorre no palato secundário considerada forma anatômica subclínica. O defeito é na musculatura do palato mole e/ou no tecido ósseo do palato duro, sendo que a camada da mucosa permanece íntegra. Pode ocorrer de forma isolada, associada à fissura de palato primário ou a síndromes.&nbsp;</p><p style="text-align: left;"><b>Por que ocorre?</b></p><p style="text-align: left;">Não há apenas uma causa para a ocorrência da fissura. Acredita-se que a fissura se dê por uma interação de diversos genes associados a fatores ambientais; este modelo é conhecido como herança multifatorial. Os fatores ambientais mais conhecidos que são de risco para as fissuras são: bebida alcoólica, cigarros e alguns medicamentos (como corticóides e anticonvulsivantes), principalmente quando utilizados no primeiro trimestre da gestação. A ação destes fatores ambientais depende de uma predisposição genética do embrião (interação gene versus ambiente). Hoje, com o avanço das tecnologias de imaginologia, é possível identificar a ocorrência de fissura por exames de imagens no período pré-natal.</p><p style="text-align: left;"><b>Como é o tratamento?</b></p><p>O processo de reabilitação é longo e deve observar o crescimento craniofacial do indivíduo para que não haja sequelas, como crescimento ósseo inadequado. A reabilitação compreende etapas terapêuticas de acordo com idade e crescimento, e envolve a atuação de diversas especialidades.</p><p>A criança deve ser acompanhada por uma equipe interdisciplinar, composta por profissionais da cirurgia craniomaxilofacial, otorrinolaringologia, cirurgia plástica, fonoaudiologia e odontologia, especialidades consideradas essenciais na reabilitação das fissuras, além de um profissional de genética. Após essa primeira avaliação são discutidas as condutas terapêuticas iniciais e realizado encaminhamento para exames e outros atendimentos, de acordo com a necessidade de cada caso.</p><p></p><p>Embora haja um protocolo comum de etapas e condutas terapêuticas no tratamento da fissura labiopalatina, cada caso é analisado individualmente, pois a evolução do tratamento depende de vários fatores individuais. O protocolo estabelece as épocas adequadas de cada intervenção, sempre respeitando o crescimento craniofacial e a maturidade fisiológica do paciente. No total, o tratamento leva de 16 a 20 anos para se completar.</p><div><br></div>', '2017-11-22 17:32:11'); INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (12, 3, 'Trauma Facial', 'trauma-facial', '063838ae8425469be62edf5dc5933893.jpg', 'Os traumas de face são ocorrências comuns em hospitais e unidades de emergência, variando de leves traumatismos que necessitam de alguns cuidados básicos no seu tratamento, à fraturas complexas que exigem tratamento cirúrgico em nível hospitalar. Dentro da traumatologia craniomaxilofacial, podemos incluir tanto os traumatismos nas estruturas da face propriamente dita (pele, músculos, nervos, vasos sanguíneos e ossos da face e crânio), quanto os traumas da cavidade bucal (dentes, gengiva, língua,', '<p>Os traumas de face são ocorrências comuns em hospitais e unidades de emergência, variando de leves traumatismos que necessitam de alguns cuidados básicos no seu tratamento, à fraturas complexas que exigem tratamento cirúrgico em nível hospitalar. Dentro da traumatologia craniomaxilofacial, podemos incluir tanto os traumatismos nas estruturas da face propriamente dita (pele, músculos, nervos, vasos sanguíneos e ossos da face e crânio), quanto os traumas da cavidade bucal (dentes, gengiva, língua, osso maxilar, osso mandibular, vasos sanguíneos e nervos da boca).</p><p><b>Qual a área profissional responsável pelo tratamento dos traumas de face?</b></p><p>A área de traumatologia craniomaxilofacial, representada pelo Cirurgião Craniomaxilofacial, é aquela responsável pelos traumas da face, também chamado de traumatismos craniofaciais. Esta área compreende os traumas localizados em: (1) ossos do crânio (frontal, parietais, temporais, occiptal); (2) ossos nasais (fraturas de nariz); (3) ossos malares ou zigomáticos (fraturas na região da maçã do rosto); (4) ossos da órbita (fraturas na região da órbita dos olhos); (5) ossos maxilares (fratura de maxila ou fratura de mandíbula); (6) rebordo alveolar e dentes (fraturas alvéolo-dentárias ou dentárias); (7) pele da face, lábios e língua, além de músculos, vasos sanguíneos e nervos da região da face e da cavidade bucal (cortes, lacerações, ferimentos perfuro-cortantes).</p><p><b>Quais os sinais e sintomas das fraturas de face?</b></p><p>Entre os sintomas das fraturas faciais podemos citar: (1) dor variável, de leve a intensa, dependendo do tipo de trauma de face e do local acometido; (2) dormência do queixo, lábios, língua, gengiva, dentes, bochechas, nariz e testa, dependendo do tipo de trauma de face e local de acometimento; (3) dificuldades em movimentar a mandíbula (dor e limitação dos movimentos por impedimento mecânico); (4) alterações da oclusão, ou seja, modificações na “mordida”; (5) cortes e lacerações; (6) hematoma, equimose e edema (áreas arroxeadas e inchadas).</p><p><b>Como é o tratamento dos traumas de face?</b></p><p>O primeiro atendimento é emergencial e tem como objetivo garantir a vida do paciente nos traumas mais graves ou apenas evitar maiores danos no local das injúrias nos casos de traumas faciais mais leves. Após o atendimento emergencial, segue-se a solicitação de exames complementares para determinação de um diagnóstico mais preciso e, desta forma, instituir o correto tratamento.</p><p>O cirurgião Craniomaxilofacial, muitas vezes solicitado para agir em salas emergenciais, é o especialista que irá realizar o tratamento do paciente vítima de trauma de face. Após o atendimento emergencial e a execução dos exames de rotina e exames complementares para diagnóstico, inicia-se o tratamento definitivo do paciente. Na maioria das vezes estes tratamentos envolvem suturas de feridas e tratamento cirúrgico das fraturas presentes.</p><p>Por fim, o cirurgião prescreve as medicações que serão utilizadas após o procedimento, esclarece dúvidas e orienta paciente e familiares quais serão os cuidados necessários. Todos estes passos são importantes para que o procedimento seja feito em segurança.</p><p>Confie sua face a um cirurgião craniomaxilofacial!</p>', '2017-11-22 17:32:32'), (13, 3, 'Deformidades Craniofaciais', 'deformidades-craniofaciais', 'f0bda61d5db55abce6a6d78bad4c3b10.jpg', 'As anomalias congênitas afetam cerca de 5% dos nascidos vivos em todo mundo. Possui incidência mais discreta em países desenvolvidos porém, nos países em desenvolvimento da América Latina, esses índices variam em torno de 10-25% de internações hospitalares pediátricas, ocupando entre a terceira e quarta causa de morte no primeiro ano de vida. No Brasil, os defeitos congênitos ocuparam a segunda causa de mortes perinatais no ano 2000.', '<p>As anomalias congênitas afetam cerca de 5% dos nascidos vivos em todo mundo. Possui incidência mais discreta em países desenvolvidos porém, nos países em desenvolvimento da América Latina, esses índices variam em torno de 10-25% de internações hospitalares pediátricas, ocupando entre a terceira e quarta causa de morte no primeiro ano de vida. No Brasil, os defeitos congênitos ocuparam a segunda causa de mortes perinatais no ano 2000.<br></p>', '2017-11-22 17:32:52'), (14, 3, 'Cirurgia Ortognática (Deformidades dentofaciais)', 'cirurgia-ortognatica-deformidades-dentofaciais', '803c0a4d93bfe5991a9d63feb5a34070.jpg', 'A cirurgia ortognática é o tratamento para pacientes que possuem deformidades envolvendo os dentes e o esqueleto da face. Quando não é possível resolver o caso somente com o tratamento ortodôntico, uma vez que o problema está no excesso ou falta de crescimento do esqueleto facial e não somente na posição dos dentes, então é necessária a cirurgia ortognática.', '<p>A cirurgia ortognática é o tratamento para pacientes que possuem deformidades envolvendo os dentes e o esqueleto da face. Quando não é possível resolver o caso somente com o tratamento ortodôntico, uma vez que o problema está no excesso ou falta de crescimento do esqueleto facial e não somente na posição dos dentes, então é necessária a cirurgia ortognática.</p><p><b>Qual a origem das deformidades?</b></p><p>Essas deformidades podem ter origem devido a Síndromes e Anomalias Específicas (fatores teratogênicos, fatores embriológicos, microssomia hemifacial, Treacher Collins, fissuras faciais, craniossinostoses, Pierre Robin...), distúrbios de crescimento após o nascimento, trauma facial, problemas musculares e hormonais ou de origem genética quando existe algum familiar com as mesmas características.</p><p><b>Quais as alterações que podem implicar a necessidade da cirurgia ortognática?</b></p><ul><li>Dificuldade na mastigação;</li><li>Dificuldade na deglutição;</li><li>Desgaste excessivo dos dentes;</li><li>Mordida aberta;</li><li>Mordida profunda;</li><li>Mordida cruzada;</li><li>Aparência facial desarmônica;</li><li>Defeitos congênitos ou sequelas de trauma na face;</li><li>Queixo pequeno ou retraído;</li><li>Queixo grande ou protuído;</li><li>Queixo desviado para um dos lados;</li><li>Mandíbula muito para frente ou projetada;</li><li>Mandíbula muito para trás ou retruída;</li><li>Incapacidade  de fechar os lábios sem esforço muscular;</li><li>Respiração oral crônica;</li><li>Dor crônica na ATM e cefaléias;</li><li>Síndrome da apnéia obstrutiva do sono;</li></ul><p><b>Quais os benefícios deste tratamento ortodôntico e cirúrgico?</b></p><ul><li>Melhoria da relação entre os dentes, músculos e esqueleto;</li><li>Melhoria da respiração;</li><li>Melhoria do posicionamento da musculatura do pescoço;</li><li>Melhoria do posicionamento da língua;</li><li>Melhoria da fonação e da articulação das palavras;</li><li>Melhoria da oclusão e da articulação temporomandibular (ATM);</li><li>Melhoria da mastigação e da digestão;</li><li>Melhoria no relacionamento social;</li></ul><p><b>Quais são as fases do tratamento?</b></p><ul><li>Montagem do aparelho ortodôntico fixo – o tratamento ortodôntico pode levar de 18 a 24 meses antes da cirurgia para deixar os dentes em uma posição adequada;</li><li>Cirurgia Ortognática (ainda com o aparelho ortodôntico);</li><li>Retorno ao tratamento ortodôntico após a cirurgia para melhorar definitivamente a posição dos dentes;</li></ul><p></p><p>O tempo do tratamento depende do grau de dificuldade do tratamento ortodôntico.</p><p><b>Como é realizada a cirurgia?</b></p><p>Antes é feita a preparação do paciente com todos os exames necessários. O diagnóstico e o planejamento da cirurgia são realizados minuciosamente antes da cirurgia por meio de modelos de estudo montados em articulador, radiografias e traçados cefalométricos. O planejamento leva muito mais tempo do que a própria cirurgia.</p><p></p><p>A cirurgia é realizada sob anestesia geral. O paciente é internado na manhã da cirurgia em "jejum absoluto" (não pode comer nenhum tipo de alimento nem tomar água nas 08h antes da cirurgia) e dependendo da situação o paciente recebe alta no dia seguinte. A cirurgia é realizada através da cavidade oral, não deixando cicatriz na face. O esqueleto é fixado com mini-placas e parafusos de titânio não permitindo micromovimentação dos ossos. Na pós-cirurgia é normal surgir inchaço na face o qual diminui ao fim de alguns dias.</p><p><b>Quais são os cuidados Pós Cirúrgicos?</b></p><ul><li>A alimentação deve ser fria e mole.</li><li>A utilização de gelo diminui o inchaço e deve ser usado frequentemente nas primeiras 24 horas.</li><li>Cumprir rigorosamente a medicação prescrita.</li></ul><p><b></b><br></p>', '2017-11-22 17:33:16'), (15, 4, 'Amigdalectomia (retirada das amígdalas)', 'amigdalectomia-retirada-das-amigdalas', '1bdbf2e6184e11a5532e44ae274ff15d.jpg', 'As amígdalas são órgãos que ajudam a reforçar a imunidade do trato aero digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.', '<p style="text-align: justify; ">O que são as amígdalas?</p><p style="text-align: justify;">As amígdalas são órgãos que ajudam a reforçar a imunidade do trato aero digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.</p><p style="text-align: justify;">O que é a amigdalectomia?</p><p style="text-align: justify; ">É o nome dado à remoção cirúrgica das tonsilas palatinas (amígdalas).</p><p style="text-align: justify;">Qual sua finalidade?</p><p style="text-align: justify;">O principal objetivo desta cirurgia é restabelecer uma adequada respiração nasal, normalmente prejudicada em pacientes com hipertrofia de amígdalas e adenóides. As indicações cirúrgicas são absolutas quando ocorre hipertrofia com obstrução da via respiratória (roncos e obstrução nasal) ou da via digestiva (engasgos freqüentes e dificuldade de alimentação) e crises infecciosas muito intensas ou repetidas. As indicações cirúrgicas são relativas nas adenoamigdalites de repetição, abscesso periamigdaliano,&nbsp; halitose (mau hálito) e para o tratamento de sinusites ou otites de repetição.</p><p style="text-align: justify;">Como é realizada?</p><p style="text-align: justify;">A cirurgia deve ser realizada sob anestesia geral somente em hospitais com estrutura adequada. O paciente dorme e não sente nenhuma dor durante o procedimento. Na maioria dos casos recebe alta no mesmo dia da cirurgia, necessitando de poucos dias de recuperação em casa. </p><p style="text-align: justify;">Estamos preparados para explicar os riscos e benefícios dessa cirurgia, assim como a forma mais segura possível de realizá-la. Estamos à disposição para o esclarecimento de eventuais dúvidas.<br></p>', '2017-11-22 17:34:12'), (16, 4, 'Adenoidectomia (remoção da adenóide)', 'adenoidectomia-remocao-da-adenoide', '403fd14d1bcb48498f5794a9af5dd8d7.jpg', 'As adenóides são órgãos que reforçam a imunidade do trato aero ¬digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.', '<p style="text-align: justify; ">O que são as adenóides?</p><p style="text-align: justify; ">As adenóides são órgãos que reforçam a imunidade do trato aero ¬digestivo superior, podendo sua função estar comprometida principalmente por hipertrofia (aumento) ou infecções repetidas.</p><p style="text-align: justify;">O que é a adenoidectomia?</p><p style="text-align: justify;">É o nomes dado à remoção cirúrgica das tonsilas faríngeas (adenóides).</p><p style="text-align: justify;">Qual a sua finalidade?</p><p style="text-align: justify;">O principal objetivo desta cirurgia é restabelecer uma adequada respiração nasal, normalmente prejudicada em pacientes com hipertrofia da adenóide.</p><p style="text-align: justify;">As indicações cirúrgicas são absolutas quando ocorre hipertrofia com obstrução da via respiratória (roncos e obstrução nasal) e crises infecciosas muito intensas ou repetidas.</p><p style="text-align: justify;">As indicações cirúrgicas são relativas para o tratamento de sinusites ou otites de repetição.</p><p style="text-align: justify;">Como é realizada?</p><p style="text-align: justify;">A cirurgia é realizada sob anestesia geral somente em hospitais com estrutura adequada. O paciente dorme e não sente nenhuma dor durante o procedimento. Na maioria dos casos recebe alta no mesmo dia da cirurgia, necessitando de poucos dias de recuperação em casa.</p><p style="text-align: justify;">É comum a remoção das amígdalas hipertrofiadas junto com as adenóides. Estamos preparados para explicar os riscos e benefícios dessa cirurgia, assim como a forma mais segura possível de realizá-la. Estamos à disposição para o esclarecimento de eventuais dúvidas.<br></p>', '2017-11-22 17:34:37'), (17, 4, 'Cirurgia dos cornetos inferiores', 'cirurgia-dos-cornetos-inferiores', '6aa01e951297ec407a48c2c0ffaac821.jpg', 'Conchas ou cornetos nasais são projeções ósseas para o interior da cavidade nasal, recobertos por mucosa com função de aquecer e umidificar o ar inspirado. Existem no nariz cerca de três conchas de cada lado (superior, média e inferior).', '<p style="text-align: justify; ">O que são as conchas nasais?</p><p style="text-align: justify;">Conchas ou cornetos nasais são projeções ósseas para o interior da cavidade nasal, recobertos por mucosa com função de aquecer e umidificar o ar inspirado. Existem no nariz cerca de três conchas de cada lado (superior, média e inferior).</p><p style="text-align: justify;">Corneto e adenóide são a mesma coisa?</p><p style="text-align: justify;">Não, esta é uma confusão frequente! O corneto fica dentro do nariz e é uma das principais causas de obstrução nasal em adultos. A adenóide fica no fundo do nariz e é importante causa de obstrução nasal em crianças (no adulto a adenóide praticamente não existe).</p><p style="text-align: justify;">Para quem está indicada a Turbinectomia?</p><p style="text-align: justify;">A Turbinectomia está indicada quando o paciente apresenta obstrução nasal importante decorrente do aumento (hipertrofia) do corneto, que não responde ao tratamento medicamentoso. A principal causa para o aumento dos cornetos é a Rinite Alérgica.</p><p style="text-align: justify; ">Como é realizada a cirurgia?</p><p style="text-align: justify;">Geralmente, a obstrução nasal é causada por aumento do corneto inferior. A cirurgia consiste em basicamente remoção do excesso do corneto. A cirurgia dura cerca de 30 minutos. Normalmente não é necessário uso de tampões.</p><p style="text-align: justify;">Quais são os possíveis riscos e complicações?</p><p style="text-align: justify;">É considerada uma cirurgia de baixo risco. Raramente ocorrem sangramentos importantes em que há necessidade de uso de tampão nasal ou cauterização do vaso sangrante. A taxa de satisfação com essa cirurgia é altíssima.</p><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Normalmente, o paciente recebe alta no mesmo dia em que foi realizada a cirurgia. Deve ser mantido repouso relativo por cerca de 48 horas após a cirurgia. Neste período é normal a saída de pequena quantidade de sangue pelo nariz ou garganta. Atividade física deve ser iniciada somente após 30 dias.</p><p style="text-align: justify;">É importante a realização de limpeza nasal rigorosa especialmente no primeiro mês após o procedimento cirúrgico. Neste período será necessário retorno semanalmente ao consultório, para que sejam removidas crostas que por ventura venham a se formar.</p><p style="text-align: justify;">Nos pacientes portadores de Rinite Alérgica é essencial o acompanhamento e tratamento da doença mesmo com a cirurgia para que os sintomas não retornem.</p>', '2017-11-22 17:34:56'), (18, 4, 'Cirurgia dos seios da face (sinusectomia)', 'cirurgia-dos-seios-da-face-sinusectomia', '1d3f79539929ed47bba7194690256090.jpg', 'São cavidades localizadas na face recobertas por epitélio semelhante ao do nariz e que possuem óstios de drenagem para dentro da cavidade nasal.', '<p style="text-align: justify; ">O que são seios paranasais?</p><p style="text-align: justify;">São cavidades localizadas na face recobertas por epitélio semelhante ao do nariz e que possuem óstios de drenagem para dentro da cavidade nasal.</p><p style="text-align: justify;">Quando deve ser realizada a cirurgia dos seios paranasais?</p><p style="text-align: justify;">A cirurgia endoscópica dos seios da face é geralmente utilizada para tratamento, diagnóstico, biópsia de diversas doenças do nariz e seios da face, como sinusite crônica, micoses, cistos de seios paranasais, polipose nasal, tumores de nariz e seios da face, entre outros.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">A cirurgia é realizada na maioria das vezes com anestesia geral. É introduzido, na cavidade nasal uma fibra óptica, conectado a um sistema de vídeo que amplia a imagem do interior do nariz, dando ao cirurgião maior detalhamento da área a ser operada. O médico então poderá realizar tanto a remoção de lesões dentro do nariz, quanto dos seios da face, drenagem de secreções no interior dos seios. Na maioria das vezes também é necessário ampliar os óstios dos seios da face, para melhorar a drenagem e evitar assim novos episódios de sinusite.</p><p style="text-align: justify;">Quais são as possíveis complicações?</p><ul><li style="text-align: justify;"><b>Sinéquias </b>– Consiste em uma cicatrização inadequada do corneto, que leva a obstrução nasal, ocorre em cerca de 8% dos casos. Pode ser evitada com limpeza adequada no pós-operatório.</li><li style="text-align: justify;"><b>Fechamento do óstio</b> – Causando sinusite, sendo necessário reoperação.</li><li style="text-align: justify;"><b>Hemorragia </b>– Pode ocorrer sangramentos tanto no pós-operatório imediato quanto tardio, sendo raramente necessário colocação de tampão ou reintervenção cirúrgica para nova cauterização.</li><li style="text-align: justify;"><b>Fístula liquórica</b> – Cérebro é envolvido por três membranas e uma fina camada de líquido chamada líquor. Devido a proximidade dos seios da face com o cérebro existe uma rara chance de lesão do cérebro ou dos tecidos que envolvem o cérebro, podendo haver saída de líquor pela cavidade nasal.</li><li style="text-align: justify;"><b>Problemas visuais</b> – Em casos extremamente raros podem ocorrer danos ao olho causando redução da visão. Pode evoluir também com lacrimejamento excessivo, olho seco.</li></ul><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Normalmente o paciente recebe alta no mesmo dia em que foi realizada a cirurgia. Se houver a necessidade de se colocar tampão, o paciente deve retornar em cerca de 24 horas para remoção do mesmo.</p><p style="text-align: justify;">Deve ser mantido repouso relativo cerca de 48 horas após a cirurgia, neste período e normal a saída de pequena quantidade de sangue pelo nariz ou garganta. Atividade física deve ser iniciada somente após 30 dias.</p><p style="text-align: justify; ">É importante realização de limpeza nasal rigorosa cerca de seis semanas após o procedimento cirúrgico. Neste período será necessário retorno periódico ao consultório, para que sejam removidas crostas que por ventura venham a se formar.</p>', '2017-11-22 17:35:17'), (19, 4, 'Septoplastia (cirurgia do septo nasal)', 'septoplastia-cirurgia-do-septo-nasal', '00ec8d2f3402311b52a7a403c252ec8f.jpg', 'Septoplastia é a cirurgia realizada para corrigir o desvio de septo. Na maioria das vezes, realizamos a septoplastia sob anestesia geral. Em casos mais simples ou retoques de cirurgias já feitas, podemos optar pela anestesia local com sedação.', '<p style="text-align: justify; ">O DESVIO DE SEPTO<br></p><p style="text-align: justify;">Geralmente, existem duas razões para uma pessoa a ser submetida à cirurgia do nariz: <b>Funcional</b>, para correção do desvio de septo e outras alterações que impedem a boa respiração e <b>estético</b>, para corrigir características externas que incomodem o paciente. Os procedimentos necessários para correção destas alterações podem ser realizados juntos ou isoladamente.</p><p style="text-align: justify;">Aqui falaremos do <b>desvio de septo nasal e da septoplastia</b>. Trata-se da cirurgia empregada&nbsp; para aliviar as queixas de <b>nariz entupido, sinusites de repetição, dores de cabeça, dificuldades no olfato e no paladar.</b></p><p style="text-align: justify;">O<b> septo nasal</b> é uma “parede” constituída em parte por uma fina lâmina óssea e cartilagem. Essa estrutura, recoberta pela mucosa nasal, separa a cavidade dos dois lados. Em algumas pessoas, o septo pode acabar saindo da linha média, se posicionando muito “desviado” para um ou ambos os lados. O desvio do septo pode ser causado por traumas e falhas no crescimento, impedindo o bom fluxo de ar pelo nariz. Essa má ventilação piora a qualidade respiratória, com impacto importante no sono e no dia a dia.<br></p><p style="text-align: justify; ">SEPTOPLASTIA, RINOPLASTIA E RINOSSEPTOPLASTIA</p><p style="text-align: justify;">Septoplastia é a cirurgia realizada para corrigir o desvio de septo. Na maioria das vezes, realizamos a septoplastia sob anestesia geral. Em casos mais simples ou retoques de cirurgias já feitas, podemos optar pela anestesia local com sedação.</p><p style="text-align: justify;">O septo nasal, como todo o restante da cavidade nasal, é coberto pela mucosa nasal. O primeiro passo da cirurgia consiste em se levantar esta cobertura, para que se exponha todas as alterações ósseas e cartilaginosas do septo. Após a remoção e remodelagem das áreas desviadas,&nbsp; a mucosa nasal é reposicionada e suturada.</p><p style="text-align: justify;">Já a rinoplastia é a técnica cirúrgica aplicada para a correção das alterações estéticas, ou externas, do nariz. Num grande número de pacientes lançamos mão da rinosseptoplastia, união das duas técnicas, para proceder uma cirurgia que tenha tanto o objetivo de melhorar a respiração, quanto a estética.</p><p style="text-align: justify;">No passado era comum o uso de tampões nasais após o término da cirurgia. Tanto a permanência quando a remoção do tampão nasal eram rodeadas de muitas queixas. O uso rotineiro do tamponamento acabou para contribuir para a péssima fama da cirurgia nasal, o que faz com que até hoje muitos pacientes candidatos a esses procedimentos cheguem ao consultório receosos deste procedimento. Felizmente, esse medo hoje é injustificado</p><p style="text-align: justify;">Pessoalmente, não uso os tampões de forma rotineira, bem como a maioria dos cirurgiões nasais. A experiência de sair da cirurgia respirando pelo nariz e sem as dores causadas pelos tampões é radicalmente diferente do passado, sendo o pós-operatório atual praticamente indolor.</p><p style="text-align: justify;">O uso da fibra ótica na cirurgia nasal (cirurgia endoscópica), de maneira minimamente invasiva, permite uma visão detalhada de todas alterações anatômicas. Isso permite uma correção precisa do desvio de septo, sem trauma desnecessário. Além disso, a visão endoscópica permite observar e cauterizar todas as áreas sangrantes, evitando o uso dos tampões nasais.</p><p style="text-align: justify;">CUIDADOS PRÉ E PÓS-OPERATÓRIOS</p><p style="text-align: justify;">Existe uma rotina de cuidados aplicados antes e após a cirurgia, com o objetivo de melhorar a experiência do pacientes, minimizando riscos e maximizando resultados. Seguem alguns deles:</p><p style="text-align: justify;">PRÉ-OPERATÓRIO PARA CORREÇÃO DO DESVIO DE SEPTO</p><ul><li style="text-align: justify;">Realização dos exames pré-operatórias adequados para cada paciente, dependendo da idade e condições clínicas</li><li style="text-align: justify;">Todas as medicações usadas rotineiramente devem ser informadas ao médico. Anti-inflamatórios, aspirina e anti-coagulantes devem ser suspensos 7 a 10 dias antes da cirurgia.</li></ul><p style="text-align: justify;">O DIA DA CIRURGIA:</p><ul><li style="text-align: justify;">No dia, o paciente comparecerá ao hospital cerca de uma hora e meia antes da hora marcada para cirurgia, em jejum de 8 horas, inclusive de água.</li><li style="text-align: justify;">Todos os exames relacionados à cirurgia devem ser levados ao hospital.</li><li style="text-align: justify;">Já no hospital, tendo passado pelo procedimento de internação, o paciente será encaminhado ao seu quarto, onde trocará de roupa e aguardará o momento do deslocamento para o centro cirúrgico.</li><li style="text-align: justify;">Dependendo do grau de ansiedade de cada paciente pela cirurgia, pode ser necessário o uso de um calmante antes da ida para a sala de cirurgia.</li></ul><p style="text-align: justify;">PÓS-OPERATÓRIO IMEDIATO – Primeiras 4 horas:</p><ul><li style="text-align: justify;">Após ter acordado ainda na sala de cirurgia o paciente será levado à sala de recuperação dentro do próprio centro cirúrgico ou retornará diretamente para o quarto, dependendo de suas condições clínicas. Não é comum a ocorrência de dor após a septoplastia.</li><li style="text-align: justify;">Neste período alguns pacientes têm náuseas e mais raramente vômitos (que podem conter sangue), que costumam ser passageiros e não comprometem a cirurgia.</li><li style="text-align: justify;">Pequenos sangramentos nasais também podem ocorrer e por isso usamos um curativo tipo “bigode” preso abaixo do nariz, que poderá ser trocado várias vezes, se necessário.</li><li style="text-align: justify;">A melhor orientação para essas primeiras horas é deixar o paciente descansar, de preferência dormir, para que possa eliminar as medicações anestésicas ainda circulantes em sua corrente sanguínea.</li></ul><p style="text-align: justify;">Normalmente o paciente sai do centro cirúrgico com uma gaze presa com esparadrapo obstruindo parcialmente as narinas (“bigode”). Nos casos de plástica nasal também poderão ser posicionados curativos especiais sobre o nariz.</p><p style="text-align: justify;">PÓS-OPERATÓRIO TARDIO – Até 30 dias</p><ul><li style="text-align: justify;">A dieta nos primeiros 2-3 dias deverá ser líquida e pastosa, sempre fria ou na temperatura ambiente. Exemplos: água, leite, sucos, água-de-coco, sopas frias, iogurtes, sorvetes, gelatinas. Entre o terceiro e quarto dias deverá ser iniciada a dieta mais sólida podendo o paciente se alimentar (quase) normalmente.</li><li style="text-align: justify;">O desconforto da primeira semana ocorre pela obstrução nasal. A correta limpeza nasal e o uso de soluções salinas em spray ajudam a aliviar esta queixa. Nas três semanas seguintes, a obstrução ainda pode incomodar, porém em intensidade menor.</li><li style="text-align: justify;">Inchaço do rosto e dos olhos podem ocorrer entre o segundo e sétimo dias, apenas quando houver correção estética do nariz (rinoplastia) associada.</li><li style="text-align: justify;">Exercícios físicos de qualquer tipo estão proibidos nesta fase. Corrida, bicicleta ou musculação normalmente podem ser retomadas após um mês.</li><li style="text-align: justify;">Ainda nesta fase, entre a segunda e quinta semanas, é comum a eliminação de crostas pretas e duras de dentro do nariz, causadas pelo sangue coagulado e seco.</li></ul>', '2017-11-22 17:35:38'), (20, 4, 'Colocação de tubos de ventilação', 'colocacao-de-tubos-de-ventilacao', 'c48068f59e9ce0fdb7653c7503c4bbea.jpg', 'Muitas crianças passam por um ou mais episódios de dor de ouvido causados por otite média até os 5 anos de idade. Na grande maiorias das vezes, essas otites curam espontaneamente ou são tratadas com antibióticos orais. Mais raramente entretanto, esses episódios repetem-se muitas vezes, ou tornam-se crônicos. Esses casos podem gerar complicações, como perda auditiva, atraso no desenvolvimento da linguagem e alteração no comportamento e outras complicações mais sérias, com risco de vida ou de sequ', '<p style="text-align: justify;">OTITES NA INFÂNCIA</p><p style="text-align: justify;">Muitas crianças passam por um ou mais episódios de dor de ouvido causados por otite média até os 5 anos de idade. Na grande maiorias das vezes, essas otites curam espontaneamente ou são tratadas com antibióticos orais. Mais raramente entretanto, esses episódios repetem-se muitas vezes, ou tornam-se crônicos. Esses casos podem gerar complicações, como perda auditiva, atraso no desenvolvimento da linguagem e alteração no comportamento e outras complicações mais sérias, com risco de vida ou de sequelas graves (quadro abaixo). É quando o tubo de ventilação se torna uma arma importante na para o tratamento ou prevenção.</p><table class="table table-bordered"><tbody><tr><td style="text-align: center;">COMPLICAÇÕES DAS OTITES MÉDIAS<br></td></tr><tr><td style="text-align: center;">Atraso na fala</td></tr><tr><td style="text-align: center;">Meningite</td></tr><tr><td style="text-align: center;">Paralisia facial<br></td></tr><tr><td style="text-align: center; ">Abcesso cerebral\r\n</td></tr><tr><td style="text-align: center; ">Mastoidite\r\n</td></tr><tr><td style="text-align: center; ">Trombose do seio sigmoide</td></tr><tr><td style="text-align: center; ">Labirintite infecciosa</td></tr><tr><td style="text-align: center; ">Fístula labiríntica</td></tr><tr><td style="text-align: center; ">Petrosite</td></tr></tbody></table><p style="text-align: justify; ">O que é o tubo de ventilação?</p><p style="text-align: justify;">Tubo de ventilação é um pequeno cilindro no formato de carretel, que funciona como um dreno comunicando suas extremidades, uma voltada para fora e outra para dentro da membrana do tímpano. Eles são feitos de diferentes materiais e podem ser de curta ou longa permanência. Com isso, a parte interna do tímpano, chamada orelha média, fica permanentemente aerada através do tubo, evitando o acúmulo das secreções causadoras das otites. Os tubos de curta permanência são colocados para permanecer em média 6 a 12 meses nos ouvidos enquanto os de longa permanência são usados para permanecer por&nbsp; anos ou por prazo indeterminado.</p><p><br></p><p style="text-align: center; "><img src="http://www.movimentodown.org.br/wp-content/uploads/2013/02/problemasauditivos.jpg" alt="Resultado de imagem para o tubo de ventilação naniz" style="float: none;"></p><p style="text-align: left;"><br></p><p style="text-align: justify;">Quem precisa de tubos de ventilação?</p><ul><li style="text-align: justify;"><b>Otites de repetição</b>: Crianças com quadros de dor de ouvido recorrentes, com uso de antibiótico várias vezes ao ano podem se beneficiar da colocação do carretel para melhorar a ventilação do ouvido médio</li><li style="text-align: justify;"><b>Otite média serosa, otite médica secretora (acúmulo de secreção atrás do tímpano)</b>: Quadros que pode acontecer em todas as idades, embora sejam mais comuns na criança. Além de causar perda auditiva e poder prejudicar o desenvolvimento das crianças, pode causar também zumbido, tonteira e alteração do equilíbrio.</li><li style="text-align: justify;"><b>Aplicação de medicação tópica na orelha média</b>: o uso de medicação intratimpânica tem ganhado espaço no tratamento de algumas doenças do ouvido interno como surdez súbita e a síndrome de Ménière. Nesses casos o tubo de ventilação pode fornecer um canal adequado para aplicação de corticoides ou antibióticos.</li><li style="text-align: justify;"><b>Disfunção da tuba auditiva</b>: o bom funcionamento da tuba auditiva (que liga o ouvido médio ao fundo do nariz) é fundamental para a saúde do ouvido médio e também para os momentos em que somos submetidos a diferenças na pressão ambientes como em viagens aéreas, mergulhos, subidas e descidas de serras e montanhas. Pacientes que viajam de avião com muita frequência e não conseguem aliviar os sintomas de dor e pressão nos ouvidos com o tratamento clínico, podem se beneficiar dos tubos de ventilação.</li></ul><p style="text-align: justify;">Como é o procedimento para colocar o tubo de ventilação?</p><p style="text-align: justify;">Apesar de ser um procedimento cirúrgico, a colocação do tubo de ventilação pode ser feita no consultório nos adultos, utilizando o videoendoscópio ou o microscópio. Em crianças podemos precisar de uma sedação ou anestesia geral, em ambiente hospitalar. O procedimento dura poucos minutos. Após a anestesia (geral ou local) e com visualização videoendoscópica ou microscópica, fazemos uma incisão na membrana timpânica e aspiração da secreção no ouvido médio. Em seguida introduzimos o tubo de ventilação através desta incisão.</p><p style="text-align: justify;">Como é o pós-operatório?</p><p style="text-align: justify;">A recuperação do procedimento costuma ser muito boa. No caso das crianças submetidas a anestesia geral, são necessárias 2 ou 3 horas para a recuperação completa do torpor e desorientação causados pela medicação anestésica.</p><p style="text-align: justify;">O maior cuidado a partir deste momento é impedir a entrada de água nos ouvidos, já que eles se encontram “abertos” através dos tubos e sujeitos à infecções causadas pela entrada de bactérias contaminantes.</p><p style="text-align: justify;">Após a cicatrização que dura alguns dias pode ser necessária uma audiometria para avaliar a recuperação da audição.</p><p style="text-align: justify;">Quais as complicações possíveis?</p><p style="text-align: justify;">A colocação do tubo de ventilação é um procedimento muito comum e seguro, entretanto não está livre de algumas raras complicações como a permanência de uma perfuração timpânica após a saída do tubo, infecções repetidas e drenagem de secreção pelo tubo.<br></p>', '2017-11-22 17:36:02'), (21, 4, 'Cirurgia do Ronco e apnéia do sono', 'cirurgia-do-ronco-e-apneia-do-sono', '7945d60e90e42c74c8d4dd92cd2316fc.jpg', 'O som do ronco ocorre quando existe uma obstrução no fluxo livre de ar pela passagem na parte de trás da boca e do nariz. Esta região é a região que pode colapsar da via aérea (veja a ilustração) onde a língua e a parte superior da garganta se encontra com o palato mole e úvula. O ronco ocorre quando estas estruturas se chocam uma contra as outras e vibram durante a respiração.', '<p style="text-align: justify; ">Quarenta e cinco por cento da população de adultos normais roncam pelo menos, ocasionalmente e 25% por cento são roncadores habituais. O ronco patológico é mais freqüente em homens e pessoas com sobrepeso ou obesas, e geralmente piora com a idade.<br></p><p style="text-align: justify;">O que causa o ronco?</p><p style="text-align: justify;">O som do ronco ocorre quando existe uma obstrução no fluxo livre de ar pela passagem na parte de trás da boca e do nariz. Esta região é a região que pode colapsar da via aérea (veja a ilustração) onde a língua e a parte superior da garganta se encontra com o palato mole e úvula. O ronco ocorre quando estas estruturas se chocam uma contra as outras e vibram durante a respiração.</p><p style="text-align: justify;">As pessoas que roncam podem sofrer de:</p><p style="text-align: justify;"><b>Diminuição do tônus muscular na língua e na garganta</b>: quando os músculos estão muito relaxados, tanto pelo álcool ou por uso de medicações que causam sonolência, a língua cai para trás na via aérea e os músculos da garganta caem para os lados na via aérea. Isto ocorre durante o sono.</p><p style="text-align: justify;"><b>Volume excessivo dos tecidos da garganta</b>: Crianças com amígdalas ou adenóides volumosas freqüentemente roncam. Pessoas com sobrepeso ou obesas também possuem aumento do volume dos tecidos do pescoço . De maneira mais rara tumores ou cistos também podem causar aumento do volume dos tecidos da garganta.</p><p style="text-align: justify;"><b>Palato mole ou úvula alongada</b>: Um palato mole longo diminui a abertura do nariz para a garganta. Quando estes tecidos balançam (por estarem pendentes) funcionam como uma válvula durante a respiração relaxada. Uma úvula longa piora este aspecto ainda mais.</p><p style="text-align: justify;"><b>Obstrução Nasal</b>: Um nariz congestionado ou trancado requer um esforço extra para a passagem do ar. Isto cria um vácuo exagerado na garganta, e puxa os tecidos moles um de encontro ao outro, funcionam como uma válvula causando o ronco. Desta maneira o ronco ocorre apenas durante a a primavera (fatores alérgicos) ou nos períodos de gripe ou sinusites. Deformidades nasais ou do septo nasal, tais como desvios de septo podem da mesma maneira causar obstrução.</p><p style="text-align: justify;">O que é a Síndrome da Apnéia Obstrutiva do Sono (SAOS)?</p><p style="text-align: justify;">Quando um ronco forte é interrompido por episódios freqüentes de paradas da respiração, isto é conhecido como apnéia obstrutiva do sono. Episódios mais sérios duram cerca de 10 segundos cada e ocorrem mais de 7 vezes por hora.</p><p style="text-align: justify;">Pacientes com Síndrome da Apnéia Obstrutiva podem sofrem 30 a 300 eventos de apnéia por noite. Estes episódios podem reduzir os níveis sanguíneos de oxigênio, levando o coração a bater mais forte.</p><p style="text-align: justify;">O efeito imediato da apnéia do sono é que o roncador deve dormir superficialmente e manter os músculos contraídos de maneira que mantenha a via aérea livre até os pulmões.</p><p style="text-align: justify;">Porque o roncador não possui um bom sono, ele pode ficar sonolento durante o dia, o que pode comprometer o rendimento no trabalho e ser um perigo quando o roncador sonolento dirige ou opera um equipamento que exija atenção. Após muitos anos com esta desordem, pressão elevada e aumento de doenças cardiovasculares podem ocorrer.</p><p style="text-align: justify;">Um otorrinolaringologista irá proporcionar uma avaliação do nariz, boca, garganta, palato e pescoço. Um estudo do sono em um ambiente adequado é necessário para determinar qual a intensidade do ronco e a relação na saúde do roncador.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">Úvulopalatofaringoplastia (UPFP) é a cirurgia para o tratamento da apnéia obstrutiva do sono. Visa a retirar tecidos moles que vibram no palato e na garganta, e aumenta a passagem de ar. Ela é realizada através da boca sem realizar incisões na pele.</p><p style="text-align: justify;">Quais são as complicações possíveis?</p><ul><li style="text-align: justify;">Febre e dor – Febre e dores de garganta ou dor no ouvido ocorrem normalmente e não devem ser causa de inquietação, pois geralmente cedem entre 3 e 10 dias.</li><li style="text-align: justify;">Mau-hálito – É comum ocorrer, e cede entre 7 e 14 dias.</li><li style="text-align: justify;">Vômitos – Podem ocorrer algumas vezes, no dia da cirurgia, constituídos de sangue, mas sem significado de gravidade.</li><li style="text-align: justify;">Hemorragia – Representa o maior risco desta cirurgia, podendo ocorrer até 10 dias após a mesma, sendo mais freqüente em pequeno volume e, mais raramente, em maior volume, podendo levar até a necessidade de nova cirurgia com anestesia geral e transfusão sanguínea.</li><li style="text-align: justify;">Infecção – Pode ocorrer na região operada, causada por germes normais da faringe e, geralmente, regride sem antibióticos.</li><li style="text-align: justify;">Voz anasalada (fanhosa) e refluxo de líquidos – Podem ocorrer nos primeiros dias desaparecendo sozinhos.</li></ul><p style="text-align: justify;">Quais são os cuidados no pós-operatório?</p><p style="text-align: justify;">Após a operação, aparecem no local da cirurgia placas brancas (fibrina). Essas placas não são sinais de infecção, e sim a evolução normal da cicatrização da mucosa da faringe. Deve-se tomar cuidado com essas placas para que elas não se desprendam bruscamente para evitar sangramento. Por isso, é conveniente:</p><ul><li style="text-align: justify;">Repouso relativo após a cirurgia, evitando os exercícios bruscos.</li><li style="text-align: justify;">Evitar manobras na boca que podem levar a desprendimentos das placas\r\n(higiene dental posterior, bochechos vigorosos).</li><li style="text-align: justify;">Há medicamentos com a aspirina que interfere com a coagulação, procurar evitá-los antes e após a cirurgia.</li></ul><p style="text-align: justify;">Dieta (alimentação) após a cirurgia:</p><p style="text-align: justify;">1º dia: somente líquidos, ao natural ou gelado (leite, chá, sorvete, caldos, sucos de frutas não-ácidas).</p><p style="text-align: justify;">2º e 3º dias: líquidos e alimentos pastosos: frio ou natural (chá, café, mingaus ralos, caldos, leite, suco de frutas, gemadas, etc).</p><p style="text-align: justify;">4º, 5º e 6º dias: líquidos e alimentos pastosos: sopa de massa fina, mingaus, arroz mole com caldo de feijão, purê de batata, canja de galinha). Evite comer pão torrado ou outro alimento capaz de ferir a garganta. Retornar ao pouco a alimentação costumeira na medida do possível.<br></p>', '2017-11-22 17:36:23'), (22, 4, 'Biópsias nasais e bucais', 'biopsias-nasais-e-bucais', '023a289035209410b05b65f45ca4e57d.jpg', 'Biópsia (ou biopsia) é o procedimento cirúrgico no qual se colhe células ou um pequeno fragmento de tecido orgânico para serem submetidos a estudo em laboratório, visando determinar a natureza e o grau da lesão estudada. Também podem ser examinados líquidos, secreções e outros materiais orgânicos. Praticamente todos os órgãos e componentes corporais podem ser biopsiados: músculos, pele, ossos, líquidos, secreções, etc. O termo biópsia vem do grego, bios = vida e opsis = aparência, visão.', '<p style="text-align: justify; ">O que é biópsia?</p><p style="text-align: justify;">Biópsia (ou biopsia) é o procedimento cirúrgico no qual se colhe células ou um pequeno fragmento de tecido orgânico para serem submetidos a estudo em laboratório, visando determinar a natureza e o grau da lesão estudada. Também podem ser examinados líquidos, secreções e outros materiais orgânicos. Praticamente todos os órgãos e componentes corporais podem ser biopsiados: músculos, pele, ossos, líquidos, secreções, etc. O termo biópsia vem do grego, bios = vida e opsis = aparência, visão.</p><p style="text-align: justify;">Quais são as indicações para se fazer uma biópsia?</p><p style="text-align: justify;">Os exames de imagem fornecem uma visão da morfologia ou funcionalidade dos órgãos ou de partes do corpo e os exames bioquímicos oferecem algumas comprovações indiretas do funcionamento intrínseco deles, no entanto, a morfologia das células e tecidos depende de uma análise microscópica de amostras retiradas das pessoas. Assim, o mais comum é proceder-se à biópsia naquelas pessoas com suspeitas diagnósticas de doenças que podem provocar alterações morfológicas nas células e tecidos, como os tumores, por exemplo, ou para estabelecer um diagnóstico diferencial entre enfermidades assemelhadas. Esse exame diagnóstico é indicado tanto em enfermidades simples, como as verrugas, como nas mais graves, como o câncer.&nbsp;</p><p style="text-align: justify;">Embora o termo biópsia sempre desperte certa apreensão nas pessoas, a maioria delas revela situações simples e benignas. Em doenças infecciosas a biópsia pode ajudar a determinar o agente causal. Em doenças autoimunes uma biópsia ajuda a confirmar ou informar as alterações esperadas em órgãos ou tecidos. Uma biópsia também pode ajudar a avaliar a gravidade da lesão e a evolução do tratamento. Em lesões de malignidade suspeita ou confirmada, as biópsias ajudam a estabelecer o grau histológico de neoplasia e a determinar a natureza, taxa de crescimento e agressividade do tumor, ajudando a elaborar o plano do tratamento e a prever o prognóstico da doença.</p><p style="text-align: justify;">Quais são as complicações possíveis da biópsia?</p><p style="text-align: justify;">De uma maneira geral as biópsias são procedimentos simples, realizados em ambulatório, mas algumas podem demandar internações. As complicações dependem do tipo de intervenção, mas num sentido geral pode ocorrer agravamento de lesões por excesso de manipulação, hemorragias, infecções e/ou formação de fístulas.</p><p style="text-align: justify;">Como se realiza uma biópsia?</p><p style="text-align: justify;">Em geral as biópsias são realizadas sem necessidade de internação. Apenas em poucos casos a hospitalização pode se impor. Uma biópsia bem feita começa com uma adequada coleta do material. O profissional deve escolher a melhor área da lesão a ser biopsiada, a extensão correta de coleta e o material a ser colhido. O material colhido deverá ser conservado em solução de formol e posteriormente enviado a um laboratório de patologia, para avaliação e emissão de um laudo histopatológico.&nbsp;</p><p style="text-align: justify;">Os prazos necessários para que se possa produzir esses laudos variam de acordo com o tipo de lesão, do material a ser analisado e o procedimento técnico adotado. O prazo médio oscila entre sete e quatorze dias, podendo chegar a um mês em casos de exames mais sofisticados.</p><p style="text-align: justify;">Para que serve uma biópsia?</p><p style="text-align: justify;">Uma biópsia serve para esclarecer um diagnóstico se ainda restarem dúvidas depois da história clínica, exame físico, dados bioquímicos e de imagens. Em casos de tumores, além de definir o diagnóstico, podem estabelecer a malignidade ou não deles e o grau histológico em que se encontram.<br></p>', '2017-11-22 17:36:43'); INSERT INTO `cirurgias` (`id`, `categorias_cirurgias_id`, `titulo`, `nome_url`, `imagem`, `texto_breve`, `texto`, `data`) VALUES (23, 4, 'Frenectomia Labial e lingual', 'frenectomia-labial-e-lingual', '5bd0ad84c9426dc64467a2973c5d9102.jpg', 'Frenectomia é a designação atribuída a uma pequena cirurgia que consiste em cortar e remover o freio, que é uma “prega” fina de tecido fibroso (tipo membrana), presente na boca. Em alguns casos, torna-se suficiente seccionar ou cortar parcialmente esse freio, visando alterar apenas o nível da sua inserção nos tecidos moles, por forma a dividi-lo ou reduzir o seu tamanho, sendo que neste caso passamos a denominar esta pequena operação cirúrgica de frenotomia, em vez de frenectomia.', '<p style="text-align: justify;">O que é frenectomia?<br></p><p style="text-align: justify;">Frenectomia é a designação atribuída a uma pequena cirurgia que consiste em cortar e remover o freio, que é uma “prega” fina de tecido fibroso (tipo membrana), presente na boca.&nbsp;</p><p style="text-align: justify;">Em alguns casos, torna-se suficiente seccionar ou cortar parcialmente esse freio, visando alterar apenas o nível da sua inserção nos tecidos moles, por forma a dividi-lo ou reduzir o seu tamanho, sendo que neste caso passamos a denominar esta pequena operação cirúrgica de frenotomia, em vez de frenectomia.</p><div style="text-align: justify;">Existem basicamente 2 tipos de freios:</div><div style="text-align: justify;"><br></div><ol><li style="text-align: justify;"><b>Freios labiais</b> (superior e inferior), localizados na linha mediana, sendo visíveis quando levantamos o lábio superior ou baixamos o inferior, e que se estendem desde o interior do lábio até à gengiva vestibular (frontal), tanto no maxilar superior como no inferior;</li><li style="text-align: justify;"><b>Freio lingual</b>, localizado no ventre da língua (por baixo da língua), e que se insere desde a língua ao soalho da boca.</li></ol><p style="text-align: justify;">Consoante o tipo de freio, denominamos de frenectomia lingual, no caso de secção do freio lingual, e frenectomia labial no caso dos freios labiais. No caso desta subdividimos em frenectomia labial superior, que como o próprio nome indica, é realizada no freio do lábio superior, e frenectomia labial inferior, que como o próprio nome indica, aquela que é efetuada no freio do lábio inferior.</p><p style="text-align: justify;">Lateralmente aos freios labiais, podem ainda existir outras “pregas” fibrosas mais largas, chamadas de bridas, que são em quase tudo semelhantes aos freios. Diferem apenas na sua localização e dimensão em largura, que pode variar de alguns mm a 1 cm, por sua vez os freios geralmente não têm mais que 1 a 2 mm.</p><p style="text-align: justify;">Indicações:</p><p style="text-align: justify;">A cirurgia de Frenectomia é indicada nas seguintes situações, consoante o tipo de freio considerado, a saber:</p><p style="text-align: justify;">Frenectomia labial</p><p style="text-align: center; "><img src="http://staticr1.blastingcdn.com/media/photogallery/2017/1/28/660x290/b_586x276/freio-labial-com-baixa-insercao-na-denticao-mista-https-goo-gl-images-x6rbqu_1117623.jpg" alt="Resultado de imagem para Frenectomia labial"></p><ul><li style="text-align: justify;">Presença de diastema interincisivo (dentes separados devido a espaço entre os dois incisivos centrais), associado à presença entre os mesmos de fibras do freio com inserção baixa, ao nível da papila interdentária, impedindo assim o fecho natural desse espaço;</li><li style="text-align: justify;">Eventual limitação da mobilidade do lábio, resultante de uma inserção muito baixa do freio labial;</li><li style="text-align: justify;">Motivos estéticos, principalmente nas situações de sorriso alto, ou seja, quando a pessoa expõe, ao sorrir, uma maior porção de gengiva, o chamado sorriso gengival;</li><li style="text-align: justify;">Alterações da fonética (normalmente associadas à presença de um diastema de grande dimensão);</li><li style="text-align: justify;">Quando interfere com a correção ortodôntica (ortodontia);</li><li style="text-align: justify;">Quando interfere na estabilidade e retenção de próteses dentárias.</li></ul><p style="text-align: justify;">Frenectomia lingual</p><p style="text-align: center;"><img src="https://fortissima.com.br/wp-content/uploads/2013/07/lan-5-300x295.jpg" alt="Resultado de imagem para Frenectomia lingual"></p><ul><li style="text-align: justify;">Limitação dos movimentos da língua quando o freio é muito curto, inserindo-se muito perto da ponta da língua;</li><li style="text-align: justify;">Alterações da fala (fonética), pelo mesmo motivo;</li><li style="text-align: justify;">Transtornos ou dificuldade na mastigação, também pelo mesmo motivo;</li><li style="text-align: justify;">Lesões traumáticas, resultantes do “roçar” do freio nos incisivos inferiores, devido à grande proximidade entre as duas estruturas.</li></ul><p style="text-align: justify;">Os casos de freio lingual muito curto que fazem a língua ficar “presa” (anquiloglosia), são mais prevalentes nos recém-nascidos e lactantes, podendo causar-lhes transtornos na alimentação, incluindo na sucção, pelo que a frenectomia lingual em bebe é um procedimento muitas vezes necessário para corrigir estas limitações. Se o problema for corretamente diagnosticado, a cirurgia pode realizar-se independentemente da idade, desde que o bebé não apresente qualquer contraindicação específica para o fazer.</p><p style="text-align: justify;">Já quanto à idade ideal para se realizar a frenectomia labial, existem algumas considerações a ter em conta, pois existem situações que logo aos 2 anos de idade é possível identificar situações bem marcadas de um freio mais hipertrofiado (mais grosso) que o normal, de reservado prognóstico de regressão, pelo que nestes casos poder-se-á desde logo considerar a realização da cirurgia. Contudo, existem situações em que um freio anormal entre os 2 e os 4 anos, pode evoluir naturalmente para uma situação normal aos 8 ou 9 anos, consequência do natural alongamento da língua, pelo que muitas vezes se fica na expetativa, aguardando-se a possível e natural regressão do freio, a menos que hajam fortes evidências de que o impedimento do fecho de diastemas interincisivos seja causado por esse freio labial, e que isso esteja a implicar algum tipo de transtorno.</p><p style="text-align: justify;">Assim sendo, torna-se algo discutível indicar com exatidão a partir de que idade se deve efetuar a frenectomia labial, havendo contudo alguma concordância de que este procedimento pode ou deve, esperar pela erupção completa dos dentes caninos, o que ocorre por norma entre os 11 e os 13 anos de idade. Estes dentes vão exercer forças mesiais que poderão fazer com que o freio se afaste da região interincisiva, promovendo o fecho natural dos diastemas.</p><p style="text-align: justify;">Veja de seguida, passo a passo, como é realizada a cirurgia.</p><p style="text-align: justify;">Como é realizada a cirurgia?</p><p style="text-align: justify;">A cirurgia de Frenectomia é geralmente simples e possível de ser feita através de duas formas distintas, que passamos a descrever:</p><p style="text-align: justify;"><b>Cirurgia convencional</b> - é realizada com bisturi normal ou convencional, sendo feitas incisões para corte ou secção do freio, no sentido de o remover parcial ou totalmente. Após este procedimento, é efetuada a sutura dos tecidos moles, com pontos reabsorvíveis ou não reabsorvíveis, sendo que estes últimos terão que ser posteriormente removidos (entre 7 a 10 dias).</p><p style="text-align: justify;"><b>Cirurgia convencional</b> - é realizada com bisturi normal ou convencional, sendo feitas incisões para corte ou secção do freio, no sentido de o remover parcial ou totalmente. Após este procedimento, é efetuada a sutura dos tecidos moles, com pontos reabsorvíveis ou não reabsorvíveis, sendo que estes últimos terão que ser posteriormente removidos (entre 7 a 10 dias).</p><p style="text-align: justify;">A cirurgia de frenectomia, independentemente do método ou técnica cirúrgica utilizada, não implica dor, pois a operação é realizada sob anestesia local e o pós-operatório, por norma, também não implica qualquer sintomatologia relevante.</p><p style="text-align: justify;">Riscos e complicações:</p><p style="text-align: justify;">A frenectomia é uma cirurgia que apresenta riscos reduzidos, no entanto podem ocorrer algumas complicações pós-operatórias, como por exemplo, dor, pequenas hemorragias ou sangramento excessivo (principalmente na frenectomia lingual), edema, inflamação ou infeção (ainda que raramente), entre outras de menor relevo.</p><p style="text-align: justify;">Durante o ato cirúrgico, para além da possibilidade de sangramento excessivo, pode haver um risco de lesão de estruturas vizinhas, (principalmente nos casos de frenectomia lingual), se a técnica for executada de forma incorreta.&nbsp;</p><p style="text-align: justify;">De qualquer forma, estes riscos e complicações são por norma reversíveis, não deixando sequelas dignas de registo.</p><p style="text-align: justify;">Pós-operatório:</p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">De um modo geral, a recuperaçã</span><span lang="IT" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:it"="">o da cirurgia de frenotomia </span><span lang="FR" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:fr"="">é </span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">rápida, não necessitando o doente de\r\nefetuar repouso <span class="Nenhum"><b>p</b></span></span><span class="Nenhum"><b><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span></b></span><span class="Nenhum"><b><span lang="NL" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:nl"="">s operat</span></b></span><span class="Nenhum"><b><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span></b></span><span class="Nenhum"><b><span style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:pt-br"="">rio</span></b></span><span lang="PT" style="font-family:\r\n" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms""="">. Pode, portanto,\r\nretomar as suas atividades imediatamente ap</span><span lang="ES-TRAD" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:es-trad"="">ó</span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">s a cirurgia, desde que obedeça a\r\nalguns cuidados no p</span><span lang="ES-TRAD" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms";mso-ansi-language:es-trad"="">ó</span><span lang="NL" style="font-family:" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";="" mso-ansi-language:nl"="">s operat</span><span lang="ES-TRAD" style="font-family:\r\n" arial","sans-serif";mso-bidi-font-family:"arial="" unicode="" ms";mso-ansi-language:="" es-trad"="">ó</span><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""="">rio, por forma a reduzir o tempo de\r\nrecuperação, favorecendo assim a cicatrização, nomeadamente:</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-bidi-font-family:"arial="" unicode="" ms""=""></span></p><ul><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Evitar alimentos duros nos primeiros dias (preferir alimentos algo pastosos), principalmente nos casos de frenectomia lingual;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Evitar alimentos muito quentes nos primeiros dois dias pelo menos, sendo que após a cirurgia é também benéfica a aplicação local de frio (bolsa de gelo por ex.), nos casos de frenectomia labial;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Redobrar os cuidados de higiene oral, sendo que a zona da cirurgia deve ser escovada com pouca pressão e com escovas adequadas para o efeito (com cerdas muito suaves), complementado com bochechos de soluções antissépticas;</span></li><li style="text-align: justify; line-height: 19.5px;"><span lang="PT">Tomar devidamente a medicação prescrita pelo médico dentista (normalmente analgésicos e/ou anti-inflamatórios).</span></li></ul><p style="text-align: justify; line-height: 150%;"><span lang="PT" style=""><font face="Arial, sans-serif"><br></font><br></span><span class="Nenhum"><span lang="PT" style="font-family: Arial, sans-serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;"><o:p></o:p></span></span></p><p style="text-align: left;"><br></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span lang="PT" style="font-family:" arial","sans-serif";="" mso-fareast-font-family:arial"=""><o:p></o:p></span></p>', '2017-11-22 17:37:00'); -- -------------------------------------------------------- -- -- Estrutura da tabela `clinica` -- CREATE TABLE `clinica` ( `id` int(11) NOT NULL, `titulo_introducao` text NOT NULL, `texto_introducao` text NOT NULL, `titulo_segunda_parte` text NOT NULL, `texto_segunda_parte` text NOT NULL, `titulo_collapse` text NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `clinica` -- INSERT INTO `clinica` (`id`, `titulo_introducao`, `texto_introducao`, `titulo_segunda_parte`, `texto_segunda_parte`, `titulo_collapse`, `imagem`) VALUES (1, ' Cupiditate? Tempus quidem, vestibulum! Est? At minus quia augue au', 'taciti impedit veniam consequuntur tempora cras torquent dolor. Soluta odio tortor placerat, sequi luctus quis impedit iure sollicitudin, iure eu proident a sem at blandit, mattis veritatis officiis dolore eveniet quo, quo, culpa occaecat rem, lacinia hac, iure laoreet cubilia? Luctus sapien iusto doloribus, viverra aliquip. Sunt cupiditate aenean maecenas vestibulum dolor, lobortis eleifend voluptatem quidem', 'tus! Anim repellat imp', 'bh porttitor ullam ex, gravida metus! Anim repellat impedit magna? Dis class nisl urna laborum enim, augue quae! Inventore expedita, dolores dictumst possimus ut nonummy venenatis veniam, facilisis. Soluta mollit? Iste, placerat fuga, ante est ', 'asd', '5188895eae21c6727f902485f7bedafe.jpg'); -- -------------------------------------------------------- -- -- Estrutura da tabela `convenios` -- CREATE TABLE `convenios` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `convenios` -- INSERT INTO `convenios` (`id`, `titulo`, `imagem`, `data`) VALUES (1, 'Amagis saúde', '734eec165d8df5fefb74381fddb34b1f.jpg', '2017-11-17 17:40:51'), (2, 'Amil', 'd1ae4bd898c7264a474cf99b252f1101.jpg', '2017-11-17 17:41:00'), (3, 'Amma', '5969cb75ccbff8b1046a5dcd2750e81e.jpg', '2017-11-17 17:41:10'), (4, 'Assefaz', '9711d539b331c507b233a158d9e2ea47.jpg', '2017-11-17 17:41:23'), (5, 'Assist card', '7c2124c17aec55ada81910ff9a717dd4.jpg', '2017-11-17 17:41:34'), (6, 'Bradesco saúde', '2220b1283e030597db8b1155fda76cd5.jpg', '2017-11-17 17:41:43'), (7, 'Cabefe', 'fba6bc84d8b1bbe2818027b41350801e.jpg', '2017-11-17 17:41:55'), (8, 'Caixa', '56191b2ffa0df310f1ae349d3e6df49e.jpg', '2017-11-17 17:42:08'), (9, 'Camed', 'e72cfa32714837be304f47ed8edb451e.jpg', '2017-11-17 17:42:16'), (10, 'Capesesp', 'cc31cddde4c98adb6c48811c0e9f6527.jpg', '2017-11-17 17:42:33'), (11, 'Casec', 'd097ce3785bbd4fd45b50eae7e7a0dea.jpg', '2017-11-17 17:42:47'), (12, 'Casembrapa', 'e8522f4687f45fba2c4e6893262dd51c.jpg', '2017-11-17 17:43:00'), (13, 'Cassi', 'e89a5cdc0bf486f241af5b0e43bbb892.jpg', '2017-11-17 17:43:11'), (14, 'Casu', '448f0c135eac872673bba753aea22c32.jpg', '2017-11-17 17:43:21'), (15, 'Cemig', 'cdba76253f7688a29bd4793c6a4b4784.jpg', '2017-11-17 17:43:30'), (16, 'Cis', 'a05e3fa0c57bbada27a4867912caee20.jpg', '2017-11-17 17:43:39'), (17, 'Capass', '410ba776f6e27c3796a97c443978deb8.jpg', '2017-11-17 17:43:53'), (18, 'Funasa', '97d694c2def67b17aca9e43578a47e49.jpg', '2017-11-17 17:44:06'), (19, 'Fundaffemg', '9acabf585eec0e5847c2bc270e890c2b.jpg', '2017-11-17 17:47:54'), (20, 'Fusex', 'eb8e388e7dcd539cfa71e0a77c8720a9.jpg', '2017-11-17 17:48:23'), (21, 'Gama', 'a2299cb243f45b68b8759ad2c3ecbcd9.jpg', '2017-11-17 17:48:34'), (22, 'Geap', '36e367d8dca906e776c01ce80fec2848.jpg', '2017-11-17 17:48:44'), (23, 'INB', 'a3a70bff4a757d32caba5e44487751fe.jpg', '2017-11-17 17:48:56'), (24, 'Itau', '05df7901c49230e5984973db875fb2fd.jpg', '2017-11-17 17:49:47'), (25, 'Life', '30e0c1386d65ac01e848b5e94d54c2a1.jpg', '2017-11-17 17:50:56'), (26, 'Mapfre', '5a94efad7fedc8387198596459e71e7f.jpg', '2017-11-17 17:51:26'), (27, 'Mondial', 'a10588e3116a85a934165d07bce8b40c.jpg', '2017-11-17 17:52:13'), (28, 'Petrobras', 'e2d6db97fdfa36e27fc48dae9fc9a082.jpg', '2017-11-17 17:52:28'), (29, 'PMMG', '225351ca8ca9bee76a37e8ae12da071d.jpg', '2017-11-17 17:52:43'), (30, 'Postal Saúde', '4cab0b334161eb303910007110d744cc.jpg', '2017-11-17 17:52:54'), (31, 'Promed', 'a86220e1c32d06d06994aa679773c5be.jpg', '2017-11-17 17:53:29'), (32, 'Prevminas', '841c83479ebb8d998b67f98072df89d3.jpg', '2017-11-17 17:56:02'), (33, 'Proasa', 'cdc61ea73bdab8747f4f7938428bc1c7.jpg', '2017-11-17 17:56:26'), (34, 'Samp', '13c302d2e71cbc35a124b3206939436c.jpg', '2017-11-17 17:56:44'), (35, 'Santa casa familia', '6189255a96f085c8037faf1e5b4a2903.jpg', '2017-11-17 17:56:57'), (36, 'Saúde sistema', '149a76a9ecccc137ccc0f986cece11dd.jpg', '2017-11-17 17:57:14'), (37, 'Unafisco', 'aff089dd65ab95be38aad6b6d7e6f492.jpg', '2017-11-17 17:57:32'), (38, 'Unimed', '1b5366a9e1bf45f06c4b5632d1e64705.jpg', '2017-11-17 17:57:54'), (39, 'Vitallis', 'ae0466c832a9370171f56a206dc6d523.jpg', '2017-11-17 17:58:02'), (40, 'Vivamed', 'f6b6846616553c8b507c77b83aaa6995.jpg', '2017-11-17 17:58:11'); -- -------------------------------------------------------- -- -- Estrutura da tabela `corpo_clinico` -- CREATE TABLE `corpo_clinico` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `imagem` text NOT NULL, `texto` text NOT NULL, `profissao` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `corpo_clinico` -- INSERT INTO `corpo_clinico` (`id`, `titulo`, `imagem`, `texto`, `profissao`) VALUES (5, 'Dixie Armstrong', '9cf4621ad28a81473d4da2af577e0e72.jpg', '<p>m imperdiet, deleniti reprehenderit odio non, torquent, illo, rutrum, congue nostrum! Eligendi asperiores pariatur, dolorem!<br></p>', 'Cirurgião'), (6, 'João Bertolucci', 'e96d76ca860a4a28ed0df54c48ae20ac.png', '<p>Quia praesent aenean? Tempor dolorem molestias, rutrum in distinctio enim perferendis convallis, nostrud voluptas, nisi cubilia gravida malesuada distinctio ullamcorper gravida varius fuga massa taciti, similique nesciunt leo, culpa exercitationem, nibh commodi mattis mi consectetuer aliquam, esse nam consequat! Sint<br></p>', 'Cardiologista'), (7, 'Angela Tarantino', '80ca0cc192964145adbc709c302eceb4.png', '<p>nulla, aliquip accusamus! Veniam vehicula egestas. Sunt. Accusantium eius iaculis scelerisque atque laboriosam aliqua morbi, consequuntur pellentesque pulvinar fuga, nascetur convallis. Voluptatibus blandit aliquip vitae?<br></p>', 'Cirurgiã'), (8, 'Júlia Guerra', 'be50e88c91329c95ff89a30d3e67b965.png', '<p>Eiusmod, ultricies, duis ullamcorper dolor dictumst! Vulputate optio cupidatat aptent! Reiciendis rerum in risus? Placerat porro nostrud nostrud? Rem nostra felis eligendi! Ducimus saepe, dolorem laboriosam provident assumenda, nisl recusandae?<br></p>', 'Cardiologistas'), (9, 'João Cardoso', '562891bc26a766a87237fc42a42fedda.png', '<p>iaculis explicabo rutrum ipsum, tempor, accusantium natus eleifend diamlorem sodales pede architecto mus varius, nullam libero primis exercitationem porttitor, fringilla cum veniam?</p><div><br></div>', 'Atendente'), (10, 'Zeca Oliveira', 'd0f8460e2ba7e59090831fcda9b6e6b5.png', '<p>Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis, Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis, Voluptas! Amet cubilia blandit elementum maiores nisi tenetur enim venenatis<br></p>', 'Cirurgião'), (11, 'josé Rodrigues', '62df285de29181f14108fc528ec36a4f.png', '<p>e, ea netus massa culpa tempore ullamco tempus nisi provident consectetuer, animi doloribus? Quod nesciunt sapiente sociosqu vestibulum porttitor soluta veniam! Consequatur metus deserunt fringilla. Pariatur gravida assumenda fugiat consequat accusamus. Consectetuer sit maiores arcu, omnis rhoncus, exer<br></p>', 'Cirurgião'); -- -------------------------------------------------------- -- -- Estrutura da tabela `especialidades` -- CREATE TABLE `especialidades` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `texto` text NOT NULL, `detalhes` text NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `especialidades` -- INSERT INTO `especialidades` (`id`, `titulo`, `texto`, `detalhes`, `imagem`) VALUES (2, 'Cirurgia Cardíaca', ' Porttitor, in veniam, magnam facilisi? Minima voluptatum ', '<p></p><p>&lt;p&gt;Massa exercitationem laoreet nisi aspernatur sociosqu iusto turpis eum dui augue montes imperdiet repudiandae dis tristique nihil sociosqu. Error. Porttitor, in veniam, magnam facilisi? Minima voluptatum ligula duis scelerisque vestibulum, et natus, nostrud, eu, commodi officiis felis malesuada arcu cras! Minus feugiat, minus sociosqu, interdum ligula, curabitur wisi, excepturi parturient libero diam lacus magna, eius consequuntur, ea dictumst convallis laudantium. Magnam lacus, primis sem autem placerat consequatur mauris pellentesque! Ullamcorper consectetuer habitant, ullam eos commodo faucibus mauris dolores maiores quam maxime pharetra ratione libero, accumsan, consequuntur eveniet assumenda dolores penatibus. Vulputate repellat incidunt doloribus quia litora beatae, convallis nostrum magna.&lt;/p&gt;<br></p>', '91d95b6857fa490e611331ce22212adb.jpg'); -- -------------------------------------------------------- -- -- Estrutura da tabela `itens_clinica` -- CREATE TABLE `itens_clinica` ( `id` int(11) NOT NULL, `titulo` text NOT NULL, `descricao` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `itens_clinica` -- INSERT INTO `itens_clinica` (`id`, `titulo`, `descricao`) VALUES (10, 'asad', 'asdas'); -- -------------------------------------------------------- -- -- Estrutura da tabela `newsletter` -- CREATE TABLE `newsletter` ( `id` int(11) NOT NULL, `email` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `newsletter` -- INSERT INTO `newsletter` (`id`, `email`) VALUES (1, '[email protected]'), (2, '[email protected]'); -- -------------------------------------------------------- -- -- Estrutura da tabela `noticias` -- CREATE TABLE `noticias` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL, `texto_breve` varchar(500) DEFAULT NULL, `autor` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `noticias` -- INSERT INTO `noticias` (`id`, `titulo`, `nome_url`, `imagem`, `texto`, `data`, `texto_breve`, `autor`) VALUES (2, 'Como escolher o seu cirurgião da face, aspectos essenciais', 'como-escolher-o-seu-cirurgiao-da-face-aspectos-essenciais', 'ca98082264c8e326af52fe017430aca2.jpg', '<p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">A face humana é extremamente complexa devido às estruturas anatômicas nobres que a compõem. Além da identidade humana, externa os nossos sentimentos e serve de interface para interação com o mundo exterior. </span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Ao escolher seu cirurgião da face é necessário que você conheça sua formação, quais especializações possui, se participa de cursos de atualização e se tem experiência naquela cirurgia que vc deseja realizar.</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">A medicina encontra-se extremamente especializada, sendo que, existem profissionais que se dedicam à areas específicas do corpo humano. Isto permite um melhor entendimento das indicações, técnicas cirúrgicas e melhor controle dos resultados.</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Pensando nisto, fiz toda a minha formação voltada para a face e estudo da harmonia facial. Cirurgia é coisa muito séria!</span></p><p class="Corpo" style="text-align:justify;text-justify:inter-ideograph;\r\nline-height:150%"><span style="font-size: 14px;">Consulte seu cirurgião da face e confie sua face à um especialista!</span></p>', '2017-10-11 15:15:52', 'A face humana é extremamente complexa devido às estruturas anatômicas nobres que a compõem. Além da identidade humana, externa os nossos sentimentos e serve de interface para interação com o mundo exterior. ', 'Dr. Bruno'), (3, 'Enfrentando o medo antes da Rinoplastia', 'enfrentando-o-medo-antes-da-rinoplastia', '44901acb84d6f517a867e081747aa71f.jpg', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">A rinoplastia ou cirurgia plástica do nariz é um procedimento que pode ser realizado por diversas técnicas. Ela pode ser realizada com anestesia local e sedação ou anestesia geral. Além disso, a cirurgia pode ser feita com técnica aberta, semi-aberta ou fechada, cada uma com suas indicações, vantagens e desvantagens. </p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Normalmente este procedimento dura entre 2 e 4 horas, dependendo de cada caso. Os curativos são removidos em 7 dias e normalmente, os resultados definitivos são observados entre 6 meses a 01 ano. A rinoplastia geralmente não apresenta um pós-operatório doloroso, apenas o inconveniente de ficar um pouco obstruído nas primeiras semanas devido a formação de crostas nasais temporárias.</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">O planejamento é fundamental e, além da estética, lembre-se: VOCÊ TEM QUE RESPIRAR!!! Por isso operar seu nariz com um médico que conheça bem sobre o nariz é fundamental!</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Consulte seu cirurgião facial e discuta sobre o melhor plano de tratamento para você. Só assim você estará preparado e confiante para sua rinoplastia!</p>', '2017-10-11 16:24:00', 'A rinoplastia ou cirurgia plástica do nariz é um procedimento que pode ser realizado por diversas técnicas. Ela pode ser realizada com anestesia local e sedação ou anestesia geral. Além disso, a cirurgia pode ser feita com técnica aberta, semi-aberta ou fechada, cada uma com suas indicações, vantagens e desvantagens. ', 'Dr. Bruno'), (4, 'O que devo saber sobre Otoplastia', 'o-que-devo-saber-sobre-otoplastia', '9f75a81eac2355971de42c95b9ee0410.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A otoplastia é uma cirurgia estética para correção do tamanho e formato das orelhas. O problema a ser corrigido é a famosa “orelha de abano”, que muitas crianças têm e que pode causar problemas de convívio social, pois acaba se tornando motivo de bullying e de dificuldades no relacionamento durante a infância e adolescência. A otoplastia é a cirurgia estética mais realizada em crianças e adolescentes.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Estima-se que cerca de 5% das crianças nascem com o problema, que é uma alteração congênita.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A idade mínima recomendada para o procedimento é 6 anos, quando a orelha já atingiu o crescimento mais significativo. Mas é recomendado que a cirurgia não seja imposta para a criança e, sim, que seja um desejo dela, apoiado pelos pais. Por este motivo, muitas vezes ela não acontece durante a infância, mas depois, quando chega a adolescência e os problemas sociais se tornam mais aparentes e começam a incomodar mais.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O mais importante na decisão, além de ter que partir do próprio paciente, é que exista uma conversa franca entre o médico de confiança – otorrinolaringologista ou cirurgião plástico da face, paciente e família. Harmonizadas as expectativas e reais possibilidades de resultados, é hora de saber todos os detalhes sobre a cirurgia:</p><ul><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O adolescente deve ser informado sobre a técnica utilizada; local da cicatriz cirúrgica; tipo de anestesia; tempo para retirada dos pontos; tempo de internação e recuperação pós-cirúrgica.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Os riscos anestésicos são pequenos. A cirurgia pode ser feita com anestesia local. Mas, no caso dos adolescentes, é indicada a anestesia geral.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">A cirurgia deve ser realizada em hospitais ou clínicas especializadas, e é possível receber alta no mesmo dia.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após a cirurgia, o paciente permanece com um curativo “capacete” por um período de 24 horas, com o objetivo de proteger a região, diminuir os incômodos do pós-operatório e, ainda, prevenir a formação de hematomas e diminuir o inchaço.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após retirar o curativo, é recomendado que se utilize uma bandana ou faixa para dormir, com o objetivo de manter as orelhas na posição até a completa cicatrização durante 6 semanas.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Outra dica para a redução do inchaço é dormir com a cabeceira da cama elevada, pois a cabeça na posição mais alta permite maior drenagem venosa.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">É bom que se evite dormir de lado, sobre as orelhas, nos primeiros dias após a cirurgia.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Deve-se evitar, também, a exposição solar por dois meses após a cirurgia. O sol do dia a dia não tem implicações, mas é preciso evitar a exposição solar que pode bronzear.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">Para a sutura da pele, são utilizados fios absorvíveis e, por isso, não há necessidade de serem retirados. Há equipes que preferem utilizar fios que não são absorvíveis e, nesses casos, os pontos são retirados em 7 a 10 dias.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">As principais complicações que podem acontecer são: sangramento e hematoma, já que a orelha possui uma grande vascularização.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O retorno às atividades escolares dever ser em 5 a 7 dias.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">A prática de exercícios físicos deve ser evitada por 3 semanas. Para esportes em que o contato físico é maior, como esportes coletivos, lutas etc., o tempo de afastamento é de dois meses.</li><li style="margin-bottom: 15px; padding: 0px; text-align: justify;">O resultado da cirurgia quanto à posição da orelha é observado no pós-operatório imediato. No entanto, a redução completa do inchaço ocorre por volta do 3º a 4º mês após a cirurgia.</li></ul>', '2017-10-11 16:25:18', 'A otoplastia é uma cirurgia estética para correção do tamanho e formato das orelhas. O problema a ser corrigido é a famosa “orelha de abano”, que muitas crianças têm e que pode causar problemas de convívio social, pois acaba se tornando motivo de bullying e de dificuldades no relacionamento durante a infância e adolescência. A otoplastia é a cirurgia estética mais realizada em crianças e adolescentes.', 'Dr. Bruno'), (5, 'cirurgia das pálpebras', 'cirurgia-das-palpebras', '9147157e4dd56497b44129235158950d.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A cirurgia das pálpebras ou blefaroplastia se dedica à correção do excesso de pele ou gordura das pálpebras, geralmente após os 40 anos de idade. Ela visa devolver ao paciente uma região periocular menos cansada. Geralmente, o procedimento pode ser realizado sobre anestesia local e sedação e em casos específicos sob anestesia geral.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A cirurgia pode durar entre 2 a 3 horas normalmente, dependendo da região operada e a internação hospitalar dura de 6 a 12 horas.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Normalmente este procedimento não provoca uma dor pós-operatória importante e se, presente, pode ser controlada com analgésicos comuns. Os olhos geralmente ficam inchados por cerca de 7 dias até duas semanas. Durante esse período, compressas frias podem diminuir o edema e o uso de óculos escuros ajuda na proteção dos olhos.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O resultado definitivo vai aparecer após a terceira semana, geralmente no máximo em até 3 meses. Sempre confie seu rosto a um cirurgião da face!</p>', '2017-10-11 16:26:07', 'A cirurgia das pálpebras ou blefaroplastia se dedica à correção do excesso de pele ou gordura das pálpebras, geralmente após os 40 anos de idade. Ela visa devolver ao paciente uma região periocular menos cansada. Geralmente, o procedimento pode ser realizado sobre anestesia local e sedação e em casos específicos sob anestesia geral.', 'Dr. Bruno'), (6, 'Cuidados com a Rinoplastia em Nariz Negróide', 'cuidados-com-a-rinoplastia-em-nariz-negroide', '537fa0c5b952286ad92e2811468ae92a.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A pele negra apresenta características e cuidados especiais. O nariz negróide apresenta caraterísticas únicas como por exemplo a pele mais grossa, cartilagens alares mais largas e delicadas e um septo nasal mais curto. </p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Ao planejarmos uma rinoplastia nestes casos, todas essas informações devem ser levadas em consideração. Por exemplo, para uma ponta nasal mais definida, geralmente técnicas com enxerto nesta região devem ser usadas para melhorar a aparência desta região, pois a pele grossa esconde estes resultados. Estes narizes devem ser tratados com enxertos estruturadores para uma boa sustentação.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Planejar estes casos com parcimônia, conhecer as características raciais, individuais e os anseios do paciente podem proporcionar um nariz natural e com sua função preservada. </p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Confie sua face a um cirurgião facial!</p>', '2017-10-11 16:26:37', 'A pele negra apresenta características e cuidados especiais. O nariz negróide apresenta caraterísticas únicas como por exemplo a pele mais grossa, cartilagens alares mais largas e delicadas e um septo nasal mais curto. ', 'Dr. Bruno'), (7, 'Cuidados com a pele do rosto', 'cuidados-com-a-pele-do-rosto', '19e20905d264befb6a7d7cbb958a9e43.jpg', '<p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Para garantir uma pele jovem e bonita, é preciso tomar alguns cuidados no dia a dia. Mantenha uma alimentação rica em vitaminas e minerais, beba bastante água e evite o cigarro. Além disso, siga uma rotina de limpeza e hidratação.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Rotina de cuidados com a pele:</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Lave o rosto</b><br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Manter o rosto sempre livre de impurezas é fundamental para ter uma pele saudável.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Lavar o rosto duas vezes por dia é fundamental para manter a saúde da pele e evitar o entupimento dos poros, principal responsável pelo surgimento de cravos e espinhas. A primeira lavagem deve ser feita de manhã, eliminando a oleosidade natural produzida durante o sono, e a segunda no fim do dia, retirando poluição, impurezas e a maquiagem. Utilize sabonete neutro ou específico para o seu tipo de pele. Lavar o rosto mais do que duas vezes por dia não é recomendado, pois estimula a produção de oleosidade, assim como usar água muito quente.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Retire a maquiagem</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">A maquiagem obstrui os poros e impede a pele de respirar, atrapalhando essa etapa e promovendo o envelhecimento precoce da pele. Para deixar o rosto bem limpo, use um demaquilante adequado para o seu tipo de pele e finalize com um sabonete.<br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Hidrate</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Tanto a pele seca quanto a pele oleosa precisam de hidratação para equilibrar a proteção de sebo. Pessoas com pele oleosa devem preferir produtos oil-free ou em gel, enquanto quem tem a pele seca pode apostar em produtos mais hidratantes.<br></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"=""><b>Protenção</b></p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">O sol é um dos principais responsáveis pelo envelhecimento precoce da pele, além de causar doenças sérias, como o câncer de pele. Por isso, proteger-se dele diariamente é fundamental para manter a pele sempre jovem e bonita. Aplique pela manhã, depois do hidratante, e reaplique durante a tarde para garantir a eficácia do produto.</p><p style="margin-bottom: 15px; padding: 0px; text-align: justify; font-family: " open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="">Consulte seu dermatologista e sempre mantenha a saúde da sua pele em dia!</p>', '2017-10-11 16:27:04', 'Para garantir uma pele jovem e bonita, é preciso tomar alguns cuidados no dia a dia. Mantenha uma alimentação rica em vitaminas e minerais, beba bastante água e evite o cigarro. Além disso, siga uma rotina de limpeza e hidratação.', 'Dr. Bruno'); -- -------------------------------------------------------- -- -- Estrutura da tabela `procedimentos_esteticos` -- CREATE TABLE `procedimentos_esteticos` ( `id` int(11) NOT NULL, `titulo` varchar(255) DEFAULT NULL, `nome_url` varchar(255) DEFAULT NULL, `imagem` varchar(45) DEFAULT NULL, `texto` mediumtext, `data` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `procedimentos_esteticos` -- INSERT INTO `procedimentos_esteticos` (`id`, `titulo`, `nome_url`, `imagem`, `texto`, `data`) VALUES (1, 'Toxina Botulínica (Botox ou Dysport)', 'toxina-botulinica-botox-ou-dysport', 'f43b6c5533fea4114701f3360126e414.jpg', '<p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;">A toxina botulínica, é uma toxina produzida por uma bactéria chamada Clostridium Botulinium. A substância é usada para correção de rugas e marcas de expressão. A toxina age paralisando o músculo e consequentemente impedindo a contração muscular, que é o que forma a ruga. Para as rugas que já existem, esse relaxamento da musculatura suaviza os vincos. A aplicação é indicada para as rugas da testa, a glabela (espaço entre as sobrancelhas), os “pés de galinha” e rugas ao redor dos olhos e outros locais da face.</span></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><span style="font-size: 14px;"><b>Como age a toxina botulínica?</b></span><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">Quando injetada nas rugas, a toxina botulínica age bloqueando a transmissão de estímulos dos neurônios para os músculos, impedindo a contração muscular. Em geral as rugas aparecem devido ao envelhecimento facial, que ocorre por idade avançada, exposição solar sem proteção, má alimentação e tabagismo. Muitas pessoas também têm o hábito de franzir a testa ao se expressar, o que contribui para a formação das linhas de expressão.<br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Como atua?</b><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">A toxina botulínica pode atuar de duas maneiras:</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><b>De forma preventiva</b><font color="#1b1b1b" face="Raleway, sans-serif"><b>:</b> É a aplicação do produto antes mesmo do aparecimento de linhas de expressão. Como a contração muscular é paralisada, não haverá a formação de rugas por movimentação muscular na área que foi aplicado a toxina. Geralmente a aplicação preventiva é feita por volta dos 25 anos de idade, mas não existe uma idade certa.</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>De forma corretiva:</b> Esse tipo de aplicação geralmente é realizada em torno dos 30 anos. Como a toxina tira a tensão da musculatura, as rugas causadas por esses músculos são amenizadas.<br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Como é feita a aplicação?</b><br></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif">A injeção é aplicada no tecido subcutâneo por agulhas bem finas e em pequenas quantidades, e provocam uma pausa nos impulsos nervosos. Porém, o efeito não é imediato, e as primeiras alterações começam a aparecer somente depois de três a sete dias.</font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><font color="#1b1b1b" face="Raleway, sans-serif"><b>Quanto tempo dura o seu efeito?</b></font></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Os efeitos duram, em média, de 4 a 6 meses. O período entre as sessões varia de paciente para paciente, e para que o resultado seja efetivo, é preciso fazer sempre uma manutenção.</p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;"><b>Quais os cuidados após a aplicação?</b><br></p><p open="" sans",="" arial,="" sans-serif;="" font-size:="" 14px;"="" style="margin-bottom: 15px; padding: 0px; text-align: justify;">Após a aplicação, a pele pode ficar um pouco sensível e inchada. Para evitar complicações, deve-se evitar a exposição direta ao sol, e usar filtro solar. É recomendado evitar a prática de atividades físicas no mesmo dia das aplicações. É importante não massagear a área, pois o efeito da aplicação pode ser reduzido.<br></p>', '2017-10-19 22:59:34'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao1` -- CREATE TABLE `secao1` ( `id` int(11) NOT NULL, `texto` text NOT NULL, `imagem` text NOT NULL, `link` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao1` -- INSERT INTO `secao1` (`id`, `texto`, `imagem`, `link`) VALUES (1, '<h4 style="color: rgb(0, 0, 0);">molestiae imperdiet laudantium semper tristique diam! Illum ab? Eveniet. Facilisis, feugiat pede eu commodi tristique eiusmod placerat accusantium interdum soluta ac natoque. Phasellus accusantium dignissimos hac</h4>', '9cd81ac80be166c97d879264aafbb670.png', 'http://10.0.0.115/cecor/clinica'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao2` -- CREATE TABLE `secao2` ( `id` int(11) NOT NULL, `imagem` text NOT NULL, `texto` text NOT NULL, `titulo` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao2` -- INSERT INTO `secao2` (`id`, `imagem`, `texto`, `titulo`) VALUES (3, '74d4aa190497e3b07c362bfaeeb53029.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste1'), (4, '294463a2113b0f71a8d82a5cfe051008.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste2'), (5, '1c916641f3f1d8bdf193062ffdf91ece.jpg', '<h4 style="color: rgb(0, 0, 0);">Dr. Ricardo Kalliery</h4><h5 style="color: rgb(0, 0, 0);">Cardiologista</h5><p>Saturn and its innermost ring on encounters before it will .</p>', 'teste'); -- -------------------------------------------------------- -- -- Estrutura da tabela `secao3` -- CREATE TABLE `secao3` ( `id` int(11) NOT NULL, `titulo` varchar(200) NOT NULL, `imagem` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `secao3` -- INSERT INTO `secao3` (`id`, `titulo`, `imagem`) VALUES (2, 'Cemig', '563ff56fa0c7e954c062e1b3ec7481e4.png'), (3, 'Caixa', '075c11e9843243c7e5176fe5da4401ab.png'), (4, 'Copasa', '7950999cda95d1886dc5ad71edecdb87.png'), (5, 'Amil', 'c523e2c759936a36a0d8f89e1e8c1685.png'); -- -------------------------------------------------------- -- -- Estrutura da tabela `usuarios` -- CREATE TABLE `usuarios` ( `id` int(11) NOT NULL, `nome` varchar(255) NOT NULL, `cpf` varchar(15) NOT NULL, `senha` varchar(32) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `status` tinyint(1) DEFAULT '1' COMMENT '0 - bloqueado\n1 - ativo' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `usuarios` -- INSERT INTO `usuarios` (`id`, `nome`, `cpf`, `senha`, `email`, `status`) VALUES (1, 'Marcos Vinicius Soares Santos', '115.800.856-28', '202cb962ac59075b964b07152d234b70', '[email protected]', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `agendamentos` -- ALTER TABLE `agendamentos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `agendas` -- ALTER TABLE `agendas` ADD PRIMARY KEY (`id`); -- -- Indexes for table `agendas_horarios` -- ALTER TABLE `agendas_horarios` ADD PRIMARY KEY (`id`), ADD KEY `fk_horarios_agendas_idx` (`agendas_id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categorias_cirurgias` -- ALTER TABLE `categorias_cirurgias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cirurgias` -- ALTER TABLE `cirurgias` ADD PRIMARY KEY (`id`), ADD KEY `fk_cirurgias_categorias_cirurgias1_idx` (`categorias_cirurgias_id`); -- -- Indexes for table `clinica` -- ALTER TABLE `clinica` ADD PRIMARY KEY (`id`); -- -- Indexes for table `convenios` -- ALTER TABLE `convenios` ADD PRIMARY KEY (`id`); -- -- Indexes for table `corpo_clinico` -- ALTER TABLE `corpo_clinico` ADD PRIMARY KEY (`id`); -- -- Indexes for table `especialidades` -- ALTER TABLE `especialidades` ADD PRIMARY KEY (`id`); -- -- Indexes for table `itens_clinica` -- ALTER TABLE `itens_clinica` ADD PRIMARY KEY (`id`); -- -- Indexes for table `newsletter` -- ALTER TABLE `newsletter` ADD PRIMARY KEY (`id`); -- -- Indexes for table `noticias` -- ALTER TABLE `noticias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `procedimentos_esteticos` -- ALTER TABLE `procedimentos_esteticos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao1` -- ALTER TABLE `secao1` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao2` -- ALTER TABLE `secao2` ADD PRIMARY KEY (`id`); -- -- Indexes for table `secao3` -- ALTER TABLE `secao3` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `agendamentos` -- ALTER TABLE `agendamentos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `agendas` -- ALTER TABLE `agendas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `agendas_horarios` -- ALTER TABLE `agendas_horarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `categorias_cirurgias` -- ALTER TABLE `categorias_cirurgias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `cirurgias` -- ALTER TABLE `cirurgias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT for table `clinica` -- ALTER TABLE `clinica` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `convenios` -- ALTER TABLE `convenios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `corpo_clinico` -- ALTER TABLE `corpo_clinico` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `especialidades` -- ALTER TABLE `especialidades` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `itens_clinica` -- ALTER TABLE `itens_clinica` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `newsletter` -- ALTER TABLE `newsletter` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `noticias` -- ALTER TABLE `noticias` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `procedimentos_esteticos` -- ALTER TABLE `procedimentos_esteticos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `secao1` -- ALTER TABLE `secao1` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `secao2` -- ALTER TABLE `secao2` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `secao3` -- ALTER TABLE `secao3` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `agendas_horarios` -- ALTER TABLE `agendas_horarios` ADD CONSTRAINT `fk_horarios_agendas` FOREIGN KEY (`agendas_id`) REFERENCES `agendas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Limitadores para a tabela `cirurgias` -- ALTER TABLE `cirurgias` ADD CONSTRAINT `fk_cirurgias_categorias_cirurgias1` FOREIGN KEY (`categorias_cirurgias_id`) REFERENCES `categorias_cirurgias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
102.066075
31,633
0.732692
2cd56cb89fd0767da7a50c9e43b3f01b3ec777aa
2,362
cpp
C++
libs/interprocess/test/intermodule_singleton_test.cpp
Ron2014/boost_1_48_0
19673f69677ffcba7c7bd6e08ec07ee3962f161c
[ "BSL-1.0" ]
null
null
null
libs/interprocess/test/intermodule_singleton_test.cpp
Ron2014/boost_1_48_0
19673f69677ffcba7c7bd6e08ec07ee3962f161c
[ "BSL-1.0" ]
null
null
null
libs/interprocess/test/intermodule_singleton_test.cpp
Ron2014/boost_1_48_0
19673f69677ffcba7c7bd6e08ec07ee3962f161c
[ "BSL-1.0" ]
null
null
null
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2004-2009. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/interprocess for documentation. // ////////////////////////////////////////////////////////////////////////////// #include <boost/interprocess/detail/config_begin.hpp> #include <boost/interprocess/detail/intermodule_singleton.hpp> #include <iostream> using namespace boost::interprocess; class MyClass { public: MyClass() { std::cout << "Constructor\n"; } void shout() const { std::cout << "Shout\n"; } ~MyClass() { std::cout << "Destructor\n"; } }; class MyDerivedClass : public MyClass {}; class MyThrowingClass { public: MyThrowingClass() { throw int(0); } }; template < template<class, bool = false> class IntermoduleType > int intermodule_singleton_test() { bool exception_thrown = false; bool exception_2_thrown = false; try{ IntermoduleType<MyThrowingClass, true>::get(); } catch(int &){ exception_thrown = true; //Second try try{ IntermoduleType<MyThrowingClass, true>::get(); } catch(interprocess_exception &){ exception_2_thrown = true; } } if(!exception_thrown || !exception_2_thrown){ return 1; } MyClass & mc = IntermoduleType<MyClass>::get(); mc.shout(); IntermoduleType<MyClass>::get().shout(); IntermoduleType<MyDerivedClass>::get().shout(); //Second try exception_2_thrown = false; try{ IntermoduleType<MyThrowingClass, true>::get(); } catch(interprocess_exception &){ exception_2_thrown = true; } if(!exception_2_thrown){ return 1; } return 0; } int main () { if(0 != intermodule_singleton_test<ipcdetail::portable_intermodule_singleton>()){ return 1; } #ifdef BOOST_INTERPROCESS_WINDOWS if(0 != intermodule_singleton_test<ipcdetail::windows_intermodule_singleton>()){ return 1; } #endif return 0; } #include <boost/interprocess/detail/config_end.hpp>
21.472727
85
0.578323
0c0eba5e79ac5e81eaebc739a5280f04479ab349
6,153
asm
Assembly
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1581.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1581.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1581.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xee51, %rsi lea addresses_normal_ht+0x1971f, %rdi nop nop nop cmp $3826, %r13 mov $100, %rcx rep movsl nop cmp $41569, %r14 lea addresses_WC_ht+0xd6d1, %rax nop nop nop add %r11, %r11 mov $0x6162636465666768, %r13 movq %r13, %xmm4 movups %xmm4, (%rax) nop nop nop nop and $15808, %r13 lea addresses_UC_ht+0x17e51, %rcx nop nop nop nop nop xor $8164, %r14 mov $0x6162636465666768, %rdi movq %rdi, (%rcx) nop nop nop nop nop and %r13, %r13 lea addresses_normal_ht+0xd761, %rsi lea addresses_A_ht+0x1699, %rdi nop nop nop nop cmp $14786, %rdx mov $22, %rcx rep movsl nop nop nop nop nop xor %r11, %r11 lea addresses_WC_ht+0x9351, %rsi lea addresses_WT_ht+0x13231, %rdi nop nop nop nop dec %r13 mov $111, %rcx rep movsq nop nop cmp %rcx, %rcx pop %rsi pop %rdx pop %rdi pop %rcx pop %rax pop %r14 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r15 push %r8 push %rbx push %rdi push %rsi // Store lea addresses_A+0x5a71, %r10 nop sub $55300, %r8 mov $0x5152535455565758, %rsi movq %rsi, %xmm6 movups %xmm6, (%r10) nop nop nop nop nop xor $26260, %r12 // Load lea addresses_RW+0x1ab31, %rsi nop nop nop nop and $4435, %r15 movups (%rsi), %xmm3 vpextrq $1, %xmm3, %r10 nop nop nop nop nop cmp %r12, %r12 // Store lea addresses_D+0xc711, %r8 nop nop sub $51871, %r10 mov $0x5152535455565758, %rdi movq %rdi, %xmm6 movntdq %xmm6, (%r8) nop nop cmp %r12, %r12 // Faulty Load lea addresses_US+0x1ab51, %r10 xor $1275, %rbx movb (%r10), %r12b lea oracles, %rsi and $0xff, %r12 shlq $12, %r12 mov (%rsi,%r12,1), %r12 pop %rsi pop %rdi pop %rbx pop %r8 pop %r15 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 4, 'NT': False, 'type': 'addresses_US'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 4, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_A'}} {'src': {'congruent': 5, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_RW'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 5, 'AVXalign': False, 'same': False, 'size': 16, 'NT': True, 'type': 'addresses_D'}} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': False, 'type': 'addresses_US'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 7, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 1, 'same': False, 'type': 'addresses_normal_ht'}} {'OP': 'STOR', 'dst': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_WC_ht'}} {'OP': 'STOR', 'dst': {'congruent': 8, 'AVXalign': False, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_UC_ht'}} {'src': {'congruent': 4, 'same': True, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_A_ht'}} {'src': {'congruent': 8, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 5, 'same': True, 'type': 'addresses_WT_ht'}} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
35.566474
2,999
0.660978
2137e5654d202ac0223d2c24b71dac43543f1897
9,551
kt
Kotlin
app/src/test/java/com/stevesoltys/seedvault/transport/backup/ApkBackupTest.kt
CarbonROM/android_packages_apps_Seedvault
227dc1c46c0998901300f184b84a39d07cfb7628
[ "Apache-2.0" ]
478
2020-11-09T17:45:51.000Z
2022-03-29T20:19:48.000Z
app/src/test/java/com/stevesoltys/seedvault/transport/backup/ApkBackupTest.kt
CarbonROM/android_packages_apps_Seedvault
227dc1c46c0998901300f184b84a39d07cfb7628
[ "Apache-2.0" ]
189
2020-11-09T12:53:25.000Z
2022-03-30T14:41:56.000Z
app/src/test/java/com/stevesoltys/seedvault/transport/backup/ApkBackupTest.kt
CarbonROM/android_packages_apps_Seedvault
227dc1c46c0998901300f184b84a39d07cfb7628
[ "Apache-2.0" ]
39
2020-11-13T13:41:02.000Z
2022-02-19T20:43:35.000Z
package com.stevesoltys.seedvault.transport.backup import android.content.pm.ApplicationInfo.FLAG_SYSTEM import android.content.pm.ApplicationInfo.FLAG_TEST_ONLY import android.content.pm.ApplicationInfo.FLAG_UPDATED_SYSTEM_APP import android.content.pm.InstallSourceInfo import android.content.pm.PackageInfo import android.content.pm.PackageManager import android.content.pm.Signature import android.util.PackageUtils import com.stevesoltys.seedvault.MAGIC_PACKAGE_MANAGER import com.stevesoltys.seedvault.getRandomString import com.stevesoltys.seedvault.metadata.ApkSplit import com.stevesoltys.seedvault.metadata.PackageMetadata import com.stevesoltys.seedvault.metadata.PackageState.UNKNOWN_ERROR import io.mockk.coEvery import io.mockk.every import io.mockk.mockk import io.mockk.mockkStatic import kotlinx.coroutines.runBlocking import org.junit.jupiter.api.Assertions.assertArrayEquals import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Assertions.assertNull import org.junit.jupiter.api.Assertions.assertThrows import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Test import org.junit.jupiter.api.io.TempDir import java.io.ByteArrayOutputStream import java.io.File import java.io.IOException import java.io.OutputStream import java.nio.file.Path import kotlin.random.Random @Suppress("BlockingMethodInNonBlockingContext") internal class ApkBackupTest : BackupTest() { private val pm: PackageManager = mockk() private val streamGetter: suspend (name: String) -> OutputStream = mockk() private val apkBackup = ApkBackup(pm, crypto, settingsManager, metadataManager) private val signatureBytes = byteArrayOf(0x01, 0x02, 0x03) private val signatureHash = byteArrayOf(0x03, 0x02, 0x01) private val sigs = arrayOf(Signature(signatureBytes)) private val packageMetadata = PackageMetadata( time = Random.nextLong(), version = packageInfo.longVersionCode - 1, signatures = listOf("AwIB") ) init { mockkStatic(PackageUtils::class) } @Test fun `does not back up @pm@`() = runBlocking { val packageInfo = PackageInfo().apply { packageName = MAGIC_PACKAGE_MANAGER } assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `does not back up when setting disabled`() = runBlocking { every { settingsManager.backupApks() } returns false assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `does not back up test-only apps`() = runBlocking { packageInfo.applicationInfo.flags = FLAG_TEST_ONLY every { settingsManager.backupApks() } returns true assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `does not back up system apps`() = runBlocking { packageInfo.applicationInfo.flags = FLAG_SYSTEM every { settingsManager.backupApks() } returns true assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `does not back up the same version`() = runBlocking { packageInfo.applicationInfo.flags = FLAG_UPDATED_SYSTEM_APP val packageMetadata = packageMetadata.copy( version = packageInfo.longVersionCode ) expectChecks(packageMetadata) assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `does back up the same version when signatures changes`() { packageInfo.applicationInfo.sourceDir = "/tmp/doesNotExist" expectChecks() assertThrows(IOException::class.java) { runBlocking { assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } } } @Test fun `do not accept empty signature`() = runBlocking { every { settingsManager.backupApks() } returns true every { metadataManager.getPackageMetadata(packageInfo.packageName) } returns packageMetadata every { sigInfo.hasMultipleSigners() } returns false every { sigInfo.signingCertificateHistory } returns emptyArray() assertNull(apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter)) } @Test fun `test successful APK backup`(@TempDir tmpDir: Path) = runBlocking { val apkBytes = byteArrayOf(0x04, 0x05, 0x06) val tmpFile = File(tmpDir.toAbsolutePath().toString()) packageInfo.applicationInfo.sourceDir = File(tmpFile, "test.apk").apply { assertTrue(createNewFile()) writeBytes(apkBytes) }.absolutePath val apkOutputStream = ByteArrayOutputStream() val updatedMetadata = PackageMetadata( time = 0L, state = UNKNOWN_ERROR, version = packageInfo.longVersionCode, installer = getRandomString(), sha256 = "eHx5jjmlvBkQNVuubQzYejay4Q_QICqD47trAF2oNHI", signatures = packageMetadata.signatures ) expectChecks() every { metadataManager.salt } returns salt every { crypto.getNameForApk(salt, packageInfo.packageName) } returns name coEvery { streamGetter.invoke(name) } returns apkOutputStream every { pm.getInstallSourceInfo(packageInfo.packageName) } returns InstallSourceInfo(null, null, null, updatedMetadata.installer) assertEquals( updatedMetadata, apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter) ) assertArrayEquals(apkBytes, apkOutputStream.toByteArray()) } @Test fun `test successful APK backup with two splits`(@TempDir tmpDir: Path) = runBlocking { // create base APK val apkBytes = byteArrayOf(0x04, 0x05, 0x06) // not random because of hash val tmpFile = File(tmpDir.toAbsolutePath().toString()) packageInfo.applicationInfo.sourceDir = File(tmpFile, "test.apk").apply { assertTrue(createNewFile()) writeBytes(apkBytes) }.absolutePath // set split names val split1Name = "config.arm64_v8a" val split2Name = "config.xxxhdpi" packageInfo.splitNames = arrayOf(split1Name, split2Name) // create two split APKs val split1Bytes = byteArrayOf(0x07, 0x08, 0x09) val split1Sha256 = "ZqZ1cVH47lXbEncWx-Pc4L6AdLZOIO2lQuXB5GypxB4" val split2Bytes = byteArrayOf(0x01, 0x02, 0x03) val split2Sha256 = "A5BYxvLAy0ksUzsKTRTvd8wPeKvMztUofYShogEc-4E" packageInfo.applicationInfo.splitSourceDirs = arrayOf( File(tmpFile, "test-$split1Name.apk").apply { assertTrue(createNewFile()) writeBytes(split1Bytes) }.absolutePath, File(tmpFile, "test-$split2Name.apk").apply { assertTrue(createNewFile()) writeBytes(split2Bytes) }.absolutePath ) // create streams val apkOutputStream = ByteArrayOutputStream() val split1OutputStream = ByteArrayOutputStream() val split2OutputStream = ByteArrayOutputStream() // expected new metadata for package val updatedMetadata = PackageMetadata( time = 0L, state = UNKNOWN_ERROR, version = packageInfo.longVersionCode, installer = getRandomString(), splits = listOf( ApkSplit(split1Name, split1Sha256), ApkSplit(split2Name, split2Sha256) ), sha256 = "eHx5jjmlvBkQNVuubQzYejay4Q_QICqD47trAF2oNHI", signatures = packageMetadata.signatures ) val suffixName1 = getRandomString() val suffixName2 = getRandomString() expectChecks() every { metadataManager.salt } returns salt every { crypto.getNameForApk(salt, packageInfo.packageName) } returns name every { crypto.getNameForApk(salt, packageInfo.packageName, split1Name) } returns suffixName1 every { crypto.getNameForApk(salt, packageInfo.packageName, split2Name) } returns suffixName2 coEvery { streamGetter.invoke(name) } returns apkOutputStream coEvery { streamGetter.invoke(suffixName1) } returns split1OutputStream coEvery { streamGetter.invoke(suffixName2) } returns split2OutputStream every { pm.getInstallSourceInfo(packageInfo.packageName) } returns InstallSourceInfo(null, null, null, updatedMetadata.installer) assertEquals( updatedMetadata, apkBackup.backupApkIfNecessary(packageInfo, UNKNOWN_ERROR, streamGetter) ) assertArrayEquals(apkBytes, apkOutputStream.toByteArray()) assertArrayEquals(split1Bytes, split1OutputStream.toByteArray()) assertArrayEquals(split2Bytes, split2OutputStream.toByteArray()) } private fun expectChecks(packageMetadata: PackageMetadata = this.packageMetadata) { every { settingsManager.backupApks() } returns true every { metadataManager.getPackageMetadata(packageInfo.packageName) } returns packageMetadata every { PackageUtils.computeSha256DigestBytes(signatureBytes) } returns signatureHash every { sigInfo.hasMultipleSigners() } returns false every { sigInfo.signingCertificateHistory } returns sigs } }
39.466942
100
0.696472
221f4ee4a47f4ba7f288d091f03182b7bdc5d117
1,260
dart
Dart
lib/src/comment_references/model_comment_reference.dart
VladimirBrejcha/dartdoc
0447df53e797539a6934ad62a4e6a7a3378d9bae
[ "BSD-Source-Code" ]
null
null
null
lib/src/comment_references/model_comment_reference.dart
VladimirBrejcha/dartdoc
0447df53e797539a6934ad62a4e6a7a3378d9bae
[ "BSD-Source-Code" ]
null
null
null
lib/src/comment_references/model_comment_reference.dart
VladimirBrejcha/dartdoc
0447df53e797539a6934ad62a4e6a7a3378d9bae
[ "BSD-Source-Code" ]
null
null
null
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // import 'package:analyzer/dart/ast/ast.dart'; import 'package:analyzer/dart/element/element.dart'; import 'package:analyzer/file_system/file_system.dart'; import 'package:dartdoc/src/model_utils.dart'; /// A stripped down analyzer AST [CommentReference] containing only that /// information needed for Dartdoc. Drops link to the [CommentReference] /// and [ResourceProvider] after construction. class ModelCommentReference { final String codeRef; final Element staticElement; ModelCommentReference(CommentReference ref, ResourceProvider resourceProvider) : codeRef = _referenceText(ref, resourceProvider), staticElement = ref.identifier.staticElement; /// "Unparse" the code reference into the raw text associated with the /// [CommentReference]. static String _referenceText( CommentReference ref, ResourceProvider resourceProvider) { var contents = getFileContentsFor( (ref.root as CompilationUnit).declaredElement, resourceProvider); return contents.substring(ref.offset, ref.end); } }
42
80
0.765873
3f08383075cd4d0abfce74a0d9c6ff9dcaa5bcf6
11,091
php
PHP
resources/views/sports/football.blade.php
gentisheholli/sportsLaravel
054624b03d174d4f2d00903bbbca84ebc8ea3f22
[ "MIT" ]
null
null
null
resources/views/sports/football.blade.php
gentisheholli/sportsLaravel
054624b03d174d4f2d00903bbbca84ebc8ea3f22
[ "MIT" ]
null
null
null
resources/views/sports/football.blade.php
gentisheholli/sportsLaravel
054624b03d174d4f2d00903bbbca84ebc8ea3f22
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Football</title> @include('includes/style') </head> <body> @include('includes/header') <div class="container-fluid p-0 banner d-flex align-items-center justify-content-center" style="background-image:url('/images/sports/football/banner.jpg');background-position:bottom;"> <div class="container "> <p class="white">Home > Sports > Football</p> <h1 class="display-3 white">Football</h1> </div> </div> <div class="container"> <div class="row my-4"> <div class="col-12 col-md-6 p-4 text-justify"> <p>American football, referred to simply as football in the United States and Canada and also known as gridiron, is a team sport played by two teams of eleven players on a rectangular field with goalposts at each end. The offense, the team with possession of the oval-shaped football, attempts to advance down the field by running with the ball or passing it, while the defense, the team without possession of the ball, aims to stop the offense's advance and to take control of the ball for themselves.</p> </div> <div class="col-12 col-md-6 p-4 text-justify"> <p>The offense must advance at least ten yards in four downs or plays; if they fail, they turn over the football to the defense, but if they succeed, they are given a new set of four downs to continue the drive. Points are scored primarily by advancing the ball into the opposing team's end zone for a touchdown or kicking the ball through the opponent's goalposts for a field goal. The team with the most points at the end of a game wins.</p> </div> <div class="col-12 p-4 text-justify"> <p>American football evolved in the United States, originating from the sports of soccer and rugby. The first American football match was played on November 6, 1869, between two college teams, Rutgers and Princeton, using rules based on the rules of soccer at the time. A set of rule changes drawn up from 1880 onward by Walter Camp, the "Father of American Football", established the snap, the line of scrimmage, eleven-player teams, and the concept of downs. Later rule changes legalized the forward pass, created the neutral zone and specified the size and shape of the football. The sport is closely related to Canadian football, which evolved in parallel with and at the same time as the American game (although their rules were developed independently from those of Camp). Most of the features that distinguish American football from rugby and soccer are also present in Canadian football. The two sports are considered the primary variants of gridiron football.</p> </div> </div> </div> <div class="container-fluid p-0"> <div class="row"> <div id="carousel" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators"> <li data-target="#carousel" data-slide-to="0" class="active"></li> <li data-target="#carousel" data-slide-to="1"></li> </ol> <div class="carousel-inner"> <div class="carousel-item active"> <div class="d-none d-lg-block"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-1.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-2.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-3.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-4.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-5.jpg')}}" alt="First slide"> </div> </div> <div class="d-none d-md-block d-lg-none"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-1.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-2.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-3.jpg')}}" alt="First slide"> </div> </div> <div class="d-none d-sm-block d-md-none"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-1.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-2.jpg')}}" alt="First slide"> </div> </div> <div class="d-block d-sm-none"> <img class="d-block w-100" src="{{asset('images/sports/football/slide-1.jpg')}}" alt="First slide"> </div> </div> <div class="carousel-item"> <div class="d-none d-lg-block"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-4.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-3.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-2.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-1.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-5.jpg')}}" alt="First slide"> </div> </div> <div class="d-none d-md-block d-lg-none"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-4.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-3.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-2.jpg')}}" alt="First slide"> </div> </div> <div class="d-none d-sm-block d-md-none"> <div class="slide-box"> <img src="{{asset('images/sports/football/slide-4.jpg')}}" alt="First slide"> <img src="{{asset('images/sports/football/slide-3.jpg')}}" alt="First slide"> </div> </div> <div class="d-block d-sm-none"> <img class="d-block w-100" src="{{asset('images/sports/football/slide-4.jpg')}}" alt="First slide"> </div> </div> <a class="carousel-control-prev" href="#carousel" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#carousel" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div> </div> </div> <div class="container p-4"> <h1 class="display-4">Popular Championships</h1> <div class="row p-4 shadow p-3 mb-5 bg-white rounded align-items-center justify-content-center mt-4"> <div class="col-3"> <img src="{{asset('images/sports/football/super-bowl.png')}}" alt="" width="100%"> </div> <div class="col-9"> <h2>Super Bowl</h2> <p>The Super Bowl is the annual championship game of the National Football League (NFL). Since 2004, the game has been played on the first Sunday in February. It is the culmination of a regular season that begins in the late summer of the previous year.</p> </div> </div> <div class="row p-4 shadow p-3 mb-5 bg-white rounded align-items-center justify-content-center mt-4"> <div class="col-3"> <img src="{{asset('images/sports/football/afc.png')}}" alt="" width="100%"> </div> <div class="col-9"> <h2>AFC Championship Game</h2> <p>The AFC Championship Game is the annual championship game of the American Football Conference (AFC) and one of the two semi-final playoff games of the National Football League (NFL), the largest professional American football league in the United States. The game is played on the penultimate Sunday in January by the two remaining playoff teams, following the AFC postseason's first two rounds. The AFC champion then advances to face the winner of the NFC Championship Game in the Super Bowl.</p> </div> </div> <div class="row p-4 shadow p-3 mb-5 bg-white rounded align-items-center justify-content-center mt-4"> <div class="col-3"> <img src="{{asset('images/sports/football/nfc.png')}}" alt="" width="100%"> </div> <div class="col-9"> <h2>NFC Championship Game</h2> <p>The NFC Championship Game is the annual championship game of the National Football Conference (NFC) and one of the two semi-final playoff games of the National Football League (NFL), the largest professional American football league in the United States. The game is played on the penultimate Sunday in January by the two remaining playoff teams, following the NFC postseason's first two rounds. The NFC champion then advances to face the winner of the AFC Championship Game in the Super Bowl.</p> </div> </div> </div> @include('includes/footer') </body> </html>
62.308989
120
0.524479
3eb93d2ef6a9eb0dae876483d955aaf6f0f82454
2,173
ps1
PowerShell
Set-AzureCertificate.ps1
Agazoth/AxCredentialVault
5d010e2356394fa5dec847ebf12dd7fafb2bc275
[ "MIT" ]
3
2017-08-22T06:31:32.000Z
2018-10-16T13:44:05.000Z
Set-AzureCertificate.ps1
Agazoth/AxCredentialVault
5d010e2356394fa5dec847ebf12dd7fafb2bc275
[ "MIT" ]
null
null
null
Set-AzureCertificate.ps1
Agazoth/AxCredentialVault
5d010e2356394fa5dec847ebf12dd7fafb2bc275
[ "MIT" ]
null
null
null
function Set-AzureCertificate { <# .Synopsis Add a certificate to Azure Vault .DESCRIPTION Add a certificate set to Azure Vault. Run Connect-AzureCredentialVault prior to running this command. .EXAMPLE Set-AzureCertificate -Path C:\mycert.pfx -Name MyCert cmdlet Set-AzureCertificate at command pipeline position 1 Supply values for the following parameters: (Type !? for Help.) Password:************** .EXAMPLE $Password = Read-Host -AsSecureString Set-AzureCertificate -Path C:\mycert.pfx -Name MyCert -Password $Password #> [CmdletBinding()] [Alias()] Param ( # Path to PFX or PEM file [Parameter(Mandatory=$true, Position=0)] $Path, [Parameter(Mandatory=$true, Position=1,HelpMessage="Supply a name for the certificate")] $Name, # Password needs to be a secure string [Parameter(Mandatory=$true, Position=2,HelpMessage="Supply the password as a System.Security.SecureString")] [alias("SecurePassword")] [Security.SecureString]$Password, [Parameter(Mandatory=$true, Position=3,HelpMessage="Supply the resource group name to use")] $ResourceGroupName, [Parameter(Mandatory=$true, Position=4,HelpMessage="Supply the storage account name to use")] $StorageAccountName, [Parameter(Mandatory=$true, Position=5,HelpMessage="Supply the vault name")] $VaultName, $TableName, $PartitionKey, [Switch]$Force ) Begin { if (!$Global:VaultSA) { Connect-AzureCredentialVault -ResourceGroupName $ResourceGroupName -StorageAccountName $StorageAccountName -VaultName $VaultName } } Process { try{ Import-AzureKeyVaultCertificate -VaultName $VaultName -Name $Name -FilePath $Path -Password $Password -ErrorAction stop | Out-Null Write-Verbose "$Name has been aded to $VaultName" } catch { Write-Warning -Message $_.Exception.Message continue } } End { } }
31.492754
142
0.621261
b97f4e58c711600fbee50e79e7c005621bb8609f
754
asm
Assembly
oeis/130/A130545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/130/A130545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/130/A130545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A130545: Numerators of 2*Sum_{k=1..n} 1/binomial(2*k,k), n >= 1. ; Submitted by Jon Maiga ; 1,4,43,307,463,10201,24121,88453,1503743,28571327,680271,54761843,156462429,111170677,245020174253,7595625419003,2531875141141,17723125990639,655755661678837,655755661685297,867289746102097,1156097231554841431,1734145847332548163,81504854824633195859,285266991886219249969,63392664863604451357,6719622475542076530667,35933810029636779271,1119937079257013004527,132152575352327536051611,1465692199362178131394247,145103527736855635115550853,11161809825911971934064961,9721936358369327555034572911 mov $1,3 lpb $0 add $0,1 mov $2,$0 mul $2,2 add $3,$1 mul $3,$0 sub $0,2 mul $1,2 sub $2,1 mul $1,$2 lpe add $1,$3 gcd $3,$1 div $1,$3 mov $0,$1
35.904762
497
0.79443
79f8ec6205f90f97ada7f622313c4a7ae5f7581a
6,494
asm
Assembly
maps/ViridianCity.asm
zavytar/pokecolorless
5fa4930f9f90acaff7ae62367e3d9feae0404464
[ "blessing" ]
null
null
null
maps/ViridianCity.asm
zavytar/pokecolorless
5fa4930f9f90acaff7ae62367e3d9feae0404464
[ "blessing" ]
null
null
null
maps/ViridianCity.asm
zavytar/pokecolorless
5fa4930f9f90acaff7ae62367e3d9feae0404464
[ "blessing" ]
null
null
null
object_const_def ; object_event constants const VIRIDIANCITY_GRAMPS1_GRUMPY const VIRIDIANCITY_GRAMPS1_OKAY const VIRIDIANCITY_GRAMPS2 const VIRIDIANCITY_FISHER const VIRIDIANCITY_YOUNGSTER const VIRIDIANCITY_COOLTRAINERF ViridianCity_MapScripts: db 3 ; scene scripts scene_script .DummyScene0 ; SCENE_VIRIDIANCITY_GRAMPS_BLOCK scene_script .DummyScene1 ; SCENE_VIRIDIANCITY_GYM_LOCKED scene_script .DummyScene2 ; SCENE_VIRIDIANCITY_NOTHING db 1 ; callbacks callback MAPCALLBACK_NEWMAP, .FlyPoint .FlyPoint: setflag ENGINE_FLYPOINT_VIRIDIAN return .DummyScene0: .DummyScene1: .DummyScene2: end ViridianCityCoffeeGramps: faceplayer opentext writetext ViridianCity_CoffeeGrampsText1 waitbutton closetext end ViridianCity_GrampsBlockScript: opentext writetext ViridianCity_CoffeeGrampsText1 waitbutton closetext applymovement PLAYER, ViridianCity_PlayerMovement1 end ViridianCity_GrampsOkayScript: opentext writetext ViridianCity_GrampsOkayText1 waitbutton closetext end ViridianCity_CooltrainerFScript: checkevent EVENT_VIRIDIAN_GRAMPS_OKAY iffalse .GrampsOkay opentext writetext ViridianCity_CooltrainerFText1 waitbutton faceplayer writetext ViridianCity_CooltrainerFText2 waitbutton closetext turnobject VIRIDIANCITY_COOLTRAINERF, RIGHT end .GrampsOkay: faceplayer opentext writetext ViridianCity_CooltrainerFText3 waitbutton closetext end ViridianCityGrampsNearGym: faceplayer opentext checkevent EVENT_BLUE_IN_CINNABAR iftrue .LeaderReturned writetext ViridianCity_GrampsNearGymText1 waitbutton closetext end .LeaderReturned: writetext ViridianCity_GrampsNearGymText2 waitbutton closetext end ViridianCityDreamEaterFisher: faceplayer opentext checkevent EVENT_GOT_TM42_DREAM_EATER iftrue .GotDreamEater writetext ViridianCityDreamEaterFisherText buttonsound verbosegiveitem TM_DREAM_EATER iffalse .NoRoomForDreamEater setevent EVENT_GOT_TM42_DREAM_EATER .GotDreamEater: writetext ViridianCityDreamEaterFisherGotDreamEaterText waitbutton .NoRoomForDreamEater: closetext end ViridianCity_GymLockedScript: turnobject PLAYER, UP opentext writetext ViridianCity_GymLockedText waitbutton closetext applymovement PLAYER, ViridianCity_PlayerMovement2 end ViridianCityYoungsterScript: jumptextfaceplayer ViridianCityYoungsterText ViridianCitySign: jumptext ViridianCitySignText ViridianGymSign: jumptext ViridianGymSignText ViridianCityWelcomeSign: jumptext ViridianCityWelcomeSignText TrainerHouseSign: jumptext TrainerHouseSignText ViridianCityPokecenterSign: jumpstd pokecentersign ViridianCityMartSign: jumpstd martsign ViridianCity_CoffeeGrampsText1: text "Y-You can't go" line "through here!" para "This is private" line "property!" done ViridianCity_GrampsOkayText1: text "Ahh, I've had my" line "coffee now and I" cont "feel great!" para "Sure, you can go" line "through!" para "I'm sorry I was" line "so rude to you!" done ViridianCity_CooltrainerFText1: text "Grampa! Don't" line "be so mean!" done ViridianCity_CooltrainerFText2: text "I'm sorry. He" line "hasn't had his" cont "coffee yet." done ViridianCity_CooltrainerFText3: text "When I go shop in" line "PEWTER CITY, I" cont "have to take the" cont "winding trail in" cont "VIRIDIAN FOREST." done ViridianCity_GrampsNearGymText1: text "This #MON GYM" line "is always closed." para "I wonder who the" line "LEADER is?" done ViridianCity_GrampsNearGymText2: text "The VIRIDIAN GYM" line "LEADER has returned!" done ViridianCityDreamEaterFisherText: text "Yawn!" para "I must have dozed" line "off in the sun." para "…I had this dream" line "about a DROWZEE" para "eating my dream." line "Weird, huh?" para "Huh?" line "What's this?" para "Where did this TM" line "come from?" para "This is spooky!" line "Here, you can have" cont "this TM." done ViridianCityDreamEaterFisherGotDreamEaterText: text "TM42 contains" line "DREAM EATER…" para "…Zzzzz…" done ViridianCityYoungsterText: text "CATERPIE has no" line "poison, but" cont "WEEDLE does." para "Watch out for its" line "POISON STING!" done ViridianCitySignText: text "VIRIDIAN CITY" para "The Eternally" line "Green Paradise" done ViridianGymSignText: text "VIRIDIAN CITY" line "#MON GYM" cont "LEADER: …" para "The rest of the" line "text is illegible…" done ViridianCityWelcomeSignText: text "WELCOME TO" line "VIRIDIAN CITY," para "THE GATEWAY TO" line "INDIGO PLATEAU" done TrainerHouseSignText: text "#MON SCHOOL" done ViridianCity_GymLockedText: text "The GYM doors" line "are locked…" done ViridianCity_PlayerMovement1: step DOWN step_end ViridianCity_PlayerMovement2: jump_step DOWN step_end ViridianCity_MapEvents: db 0, 0 ; filler db 5 ; warp events warp_event 32, 7, VIRIDIAN_GYM, 1 warp_event 21, 9, VIRIDIAN_NICKNAME_SPEECH_HOUSE, 1 warp_event 21, 13, TRAINER_HOUSE_1F, 1 warp_event 29, 19, VIRIDIAN_MART, 2 warp_event 23, 25, VIRIDIAN_POKECENTER_1F, 1 db 2 ; coord events coord_event 19, 13, SCENE_VIRIDIANCITY_GRAMPS_BLOCK, ViridianCity_GrampsBlockScript ; Gramps won't let you through coord_event 32, 8, SCENE_VIRIDIANCITY_GYM_LOCKED, ViridianCity_GymLockedScript db 6 ; bg events bg_event 17, 17, BGEVENT_READ, ViridianCitySign bg_event 27, 7, BGEVENT_READ, ViridianGymSign bg_event 19, 1, BGEVENT_READ, ViridianCityWelcomeSign bg_event 25, 13, BGEVENT_READ, TrainerHouseSign bg_event 24, 25, BGEVENT_READ, ViridianCityPokecenterSign bg_event 30, 19, BGEVENT_READ, ViridianCityMartSign db 6 ; object events object_event 18, 6, SPRITE_GRAMPS, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ObjectEvent, EVENT_VIRIDIAN_GRAMPS_OKAY object_event 18, 13, SPRITE_GRAMPS, SPRITEMOVEDATA_STANDING_RIGHT, 2, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ViridianCityCoffeeGramps, EVENT_VIRIDIAN_GRAMPS_GRUMPY object_event 30, 8, SPRITE_GRAMPS, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ViridianCityGrampsNearGym, -1 object_event 6, 23, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, ViridianCityDreamEaterFisher, -1 object_event 14, 21, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WANDER, 3, 3, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, ViridianCityYoungsterScript, -1 object_event 17, 13, SPRITE_COOLTRAINER_F, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ViridianCity_CooltrainerFScript, -1
21.939189
161
0.803819
2543268682ca821a6ad8343a04a8e9aedbfde950
1,281
dart
Dart
test/simple_app.dart
alextekartik/tekartik_jqm.dart
795a6509cdaed324546bfc7f67210e05b29dda1a
[ "BSD-2-Clause" ]
null
null
null
test/simple_app.dart
alextekartik/tekartik_jqm.dart
795a6509cdaed324546bfc7f67210e05b29dda1a
[ "BSD-2-Clause" ]
null
null
null
test/simple_app.dart
alextekartik/tekartik_jqm.dart
795a6509cdaed324546bfc7f67210e05b29dda1a
[ "BSD-2-Clause" ]
null
null
null
import 'package:polymer/polymer.dart'; import 'dart:js'; import 'dart:html'; import 'package:tekartik_jqm/jquerymobile.dart'; import 'package:tekartik_jqm/jqm_app.dart' show JqmApp; import 'package:tekartik_jqm/jqm_page.dart'; import 'package:tekartik_utils/js_utils.dart'; import 'package:tekartik_utils/dev_utils.dart'; import 'package:tekartik_utils/polymer_utils.dart'; import 'package:tekartik_jquery/jquery.dart' as jq; /** * A Polymer click counter element. */ @CustomTag('simple-app') class SimpleApp extends JqmApp { SimpleApp.created() : super.created() { devPrint('SimpleApp created'); } void attached() { super.attached(); // // switch ot it //// JPageChangeOptions options = new JPageChangeOptions(transition: 'none', changeHash: true); //// print(options); //// jQueryMobilePageContainer.changeTo(jPageElement, options); //// //print($['simple'].innerHtml); //// print('changed'); // // var jPageElement = new JPageElement(jq.queryElement($['simple'])); // JPageChangeOptions options = new JPageChangeOptions(transition: 'none', changeHash: true); //// print(options); // jQueryMobilePageContainer.changeToPageId('simple'); // changeTo(jPageElement, options); // // print($['simple']); } }
31.243902
98
0.697892
25cb13292693d1c1128f870e115bfa4a720961f6
1,797
cs
C#
src/Castle.IO/FileSystems/InMemory/InMemoryFileSystemNotifierEntry.cs
dstockhammer/Castle.Transactions
e62cb161889614eb09452f8c31b287510b91d796
[ "Apache-2.0" ]
7
2019-03-12T17:13:29.000Z
2020-10-04T19:37:52.000Z
src/Castle.IO/FileSystems/InMemory/InMemoryFileSystemNotifierEntry.cs
dstockhammer/Castle.Transactions
e62cb161889614eb09452f8c31b287510b91d796
[ "Apache-2.0" ]
2
2019-07-18T10:56:19.000Z
2020-12-18T14:10:30.000Z
src/Castle.IO/FileSystems/InMemory/InMemoryFileSystemNotifierEntry.cs
dstockhammer/Castle.Transactions
e62cb161889614eb09452f8c31b287510b91d796
[ "Apache-2.0" ]
5
2018-10-04T00:16:59.000Z
2020-12-11T11:40:46.000Z
#region license // Copyright 2004-2012 Castle Project, Henrik Feldt &contributors - https://github.com/castleproject // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #endregion using System; using System.Collections.Generic; using System.Linq; using Castle.IO.Internal; namespace Castle.IO.FileSystems.InMemory { public class InMemoryFileSystemNotifierEntry : IFileSytemNotifierEntry { public FileSystemNotificationIdentifier Identifier { get; private set; } private readonly List<Action<IFile>> _handlers = new List<Action<IFile>>(); public InMemoryFileSystemNotifierEntry(FileSystemNotificationIdentifier notificationIdentifier) { Identifier = notificationIdentifier; } public IDisposable AddNotifiers(params Action<IFile>[] entries) { lock (_handlers) { _handlers.AddRange(entries.Where(x => x != null)); } return new ExecuteOnDispose(() => { lock (_handlers) { foreach (var value in entries) _handlers.Remove(value); } }); } public void ExecuteHandlers(IFile file) { IEnumerable<Action<IFile>> handlers; lock (_handlers) { handlers = _handlers.Copy(); } foreach (var handler in handlers) handler(file); } } }
28.52381
101
0.698386
c9650bce91bb073d933d45b5d6065a8db08362ad
845
tsx
TypeScript
packages/page-democracy-chainx/src/Execute/index.tsx
gregorst3/chainx-dapp-wallet-v2
66b2c6c50ff8ea5531b12750e6bd431cd652d5cc
[ "Apache-2.0" ]
null
null
null
packages/page-democracy-chainx/src/Execute/index.tsx
gregorst3/chainx-dapp-wallet-v2
66b2c6c50ff8ea5531b12750e6bd431cd652d5cc
[ "Apache-2.0" ]
6
2021-02-20T22:07:40.000Z
2021-05-24T04:15:11.000Z
packages/page-democracy-chainx/src/Execute/index.tsx
gregorst3/chainx-dapp-wallet-v2
66b2c6c50ff8ea5531b12750e6bd431cd652d5cc
[ "Apache-2.0" ]
3
2021-02-19T12:09:42.000Z
2021-02-26T07:52:40.000Z
// Copyright 2017-2020 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { useApi } from '@polkadot/react-hooks'; import styled from 'styled-components'; import DispatchQueue from './DispatchQueue'; import Scheduler from './Scheduler'; const Wrapper = styled.div` .dispatchscroll, .schedulerscroll { overflow: auto; &::-webkit-scrollbar { display: none; } } `; interface Props { className?: string; } function Execute ({ className }: Props): React.ReactElement<Props> { const { api } = useApi(); return ( <Wrapper className={className}> <DispatchQueue className="dispatchscroll" /> {api.query.scheduler && ( <Scheduler className="schedulerscroll" /> )} </Wrapper> ); } export default React.memo(Execute);
22.837838
69
0.674556
02def599ef3636bcab91ff4e814f97352ecb2ef9
8,590
cql
SQL
schema/cassandra/cadence/versioned/v0.1/base.cql
kraney/cadence
b78809c691b08c33bc2e11e6222b0e8fde75d7ee
[ "MIT" ]
5,925
2017-06-07T07:52:30.000Z
2022-03-31T03:55:02.000Z
schema/cassandra/cadence/versioned/v0.1/base.cql
kraney/cadence
b78809c691b08c33bc2e11e6222b0e8fde75d7ee
[ "MIT" ]
3,236
2017-06-07T00:10:26.000Z
2022-03-31T20:30:48.000Z
schema/cassandra/cadence/versioned/v0.1/base.cql
kraney/cadence
b78809c691b08c33bc2e11e6222b0e8fde75d7ee
[ "MIT" ]
662
2017-06-07T00:04:00.000Z
2022-03-31T07:29:08.000Z
CREATE TYPE shard ( shard_id int, owner text, -- Host identifier processing the shard -- Range identifier used for generating ack ids for tasks within shard. -- Also used for optimistic concurrency and all writes to a shard are conditional on this value. range_id bigint, -- This field keeps track of number of times owner for a shard changes before updating range_id or ack_levels stolen_since_renew int, updated_at timestamp, transfer_ack_level bigint, timer_ack_level timestamp, ); --- Workflow execution and mutable state --- CREATE TYPE workflow_execution ( domain_id uuid, workflow_id text, run_id uuid, parent_domain_id uuid, -- Domain ID of parent workflow which started the workflow execution parent_workflow_id text, -- ID of parent workflow which started the workflow execution parent_run_id uuid, -- RunID of parent workflow which started the workflow execution initiated_id bigint, -- Initiated event ID of parent workflow which started this execution completion_event blob, -- Completion event used to communicate result to parent workflow execution task_list text, workflow_type_name text, decision_task_timeout int, execution_context blob, state int, -- enum WorkflowState {Created, Running, Completed} close_status int, -- enum WorkflowCloseStatus {None, Completed, Failed, Canceled, Terminated, ContinuedAsNew, TimedOut} next_event_id bigint, last_processed_event bigint, start_time timestamp, last_updated_time timestamp, create_request_id uuid, decision_schedule_id bigint, decision_started_id bigint, decision_request_id text, -- Identifier used by matching engine for retrying history service calls for recording task is started decision_timeout int, cancel_requested boolean, cancel_request_id text, ); -- TODO: Remove fields that are left over from activity and workflow tasks. CREATE TYPE transfer_task ( domain_id uuid, -- The domain ID that this transfer task belongs to workflow_id text, -- The workflow ID that this transfer task belongs to run_id uuid, -- The run ID that this transfer task belongs to task_id bigint, target_domain_id uuid, -- The external domain ID that this transfer task is doing work for. target_workflow_id text, -- The external workflow ID that this transfer task is doing work for. target_run_id uuid, -- The external run ID that this transfer task is doing work for. task_list text, type int, -- enum TaskType {ActivityTask, DecisionTask, DeleteExecution, CancelExecution, StartChildExecution} schedule_id bigint, ); CREATE TYPE timer_task ( domain_id uuid, workflow_id text, run_id uuid, visibility_ts timestamp, task_id bigint, type int, -- enum TaskType {DecisionTaskTimeout, ActivityTaskTimeout, UserTimer} timeout_type int, -- enum TimeoutType in IDL {START_TO_CLOSE, SCHEDULE_TO_START, SCHEDULE_TO_CLOSE, HEARTBEAT} event_id bigint, -- Corresponds to event ID in history that is responsible for this timer. ); -- Workflow activity in progress mutable state CREATE TYPE activity_info ( schedule_id bigint, scheduled_event blob, scheduled_time timestamp, started_id bigint, started_event blob, started_time timestamp, activity_id text, -- Client generated unique ID for the activity. request_id text, -- Identifier used by matching engine for retrying history service calls for recording task is started details blob, schedule_to_start_timeout int, schedule_to_close_timeout int, start_to_close_timeout int, heart_beat_timeout int, cancel_requested boolean, -- If a cancel request is made to cancel the activity in progress. cancel_request_id bigint, -- Event ID that identifies the cancel request. last_hb_updated_time timestamp, -- Last time the heartbeat is received. timer_task_status int, -- Indicates wheter timers are created for this activity. ); -- User timer details CREATE TYPE timer_info ( timer_id text, -- User defined timer ID started_id bigint, -- The event ID corresponding to timer started. expiry_time timestamp, -- Timestamp at which this timer expires or fires task_id bigint, -- The task ID if we have one created for this timer ); -- Child execution in progress mutable state CREATE TYPE child_execution_info ( initiated_id bigint, initiated_event blob, started_id bigint, started_event blob, create_request_id uuid, ); -- External workflow cancellation in progress mutable state CREATE TYPE request_cancel_info ( initiated_id bigint, cancel_request_id text, ); -- Activity or workflow task in a task list CREATE TYPE task ( domain_id uuid, workflow_id text, run_id uuid, schedule_id bigint, ); CREATE TYPE task_list ( domain_id uuid, name text, type int, -- enum TaskRowType {ActivityTask, DecisionTask} ack_level bigint, -- task_id of the last acknowledged message ); CREATE TYPE domain ( id uuid, name text, status int, -- enum DomainStatus {Registered, Deprecated, Deleted} description text, owner_email text, ); CREATE TYPE domain_config ( retention int, emit_metric boolean ); CREATE TABLE executions ( shard_id int, type int, -- enum RowType { Shard, Execution, TransferTask, TimerTask} domain_id uuid, workflow_id text, run_id uuid, current_run_id uuid, visibility_ts timestamp, -- unique identifier for timer tasks for an execution task_id bigint, -- unique identifier for transfer and timer tasks for an execution shard frozen<shard>, execution frozen<workflow_execution>, transfer frozen<transfer_task>, timer frozen<timer_task>, next_event_id bigint, -- This is needed to make conditional updates on session history range_id bigint, -- Increasing sequence identifier for transfer queue, checkpointed into shard info activity_map map<bigint, frozen<activity_info>>, timer_map map<text, frozen<timer_info>>, child_executions_map map<bigint, frozen<child_execution_info>>, request_cancel_map map<bigint, frozen<request_cancel_info>>, PRIMARY KEY (shard_id, type, domain_id, workflow_id, run_id, visibility_ts, task_id) ) WITH COMPACTION = { 'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy' }; CREATE TABLE events ( domain_id uuid, workflow_id text, run_id uuid, -- We insert a batch of events with each append transaction. -- This field stores the event id of first event in the batch. first_event_id bigint, range_id bigint, tx_id bigint, data blob, -- Batch of workflow execution history events as a blob data_encoding text, -- Protocol used for history serialization data_version int, -- history blob version PRIMARY KEY ((domain_id, workflow_id, run_id), first_event_id) ) WITH COMPACTION = { 'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy' }; -- Stores activity or workflow tasks CREATE TABLE tasks ( domain_id uuid, task_list_name text, task_list_type int, -- enum TaskListType {ActivityTask, DecisionTask} type int, -- enum rowType {Task, TaskList} task_id bigint, -- unique identifier for tasks, monotonically increasing range_id bigint, -- Used to ensure that only one process can write to the table task frozen<task>, task_list frozen<task_list>, PRIMARY KEY ((domain_id, task_list_name, task_list_type), type, task_id) ) WITH COMPACTION = { 'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy' }; CREATE TABLE domains ( id uuid, domain frozen<domain>, config frozen<domain_config>, PRIMARY KEY (id) ) WITH COMPACTION = { 'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy' };
42.107843
139
0.681141
4cd94018f7e5632b0bf7131676dea15c8b4739b4
8,357
py
Python
experiments/pre_train_imgep_pgl_goalspace/experiments/experiment_000019/run_training.py
flowersteam/automated_discovery_of_lenia_patterns
97cc7cde2120fa95225d1e470e00b8aa8c034e97
[ "MIT" ]
10
2019-10-05T16:22:11.000Z
2021-12-30T14:09:42.000Z
experiments/pre_train_imgep_pgl_goalspace/code/v01/run_training.py
flowersteam/automated_discovery_of_lenia_patterns
97cc7cde2120fa95225d1e470e00b8aa8c034e97
[ "MIT" ]
null
null
null
experiments/pre_train_imgep_pgl_goalspace/code/v01/run_training.py
flowersteam/automated_discovery_of_lenia_patterns
97cc7cde2120fa95225d1e470e00b8aa8c034e97
[ "MIT" ]
2
2019-10-14T12:12:38.000Z
2020-09-16T11:18:26.000Z
import os import sys import time import numpy as np import configuration import autodisc as ad from autodisc.representations.static.pytorchnnrepresentation.helper import Dataset import torch from torch.utils.data import DataLoader from torch.autograd import Variable from torchvision.utils import save_image ''' --------------------------------------------- PERFORM EPOCH -------------------------------------------------''' def train_epoch (train_loader, model, optimizer): model.train() losses = {} for data in train_loader: input_img = Variable(data['image']) # forward outputs = model(input_img) batch_losses = model.train_loss(outputs, data) # backward loss = batch_losses['total'] # backward optimizer.zero_grad() loss.backward() optimizer.step() # save losses for k, v in batch_losses.items(): if k not in losses: losses[k] = [v.data.item()] else: losses[k].append(v.data.item()) for k, v in losses.items(): losses [k] = np.mean (v) return losses def valid_epoch (epoch, valid_loader, model, save_output_images, output_valid_reconstruction_folder): model.eval() losses = {} with torch.no_grad(): for data in valid_loader: input_img = Variable(data['image']) # forward outputs = model(input_img) batch_losses = model.valid_losses(outputs, data) # save losses for k, v in batch_losses.items(): if k not in losses: losses[k] = [v.data.item()] else: losses[k].append(v.data.item()) for k, v in losses.items(): losses [k] = np.mean (v) # save reconstructed images versus original images for last batch if save_output_images and epoch % 50 == 0: input_images = input_img.cpu().data output_images = torch.sigmoid(outputs['recon_x']).cpu().data n_images = data['image'].size()[0] vizu_tensor_list = [None] * (2*n_images) vizu_tensor_list[:n_images] = [input_images[n] for n in range(n_images)] vizu_tensor_list[n_images:] = [output_images[n] for n in range(n_images)] filename = os.path.join (output_valid_reconstruction_folder, 'Epoch{0}.png'.format(epoch)) save_image(vizu_tensor_list, filename, nrow=n_images, padding=0) return losses ''' --------------------------------------------- TRAINING LOOP -------------------------------------------------''' def train(): # configuration file print("Loading the configuration ... \n") config = configuration.Config() # training parameters model_type = config.model_type model_init_params = config.model_init_params img_size = model_init_params['input_size'] n_epochs = config.n_epochs save_output_images = config.save_output_images # set seed np.random.seed(config.seed) # load datasets print("Loading the datasets ... \n") train_npz_filepath = config.train_npz_filepath train_dataset_npz = np.load(train_npz_filepath) train_batch_size = config.train_batch_size train_dataset = Dataset(img_size, data_augmentation = True) train_dataset.update(train_dataset_npz['observations'].shape[0], torch.from_numpy(train_dataset_npz['observations']).float(), train_dataset_npz['labels']) train_loader = DataLoader(train_dataset, batch_size=train_batch_size, shuffle=True) valid_npz_filepath = config.valid_npz_filepath valid_dataset_npz = np.load(valid_npz_filepath) valid_batch_size = config.valid_batch_size valid_dataset = Dataset(img_size) valid_dataset.update(valid_dataset_npz['observations'].shape[0], torch.from_numpy(valid_dataset_npz['observations']).float(), valid_dataset_npz['labels']) valid_loader = DataLoader(valid_dataset, batch_size=valid_batch_size, shuffle=True) print("Loading the model ... \n") model_cls = getattr(ad.representations.static.pytorchnnrepresentation, model_type) model = model_cls (**model_init_params) if model.use_gpu: model = model.cuda() load_weight = False weight_to_load_filename = '' if load_weight: print ("=> Loading saved model {0}".format(weight_to_load_filename)) model.load_state_dict(torch.load(weight_to_load_filename)) # optimizer learning_rate = 1e-3 weight_decay = 1e-5 optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate, weight_decay=weight_decay) # output files output_training_folder = 'training' if os.path.exists(output_training_folder): print('WARNING: training folder already exists') else: os.makedirs(output_training_folder) output_valid_reconstruction_folder = os.path.join(output_training_folder, 'reconstruction_images') if not os.path.exists(output_valid_reconstruction_folder): os.makedirs(output_valid_reconstruction_folder) output_models_folder = os.path.join(output_training_folder, 'models') if not os.path.exists(output_models_folder): os.makedirs(output_models_folder) train_filepath = os.path.join(output_training_folder, 'loss_train.cvs') train_file = open (train_filepath, 'a') train_file.write("Epoch\tloss\n") train_file.close() valid_filepath = os.path.join(output_training_folder, 'loss_valid.cvs') valid_file = open (valid_filepath, 'a') valid_file.write("Epoch\ttotal\tBCE\tKLD\tKLD_var\n") valid_file.close() # training loop best_valid_loss = sys.float_info.max print(" Start training ... \n") for epoch in range(n_epochs): # training tstart0 = time.time() train_losses = train_epoch (train_loader, model, optimizer) tend0 = time.time() train_file = open ( os.path.join(output_training_folder, 'loss_train.cvs'), 'a') train_file.write("Epoch: {0}".format(epoch)) for k, v in train_losses.items(): train_file.write("\t{0}: {1:.6f}".format(k,v)) train_file.write("\n") train_file.close() # validation tstart1 = time.time() valid_losses = valid_epoch (epoch, valid_loader, model, save_output_images, output_valid_reconstruction_folder) tend1 = time.time() valid_file = open ( os.path.join(output_training_folder, 'loss_valid.cvs'), 'a') valid_file.write("Epoch: {0}".format(epoch)) for k, v in valid_losses.items(): valid_file.write("\t{0}: {1:.6f}".format(k,v)) valid_file.write("\n") valid_file.close() # print summary print("Epoch {0}: train loss {1:.6f} (time: {2} secs), valid loss {3:.6f} (time: {4} secs)\n".format(epoch, train_losses['total'], tend0-tstart0, valid_losses['total'], tend1-tstart1)) model_name = type(model).__name__ model_init_params = model.init_params if 'self' in model_init_params: del model_init_params['self'] model_state_dict = model.state_dict() optimizer_state_dict = optimizer.state_dict() # save current epoch weight file with optimizer if we want to relaunch training from that point network = { 'epoch': epoch, 'type': model_name, 'init_params': model_init_params, 'state_dict': model_state_dict, 'optimizer': optimizer_state_dict, } torch.save(network , os.path.join (output_models_folder, 'current_weight_model.pth')) # save the best weights on the valid set for further inference valid_loss = valid_losses['total'] if valid_loss < best_valid_loss: best_valid_loss = valid_loss network = { 'epoch': epoch, 'type': model_name, 'init_params': model_init_params, 'state_dict': model_state_dict, } torch.save(network , os.path.join (output_models_folder, 'best_weight_model.pth')) if __name__ == "__main__": train()
35.411017
192
0.625224
b29565c843e4d475df5dc3bd370f427282458a2d
1,357
css
CSS
frontend/src/app/schema-engine/export-schema-dialog/export-schema-dialog.component.css
urth-poc/guardian
2778d00487807b214ce6fd8789008a284ad3d51f
[ "Apache-2.0" ]
13
2021-10-16T00:21:45.000Z
2022-03-30T23:53:06.000Z
frontend/src/app/schema-engine/export-schema-dialog/export-schema-dialog.component.css
urth-poc/guardian
2778d00487807b214ce6fd8789008a284ad3d51f
[ "Apache-2.0" ]
544
2021-10-14T19:36:17.000Z
2022-03-31T17:19:29.000Z
frontend/src/app/schema-engine/export-schema-dialog/export-schema-dialog.component.css
urth-poc/guardian
2778d00487807b214ce6fd8789008a284ad3d51f
[ "Apache-2.0" ]
16
2021-10-14T21:11:17.000Z
2022-03-30T23:53:08.000Z
.container { display: flex; justify-content: space-between; padding-right: 14px; } .container button { margin-top: 5px; margin-left: 10px; min-width: 280px; } .schema-field { flex: 1; } :host .content { max-height: 400px; } .policy-header { height: 44px; font-size: 34px; display: block; padding: 12px; box-sizing: border-box; text-align: center; color: #000; } .delimiter { padding: 30px 30px; width: 100%; height: 60px; box-sizing: border-box; position: relative; } .delimiter::after { content: ''; position: absolute; height: 2px; top: 30px; left: 0px; right: 0px; border-top: 1px solid #c8c8c8; } .field-value { color: #000; font-size: 20px; margin-bottom: 20px; max-width: 600px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin-left: 8px; } .field-name { margin-bottom: 12px; } .field { margin-top: 5px; margin-bottom: 28px; } .field-last { margin-bottom: 0px; } .loading { background: #fff; position: absolute; z-index: 99; left: 0; bottom: 0; right: 0; top: 0; display: flex; align-items: center; justify-items: center; justify-content: center; align-content: center; } .context { position: relative; }
14.912088
35
0.588062
72cdfc2b98a7aecedefd3ec48fdde453a11d02c1
9,087
ps1
PowerShell
Boxstarter.HyperV/Enable-BoxstarterVM.ps1
camilohe/boxstarter
5a591e40914d33643cfaa16ea16246dbb1b871fd
[ "Apache-2.0" ]
84
2017-10-25T15:49:21.000Z
2021-11-28T21:25:54.000Z
data/train/powershell/72cdfc2b98a7aecedefd3ec48fdde453a11d02c1Enable-BoxstarterVM.ps1
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
5
2018-03-29T11:50:46.000Z
2021-04-26T13:33:18.000Z
data/train/powershell/72cdfc2b98a7aecedefd3ec48fdde453a11d02c1Enable-BoxstarterVM.ps1
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
24
2017-11-22T08:31:00.000Z
2022-03-27T01:22:31.000Z
function Enable-BoxstarterVM { <# .SYNOPSIS Opens WMI ports and LocalAccountTokenFilterPolicy for Workgroup Hyper-V VMs .DESCRIPTION Prepares a Hyper-V VM for Boxstarter Installation. Opening WMI ports if remoting is not enabled and enabling LocalAccountTokenFilterPolicy if the VM is not in a domain so that Boxstarter can later enable PowerShell Remoting. Enable-BoxstarterVM will also restore the VM to a specified checkpoint or create a new checkpoint if the given checkpoint does not exist. .Parameter Provider The VM Provider to use. .PARAMETER VMName The name of the VM to enable. .PARAMETER Credential The Credential to use to test PSRemoting. .PARAMETER CheckpointName If a Checkpoint exists by this name, it will be restored. Otherwise one will be created. .NOTES PSRemoting must be enabled in order for Boxstarter to install to a remote machine. Bare Metal machines require a manual step of enabling it before remote Boxstarter installs will work. However, on a Hyper-V VM, Boxstarter can manage this by mounting and manipulating the VM's VHD. Boxstarter can open the WMI ports which enable it to create a Scheduled Task that will enable PSRemoting. For VMs that are not domain joined, Boxstarter will also enable LocalAccountTokenFilterPolicy so that local accounts can authenticate remotely. For Non-HyperV VMs, use Enable-BoxstarterVHD to perform these adjustments on the VHD of the VM. The VM must be powered off and accessible. .OUTPUTS A BoxstarterConnectionConfig that contains the ConnectionURI of the VM Computer and the PSCredential needed to authenticate. .EXAMPLE $cred=Get-Credential domain\username Enable-BoxstarterVM -Provider HyperV -VMName MyVM $cred Prepares MyVM for a Boxstarter Installation .EXAMPLE Enable-BoxstarterVM -Provider HyperV -VMName MyVM $cred | Install-BoxstarterPackage MyPackage Prepares MyVM and then installs MyPackage .EXAMPLE Enable-BoxstarterVM -Provider HyperV -VMName MyVM $cred ExistingSnapshot | Install-BoxstarterPackage MyPackage Prepares MyVM, Restores ExistingSnapshot and then installs MyPackage .EXAMPLE Enable-BoxstarterVM -Provider HyperV -VMName MyVM $cred NewSnapshot | Install-BoxstarterPackage MyPackage Prepares MyVM, Creates a new snapshot named NewSnapshot and then installs MyPackage .LINK http://boxstarter.org Enable-BoxstarterVHD Install-BoxstarterPackage #> [CmdletBinding()] [OutputType([BoxstarterConnectionConfig])] param( [parameter(Mandatory=$true, ValueFromPipeline=$True, Position=0)] [string[]]$VMName, [parameter(Mandatory=$true, Position=1)] [Management.Automation.PsCredential]$Credential, [parameter(Mandatory=$false, Position=2)] [string]$CheckpointName ) Begin { ##Cannot run remotely unelevated. Look into self elevating if(!(Test-Admin)) { Write-Error "You must be running as an administrator. Please open a PowerShell console as Administrator and rerun Install-BoxstarperPackage." return } if(!(Get-Command -Name Get-VM -ErrorAction SilentlyContinue)){ Write-Error "Boxstarter could not find the Hyper-V PowerShell Module installed. This is required for use with Boxstarter.HyperV. Run Install-windowsfeature -name hyper-v -IncludeManagementTools." return } $CurrentVerbosity=$global:VerbosePreference if($PSBoundParameters["Verbose"] -eq $true) { $global:VerbosePreference="Continue" } } Process { $VMName | % { $vm=Get-VM $_ -ErrorAction SilentlyContinue if($vm -eq $null){ throw New-Object -TypeName InvalidOperationException -ArgumentList "Could not find VM: $_" } if($CheckpointName -ne $null -and $CheckpointName.Length -gt 0){ $point = Get-VMSnapshot -VMName $_ -Name $CheckpointName -ErrorAction SilentlyContinue $origState=$vm.State if($point -ne $null) { Restore-VMSnapshot -VMName $_ -Name $CheckpointName -Confirm:$false Write-BoxstarterMessage "$checkpointName restored on $_ waiting to complete..." $restored=$true } } if($vm.State -eq "saved"){ Remove-VMSavedState $_ } if($vm.State -ne "running"){ Start-VM $_ -ErrorAction SilentlyContinue Wait-HeartBeat $_ } do { Start-Sleep -milliseconds 100 $ComputerName=Get-VMGuestComputerName $_ } until ($ComputerName -ne $null) $clientRemoting = Enable-BoxstarterClientRemoting $ComputerName Write-BoxstarterMessage "Testing remoting access on $ComputerName..." $remotingTest = Invoke-Command $ComputerName { Get-WmiObject Win32_ComputerSystem } -Credential $Credential -ErrorAction SilentlyContinue $params=@{} if(!$remotingTest) { Log-BoxstarterMessage "PowerShell remoting connection failed:" if($global:Error.Count -gt 0) { Log-BoxstarterMessage $global:Error[0] } write-BoxstarterMessage "Testing WSMAN..." $WSManResponse = Test-WSMan $ComputerName -ErrorAction SilentlyContinue if($WSManResponse) { Write-BoxstarterMessage "WSMAN responded. Will not enable WMI." -verbose $params["IgnoreWMI"]=$true } else { Log-BoxstarterMessage "WSMan connection failed:" if($global:Error.Count -gt 0) { Log-BoxstarterMessage $global:Error[0] } write-BoxstarterMessage "Testing WMI..." $wmiTest=try { Invoke-WmiMethod -ComputerName $ComputerName -Credential $Credential Win32_Process Create -Args "cmd.exe" -ErrorAction SilentlyContinue } catch {$ex=$_} if($wmiTest -or ($ex -ne $null -and $ex.CategoryInfo.Reason -eq "UnauthorizedAccessException")) { Write-BoxstarterMessage "WMI responded. Will not enable WMI." -verbose $params["IgnoreWMI"]=$true } else { Log-BoxstarterMessage "WMI connection failed:" if($global:Error.Count -gt 0) { Log-BoxstarterMessage $global:Error[0] } } } $credParts = $Credential.UserName.Split("\\") if(($credParts.Count -eq 1 -and $credParts[0] -eq "administrator") -or ` ($credParts.Count -eq 2 -and $credParts[0] -eq $ComputerName -and $credParts[1] -eq "administrator") -or` ($credParts.Count -eq 2 -and $credParts[0] -ne $ComputerName)){ $params["IgnoreLocalAccountTokenFilterPolicy"]=$true } if($credParts.Count -eq 2 -and $credParts[0] -eq $ComputerName -and $credParts[1] -eq "administrator"){ $params["IgnoreLocalAccountTokenFilterPolicy"]=$true } } if(!$remotingTest -and ($params.Count -lt 2)) { Write-BoxstarterMessage "Stopping $_" Stop-VM $_ -WarningAction SilentlyContinue -ErrorAction SilentlyContinue $vhd=Get-VMHardDiskDrive -VMName $_ Enable-BoxstarterVHD $vhd.Path @params | Out-Null Start-VM $_ Write-BoxstarterMessage "Started $_. Waiting for Heartbeat..." Wait-HeartBeat $_ } if(!$restored -and $CheckpointName -ne $null -and $CheckpointName.Length -gt 0) { Write-BoxstarterMessage "Creating Checkpoint $CheckpointName" Checkpoint-VM -Name $_ -SnapshotName $CheckpointName } $res=new-Object -TypeName BoxstarterConnectionConfig -ArgumentList "http://$($computerName):5985/wsman",$Credential,$null return $res } } End { $global:VerbosePreference=$CurrentVerbosity } } function Get-VMGuestComputerName($vmName) { $vm = Get-WmiObject -Namespace root\virtualization\v2 -Class Msvm_ComputerSystem -Filter "ElementName='$vmName'" $vm.GetRelated("Msvm_KvpExchangeComponent").GuestIntrinsicExchangeItems | % { if(([XML]$_) -ne $null){ $GuestExchangeItemXml = ([XML]$_).SelectSingleNode("/INSTANCE/PROPERTY[@NAME='Name']/VALUE[child::text()='FullyQualifiedDomainName']") if ($GuestExchangeItemXml -ne $null) { $GuestExchangeItemXml.SelectSingleNode("/INSTANCE/PROPERTY[@NAME='Data']/VALUE/child::text()").Value } } } } function Wait-HeartBeat($vmName) { do {Start-Sleep -milliseconds 100} until ((Get-VMIntegrationService -VMName $vmName | ?{$_.id.endswith("\\84EAAE65-2F2E-45F5-9BB5-0E857DC8EB47") -or ($_.name -eq "Heartbeat")}).PrimaryStatusDescription -eq "OK") }
42.863208
207
0.644547
fdd9a9d420630875fc997988b4a9f43a4bd8b9b4
963
dart
Dart
lib/screens/one_player_game_screen/view/current_turn.dart
aakash-pamnani/tic-tac-toe-flutter
a8465490afab6f6661a0e298a083b02474f258e2
[ "MIT" ]
4
2022-01-27T15:18:33.000Z
2022-02-22T20:17:14.000Z
lib/screens/one_player_game_screen/view/current_turn.dart
aakashpsindhi/tic-tac-toe-flutter
a8465490afab6f6661a0e298a083b02474f258e2
[ "MIT" ]
null
null
null
lib/screens/one_player_game_screen/view/current_turn.dart
aakashpsindhi/tic-tac-toe-flutter
a8465490afab6f6661a0e298a083b02474f258e2
[ "MIT" ]
1
2022-03-30T18:23:09.000Z
2022-03-30T18:23:09.000Z
import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:tic_tac_toe/screens/one_player_game_screen/bloc/one_player_bloc.dart'; class CurrentTurn extends StatelessWidget { const CurrentTurn({required this.isXTurn, Key? key}) : super(key: key); // used to show image base on x or O turn final bool isXTurn; @override Widget build(BuildContext context) { return Row(mainAxisSize: MainAxisSize.min, children: [ BlocBuilder<OnePlayerBloc, OnePlayerState>(builder: (context, state) { if (state.isXTurn) { return Image.asset( "assets/images/x.png", width: 30, ); } else { return Image.asset( "assets/images/o.png", width: 30, ); } }), const Padding( padding: EdgeInsets.all(8.0), child: Text("Turn", style: TextStyle(fontSize: 20)), ) ]); } }
26.027027
86
0.612669
a13962c7ffbd3475fe767789d237d23cc16ded9d
2,825
tsx
TypeScript
website/src/pages/_app.tsx
yamanoku/markuplint
de81fc514acdf472f87184e3499e9364258f9b66
[ "MIT" ]
198
2018-02-27T06:38:52.000Z
2022-03-29T16:43:46.000Z
website/src/pages/_app.tsx
yamanoku/markuplint
de81fc514acdf472f87184e3499e9364258f9b66
[ "MIT" ]
265
2018-04-29T07:35:09.000Z
2022-03-31T02:19:03.000Z
website/src/pages/_app.tsx
yamanoku/markuplint
de81fc514acdf472f87184e3499e9364258f9b66
[ "MIT" ]
23
2018-07-09T08:08:19.000Z
2022-03-03T11:46:04.000Z
import 'normalize.css'; import '../global.css'; import type { MDXProviderComponentsProp } from '@mdx-js/react'; import type { AppProps } from 'next/app'; import type { PropsWithChildren } from 'react'; import { MDXProvider } from '@mdx-js/react'; import innerText from 'react-innertext'; let h2: string; let h3: string; let h4: string; let h5: string; const mdComponents: MDXProviderComponentsProp = { h1: _ => null, h2: (props: PropsWithChildren<{}>) => { const id = createId(innerText(props.children)); h2 = id; return ( <h2> <a {...props} id={id} href={`#${id}`}> {props.children} </a> </h2> ); }, h3: (props: PropsWithChildren<{}>) => { const _id = createId(innerText(props.children)); const id = `${h2}/${_id}`; h3 = _id; return ( <h3> <a {...props} id={id} href={`#${id}`}> {props.children} </a> </h3> ); }, h4: (props: PropsWithChildren<{}>) => { const _id = createId(innerText(props.children)); const id = `${h2}/${h3}/${_id}`; h4 = _id; return ( <h4> <a {...props} id={id} href={`#${id}`}> {props.children} </a> </h4> ); }, h5: (props: PropsWithChildren<{}>) => { const _id = createId(innerText(props.children)); const id = `${h2}/${h3}/${h4}/${_id}`; h5 = _id; return ( <h5> <a {...props} id={id} href={`#${id}`}> {props.children} </a> </h5> ); }, h6: (props: PropsWithChildren<{}>) => { const _id = createId(innerText(props.children)); const id = `${h2}/${h3}/${h4}/${h5}/${_id}`; return ( <h6> <a {...props} id={id} href={`#${id}`}> {props.children} </a> </h6> ); }, a: (props: PropsWithChildren<React.AnchorHTMLAttributes<HTMLAnchorElement>>) => { const isExternal = props.href && /^https?:\/\//.test(props.href); return ( <a {...props} target={isExternal ? '_blank' : undefined} referrerPolicy={isExternal ? 'no-referrer' : undefined}> {props.children} </a> ); }, img: (props: PropsWithChildren<React.ImgHTMLAttributes<HTMLImageElement>>) => { return <img {...props} loading="lazy" />; }, table: (props: PropsWithChildren<{}>) => { return ( <div className="__table-wrapper"> <table {...props}>{props.children}</table> </div> ); }, }; function createId(text: string) { return text .replace(/\s+/gi, '-') .replace(/^[A-Z]/, $0 => $0.toLowerCase()) .replace(/(?<!^)[A-Z]/g, $0 => `-${$0.toLowerCase()}`) .replace(/-+/g, '-'); } export default function App({ Component, pageProps }: AppProps) { return ( <MDXProvider components={mdComponents}> <Component {...pageProps} /> </MDXProvider> ); }
25.45045
119
0.52885
4f8c1c964a02d6836bb1ba96b109f82b1453449c
459
rb
Ruby
Casks/mumble.rb
noinarisak/homebrew-cask
4396a344ad6f53cf601602779ce95a90adc2032b
[ "BSD-2-Clause" ]
2
2020-07-26T04:53:41.000Z
2020-07-26T15:04:39.000Z
Casks/mumble.rb
noinarisak/homebrew-cask
4396a344ad6f53cf601602779ce95a90adc2032b
[ "BSD-2-Clause" ]
3
2022-02-28T07:19:56.000Z
2022-03-28T07:15:46.000Z
Casks/mumble.rb
noinarisak/homebrew-cask
4396a344ad6f53cf601602779ce95a90adc2032b
[ "BSD-2-Clause" ]
3
2020-11-04T08:55:13.000Z
2020-11-06T04:48:38.000Z
cask 'mumble' do version '1.3.0' sha256 'ffe648f07e3749dac1b7e9e82eb15b032e4547b8bfd48d568a618057dea6ee49' # github.com/mumble-voip/mumble was verified as official when first introduced to the cask url "https://github.com/mumble-voip/mumble/releases/download/#{version}/Mumble-#{version}.dmg" appcast 'https://github.com/mumble-voip/mumble/releases.atom' name 'Mumble' homepage 'https://wiki.mumble.info/wiki/Main_Page' app 'Mumble.app' end
35.307692
96
0.766885
06fc7df99c796595265f1a42c2b6fdc43e58dc32
165
py
Python
w3resource/Basics- Part I/basics009.py
DanielPascualSenties/pythonw3
f0355d1b640dec19e0b087797538204332111bb5
[ "MIT" ]
null
null
null
w3resource/Basics- Part I/basics009.py
DanielPascualSenties/pythonw3
f0355d1b640dec19e0b087797538204332111bb5
[ "MIT" ]
null
null
null
w3resource/Basics- Part I/basics009.py
DanielPascualSenties/pythonw3
f0355d1b640dec19e0b087797538204332111bb5
[ "MIT" ]
null
null
null
exam_st_date = (11, 12, 2014) print("The examination will start from : " + str(exam_st_date[0]) + " / " + str(exam_st_date[1]) + " / " + str(exam_st_date[2]))
41.25
98
0.606061
6b73ea2b92c9240d4626cb39d89da4285ebddb60
194
js
JavaScript
appDetails/middlewares/auth.js
ykabusalah/ykabusalah1.github.io
c69fb35caa535176f02d0dab41825ec0988a60eb
[ "MIT" ]
null
null
null
appDetails/middlewares/auth.js
ykabusalah/ykabusalah1.github.io
c69fb35caa535176f02d0dab41825ec0988a60eb
[ "MIT" ]
null
null
null
appDetails/middlewares/auth.js
ykabusalah/ykabusalah1.github.io
c69fb35caa535176f02d0dab41825ec0988a60eb
[ "MIT" ]
null
null
null
module.exports = forumBaseUrl => (req, res, next) => { if(req.user) { res.locals.user = req.user; return next(); } return res.redirect(`${forumBaseUrl}/login`); };
19.4
54
0.556701
ddae108b0f9ec05bc51b71701c923c80eeb62561
1,675
java
Java
src/main/java/makamys/coretweaks/util/MCUtil.java
makamys/CoreTweaks
0571ae43da2ca16b08a292685ec6c17ac4ab94cf
[ "MIT" ]
4
2021-12-23T22:45:26.000Z
2022-03-21T18:05:58.000Z
src/main/java/makamys/coretweaks/util/MCUtil.java
makamys/CoreTweaks
0571ae43da2ca16b08a292685ec6c17ac4ab94cf
[ "MIT" ]
1
2022-03-15T23:03:14.000Z
2022-03-16T14:45:30.000Z
src/main/java/makamys/coretweaks/util/MCUtil.java
makamys/CoreTweaks
0571ae43da2ca16b08a292685ec6c17ac4ab94cf
[ "MIT" ]
1
2022-03-24T21:06:08.000Z
2022-03-24T21:06:08.000Z
package makamys.coretweaks.util; import java.lang.reflect.Field; import net.minecraft.client.Minecraft; import net.minecraft.client.settings.GameSettings; import net.minecraft.launchwrapper.Launch; public class MCUtil { private static Field ofCloudsHeight_F; public static Object Reflector_ForgeBlock_hasTileEntity; public static Object Reflector_ForgeBlock_canRenderInPass; static { try { ofCloudsHeight_F = GameSettings.class.getDeclaredField("ofCloudsHeight"); System.out.println("Found ofCloudsHeight field, assuming OptiFine is present"); Class<?> reflector = Launch.classLoader.findClass("Reflector"); Field hasTileEntityF = reflector.getField("ForgeBlock_hasTileEntity"); Reflector_ForgeBlock_hasTileEntity = hasTileEntityF.get(null); Field canRenderInPassF = reflector.getField("ForgeBlock_canRenderInPass"); Reflector_ForgeBlock_canRenderInPass = canRenderInPassF.get(null); System.out.println("Found OptiFine fields, assuming OptiFine is present"); } catch (NoSuchFieldException | SecurityException | ClassNotFoundException | IllegalArgumentException | IllegalAccessException e) { System.out.println("Couldn't find OptiFine fields (" + e.getMessage() + "), assuming OptiFine is not present"); } } public static float getOfCloudsHeight() { if(ofCloudsHeight_F != null) { try { return (float)ofCloudsHeight_F.get(Minecraft.getMinecraft().gameSettings); } catch (IllegalArgumentException | IllegalAccessException e) { // TODO Auto-generated catch block e.printStackTrace(); } } return 0; } public static boolean isOptifinePresent() { return ofCloudsHeight_F != null; } }
33.5
133
0.767761
9768d85f9af154ea579dd558c94f71c7fc2c6502
21,131
tsx
TypeScript
src/pages/Bounty/index.tsx
theomart77/dyp
5d67df56aef828b7b797d6f5483e661c9e2d0aa2
[ "WTFPL" ]
10
2020-10-07T18:24:00.000Z
2021-11-26T18:43:36.000Z
src/pages/Bounty/index.tsx
theomart77/dyp
5d67df56aef828b7b797d6f5483e661c9e2d0aa2
[ "WTFPL" ]
1
2020-11-07T13:44:21.000Z
2020-12-10T14:08:25.000Z
src/pages/Bounty/index.tsx
theomart77/dyp
5d67df56aef828b7b797d6f5483e661c9e2d0aa2
[ "WTFPL" ]
13
2020-10-18T02:38:28.000Z
2021-06-16T05:12:03.000Z
import React from 'react' import { AutoColumn } from '../../components/Column' import styled from 'styled-components' import { TYPE } from '../../theme' import { RowBetween } from '../../components/Row' import { CardSection, DataCard, CardNoise, CardBGImage } from '../../components/earn/styled' import { Link } from 'rebass' const PageWrapper = styled(AutoColumn)` max-width: 100%; width: 100%; ` const TopSection = styled(AutoColumn)` max-width: 640px; width: 100%; ` export default function Bounty() { return ( <PageWrapper gap="lg" justify="center"> <TopSection gap="md"> <TYPE.black fontWeight={600} fontSize={30}> Bounty Information </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}> Bounty Campaign starts from October 12, 2020 and will go until November 12th, 2020 </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>Total Pool: 200 Ethereum, 0.01 ETH = 1 Stake</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>The bonus allocation is as follows:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> - Twitter 25% Stakes<div></div>- Telegram 25% Stakes<div></div>- Discord 25% Stakes<div></div>- Youtube 25% Stakes </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> The Bonus will be distributed in maximum 2 weeks after the Bounty campaign ends. For any questions please join the Bounty group -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://t.me/dypbounty" target="_blank" > https://t.me/dypbounty </Link> </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> <RowBetween></RowBetween> <TYPE.black fontWeight={600} fontSize={30}> General Rules </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 1. All the participants must join the DYP's Official Telegram Group and make at least 1 constructive comment -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://t.me/dypfinance" target="_blank" > https://t.me/dypfinance </Link> </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2. All the participants must join the Bounty group -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://t.me/dypbounty" target="_blank" > https://t.me/dypbounty </Link> </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 3. Talking about the bounty campaign in the project chat group will lead to immediate disqualification from the campaign and an instant ban from the Official chat group. Please ask your bounty related questions in the Bounty group. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 4. Using multiple accounts, cheating and spamming are not allowed. You will be disqualified from the bounty campaign immediately and all of your accounts will be banned permanently. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 5. KYC is not required for the bounty campaign. However, the project team has the rights to require KYC for suspicious cases. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 6. The bounty manager and the project team reserve the right to make changes to the conditions at any time. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 7. All the participants must complete the authentication form at{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://bounty.dyp.finance" target="_blank" > https://bounty.dyp.finance </Link>{' '} to join this bounty. </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> <RowBetween></RowBetween> <TYPE.black fontWeight={600} fontSize={30}> Twitter Campaign </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}>Rewards:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>- 1250 stakes per week for all the participants</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2000+ followers: 1 stake/week<div></div>4000+ followers: 2 stakes/week<div></div>10000+ followers: 4 stakes/week<div></div>20000+ followers: 10 stakes/week </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>How to apply:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 1. Every participant must follow the DYP's Official Twitter Account -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://twitter.com/dypfinance" target="_blank" > https://twitter.com/dypfinance </Link> </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2. Twitter account must have minimum 2000+ followers and must be original (90% in Twitter audit). </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 3. User must Retweet 5 tweets from the DYP's Official Twitter Account -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://twitter.com/dypfinance" target="_blank" > https://twitter.com/dypfinance </Link> </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 4. Create at least 5 unique tweets about the DeFi Yield Protocol project per week, using these hashtags #defi #DeFiYieldProtocol $DYP </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 5. Submit weekly report in Bounty group in .docx format, until Friday 23:59 UTC time. You can't edit report after current weekend. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 6. If you ask any bounty related questions on the main chat you will be banned from the campaign, join the Bounty group to ask any bounty related questions. </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> <RowBetween></RowBetween> <TYPE.black fontWeight={600} fontSize={30}> Telegram Campaign </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}>Rewards:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>- 1250 stakes per week for all the participants</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>How to apply:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 1. Update your Telegram name to "Your Name | DYP Ambassador". Only one project is allowed in your Telegram name. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2. Replace your profile picture with DeFi Yield Protocol Logo -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://dyp.finance/images/logo.png" target="_blank" > Download DYP LOGO </Link>{' '} </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 3. Write at least 10 constructive messages in minimum 5 other crypto-related telegram groups. Posts/messages must be constructive, useful and in a way which will not be considered as spamming. Deleted messages will not be counted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 4. Invite at least 10 new members to DYP's Official telegram group. The new members must join our group by the invite link{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://t.me/dypfinance" target="_blank" > https://t.me/dypfinance </Link> {/* eslint-disable-next-line react/no-unescaped-entities */}, you are not allowed to add members with "Add members" function because this is considered Spam by telegram. If you invite members with "Add{' '} {/* eslint-disable-next-line react/no-unescaped-entities */} members" function you will be banned from the campaign. You need to have at least 5 members from the invited ones to post constructive messages in our group. If your members leave the{' '} {/* eslint-disable-next-line react/no-unescaped-entities */} DYP's Official telegram group before the campaign ends, your stakes will be deleted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 5. Submit weekly report in Bounty group, until Friday 23:59 UTC time. You can't edit report after current weekend. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 6. If you remove your name and profile pic before the campaign ends your stakes will be deleted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 7. If you ask any bounty related questions on the main chat you will be banned from the campaign, join the Bounty group to ask any bounty related questions. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14} fontWeight={600}> *** You will get extra 5% bonus in ETH from the DYP investment of your invited members. Let’s look at the following example: You have 2 invited members that purchased DYP worth 10 ETH, that means you will get a bonus of 0.5 ETH. </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> <RowBetween></RowBetween> <TYPE.black fontWeight={600} fontSize={30}> Discord Campaign </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}>Rewards:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>- 1250 stakes per week for all the participants</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>How to apply:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 1. Replace your profile picture with DeFi Yield Protocol Logo -{' '} <Link style={{ color: 'white', textDecoration: 'underline' }} href="https://dyp.finance/images/logo.png" target="_blank" > Download DYP LOGO </Link>{' '} </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2. Write at least 10 constructive messages in minimum 5 other crypto-related discord channels. Posts/messages must be constructive, useful and in a way which will not be considered as spamming. Deleted messages will not be counted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 3. Invite at least 10 new members to DYP's Official discord channel. The new members must join our channel by the invite link that you generate with your username, under DeFi Yield Protocol server{' '} {/* eslint-disable-next-line react/no-unescaped-entities */} name. You click "Invite" and you get a "Copy Share Link", please note that the link expires in 1 day, so every 24 hours you need to generate a new one. You need to have at least 5 members from the invited{' '} {/* eslint-disable-next-line react/no-unescaped-entities */} ones to post constructive messages in our channel. If your members leave the DYP's Official discord channel before the campaign ends, your stakes will be deleted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 4. Submit weekly report in Bounty group, until Friday 23:59 UTC time. You can't edit report after current weekend. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 5. If you remove your profile picture with DYP Logo before the campaign ends your stakes will be deleted. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 6. If you ask any bounty related questions on the main chat you will be banned from the campaign, join the Bounty group to ask any bounty related questions. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14} fontWeight={600}> *** You will get extra 5% bonus in ETH from the DYP investment of your invited members. Let’s look at the following example: You have 2 invited members that purchased DYP worth 10 ETH, that means you will get a bonus of 0.5 ETH. </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> <RowBetween></RowBetween> <TYPE.black fontWeight={600} fontSize={30}> Youtube Campaign </TYPE.black> <DataCard> <CardBGImage /> <CardNoise /> <CardSection> <AutoColumn gap="md"> <RowBetween> <TYPE.white fontSize={14}>Rewards:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>- 1250 stakes per week for all the participants</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 2000+ subscribers: 25 stake/week<div></div>5000+ subscribers: 50 stakes/week<div></div>10000+ subscribers: 75 stakes/week<div></div>20000+ subscribers: 100 stakes/week </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>How to apply:</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>1. Video must be original and made by you.</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>2. Your video must be 3 min long and must be uploaded to Youtube.</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 3. You channel must have minimum 2000 subscribers and must be a cryptocurrency channel. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 4. Your video must have 500 minimum views or it will be disqualified. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}>5. Only one video per person is allowed.</TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 6. Video description must have the website link, telegram group link and twitter link. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> {/* eslint-disable-next-line react/no-unescaped-entities */} 7. Submit weekly report in Bounty group, until Friday 23:59 UTC time. You can't edit report after current weekend. </TYPE.white> </RowBetween> <RowBetween> <TYPE.white fontSize={14}> 8. If you ask any bounty related questions on the main chat you will be banned from the campaign, join the Bounty group to ask any bounty related questions. </TYPE.white> </RowBetween> </AutoColumn> </CardSection> <CardBGImage /> <CardNoise /> </DataCard> </TopSection> </PageWrapper> ) }
45.055437
125
0.505561
93728ad611ddf2b043988e42821d62746c2ba9e3
421
cs
C#
src/Taskever.Application/Tasks/Dto/CreateTaskInput.cs
aspnetboilerplate/taskever
e3baed9cd93501d2a0c73b5b458963123d9b522b
[ "MIT" ]
73
2015-01-12T07:57:06.000Z
2021-06-03T18:59:44.000Z
taskever/Taskever.Application/Tasks/Dto/CreateTaskInput.cs
tianfengs/AbpPractice
e849561723e940086b3c44b3bfc9ede7d7125062
[ "MIT" ]
15
2015-01-05T19:56:54.000Z
2022-03-30T06:26:06.000Z
taskever/Taskever.Application/Tasks/Dto/CreateTaskInput.cs
tianfengs/AbpPractice
e849561723e940086b3c44b3bfc9ede7d7125062
[ "MIT" ]
80
2015-01-07T19:26:47.000Z
2020-04-02T02:47:20.000Z
using System.Web; using Abp.Application.Services.Dto; using Abp.Runtime.Validation; namespace Taskever.Tasks.Dto { public class CreateTaskInput : IInputDto, IShouldNormalize { public TaskDto Task { get; set; } public void Normalize() { Task.Title = HttpUtility.HtmlEncode(Task.Title); Task.Description = HttpUtility.HtmlEncode(Task.Description); } } }
24.764706
72
0.657957
99a7ae78a6c67e2a95d18ab7f4cb7037508269dd
6,261
sql
SQL
dbv-1/data/schema/prc_AddAccountIPCLI.sql
devatsrs/neon.web
2ca8024fa58ecb881694b5308ff622468c181765
[ "MIT" ]
null
null
null
dbv-1/data/schema/prc_AddAccountIPCLI.sql
devatsrs/neon.web
2ca8024fa58ecb881694b5308ff622468c181765
[ "MIT" ]
null
null
null
dbv-1/data/schema/prc_AddAccountIPCLI.sql
devatsrs/neon.web
2ca8024fa58ecb881694b5308ff622468c181765
[ "MIT" ]
null
null
null
CREATE DEFINER=`root`@`localhost` PROCEDURE `prc_AddAccountIPCLI`( IN `p_CompanyID` INT, IN `p_AccountID` INT, IN `p_CustomerVendorCheck` INT, IN `p_IPCLIString` LONGTEXT, IN `p_IPCLICheck` LONGTEXT, IN `p_ServiceID` INT ) BEGIN DECLARE i int; DECLARE v_COUNTER int; DECLARE v_IPCLI LONGTEXT; DECLARE v_IPCLICheck VARCHAR(10); DECLARE v_Check int; SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED; DROP TEMPORARY TABLE IF EXISTS `AccountIPCLI`; /*Temp table for matching ipcli account*/ CREATE TEMPORARY TABLE `AccountIPCLI` ( `AccountName` varchar(45) NOT NULL, `IPCLI` LONGTEXT NOT NULL ); DROP TEMPORARY TABLE IF EXISTS `AccountIPCLITable1`; /*Temp table for ipcli from DB*/ CREATE TEMPORARY TABLE `AccountIPCLITable1` ( `splitted_column` varchar(45) NOT NULL ); DROP TEMPORARY TABLE IF EXISTS `AccountIPCLITable2`; /*Temp table for ipcli from passing variable*/ CREATE TEMPORARY TABLE `AccountIPCLITable2` ( `splitted_column` varchar(45) NOT NULL ); INSERT INTO AccountIPCLI SELECT acc.AccountName, CONCAT( IFNULL(((CASE WHEN CustomerAuthRule = p_IPCLICheck THEN accauth.CustomerAuthValue ELSE '' END)),''),',', IFNULL(((CASE WHEN VendorAuthRule = p_IPCLICheck THEN accauth.VendorAuthValue ELSE '' END)),'')) as Authvalue FROM tblAccountAuthenticate accauth INNER JOIN tblAccount acc ON acc.AccountID = accauth.AccountID AND accauth.CompanyID = p_CompanyID -- AND accauth.ServiceID = p_ServiceID AND ((CustomerAuthRule = p_IPCLICheck) OR (VendorAuthRule = p_IPCLICheck)) WHERE (SELECT NeonRMDev.fnFIND_IN_SET(CONCAT(IFNULL(accauth.CustomerAuthValue,''),',',IFNULL(accauth.VendorAuthValue,'')),p_IPCLIString)) > 0; SELECT COUNT(AccountName) INTO v_COUNTER FROM AccountIPCLI; /* if found matching return result and process further for new IPCLI insertion in DB*/ IF v_COUNTER > 0 THEN SELECT * FROM AccountIPCLI; /*Fill Passing IPCLI to temp table1*/ SET i = 1; REPEAT INSERT INTO AccountIPCLITable1 SELECT NeonRMDev.FnStringSplit(p_IPCLIString, ',', i) WHERE NeonRMDev.FnStringSplit(p_IPCLIString, ',', i) IS NOT NULL LIMIT 1; SET i = i + 1; UNTIL ROW_COUNT() = 0 END REPEAT; /*Matching exect matching ips and fill into temp table2*/ INSERT INTO AccountIPCLITable2 SELECT AccountIPCLITable1.splitted_column FROM AccountIPCLI,AccountIPCLITable1 WHERE FIND_IN_SET(AccountIPCLITable1.splitted_column,AccountIPCLI.IPCLI)>0 GROUP BY AccountIPCLITable1.splitted_column; /*Delete matching IPCLI from IPCLI to be insert in DB*/ DELETE t1 FROM AccountIPCLITable1 t1 INNER JOIN AccountIPCLITable2 t2 ON t1.splitted_column = t2.splitted_column WHERE t1.splitted_column=t2.splitted_column; SELECT GROUP_CONCAT(t.splitted_column separator ',') INTO p_IPCLIString FROM AccountIPCLITable1 t; /*Clear temp tables*/ DELETE t1,t2 FROM AccountIPCLITable1 t1,AccountIPCLITable2 t2; END IF; /*Put DB IPCLI into v_IPCLI of current account */ SELECT accauth.AccountAuthenticateID, (CASE WHEN p_CustomerVendorCheck = 1 THEN accauth.CustomerAuthValue ELSE accauth.VendorAuthValue END) as AuthValue, (CASE WHEN p_CustomerVendorCheck = 1 THEN accauth.CustomerAuthRule ELSE accauth.VendorAuthRule END) as AuthRule INTO v_Check,v_IPCLI,v_IPCLICheck FROM tblAccountAuthenticate accauth WHERE accauth.CompanyID = p_CompanyID AND accauth.ServiceID = p_ServiceID AND accauth.AccountID = p_AccountID; IF v_Check > 0 && p_IPCLIString IS NOT NULL && p_IPCLIString!='' THEN IF v_IPCLICheck != p_IPCLICheck THEN /*IF New IPCLI setting discard existing IPCLI Setting*/ IF p_CustomerVendorCheck = 1 THEN UPDATE tblAccountAuthenticate accauth SET accauth.CustomerAuthValue = '' WHERE accauth.CompanyID = p_CompanyID AND accauth.ServiceID = p_ServiceID AND accauth.AccountID = p_AccountID; ELSEIF p_CustomerVendorCheck = 2 THEN UPDATE tblAccountAuthenticate accauth SET accauth.VendorAuthValue = '' WHERE accauth.CompanyID = p_CompanyID AND accauth.ServiceID = p_ServiceID AND accauth.AccountID = p_AccountID; END IF; SET v_IPCLI = p_IPCLIString; ELSE /* Fill first table with DB IPCLI*/ SET i = 1; REPEAT INSERT INTO AccountIPCLITable1 SELECT NeonRMDev.FnStringSplit(v_IPCLI, ',', i) WHERE NeonRMDev.FnStringSplit(v_IPCLI, ',', i) IS NOT NULL LIMIT 1; SET i = i + 1; UNTIL ROW_COUNT() = 0 END REPEAT; /* Fill Second table with New IPCLI*/ SET i = 1; REPEAT INSERT INTO AccountIPCLITable2 SELECT NeonRMDev.FnStringSplit(p_IPCLIString, ',', i) WHERE NeonRMDev.FnStringSplit(p_IPCLIString, ',', i) IS NOT NULL LIMIT 1; SET i = i + 1; UNTIL ROW_COUNT() = 0 END REPEAT; /*Combine both IPCLI and concate unique result*/ SELECT GROUP_CONCAT(t.splitted_column separator ',') INTO v_IPCLI FROM ( SELECT splitted_column FROM AccountIPCLITable1 UNION SELECT splitted_column FROM AccountIPCLITable2 GROUP BY splitted_column ORDER BY splitted_column ) t; END IF; /*Update result into DB against given account*/ IF p_CustomerVendorCheck = 1 THEN UPDATE tblAccountAuthenticate accauth SET accauth.CustomerAuthValue = v_IPCLI, accauth.CustomerAuthRule = p_IPCLICheck WHERE accauth.CompanyID = p_CompanyID AND accauth.ServiceID = p_ServiceID AND accauth.AccountID = p_AccountID; ELSEIF p_CustomerVendorCheck = 2 THEN UPDATE tblAccountAuthenticate accauth SET accauth.VendorAuthValue = v_IPCLI, accauth.VendorAuthRule = p_IPCLICheck WHERE accauth.CompanyID = p_CompanyID AND accauth.ServiceID = p_ServiceID AND accauth.AccountID = p_AccountID; END IF; ELSEIF v_Check IS NULL && p_IPCLIString IS NOT NULL && p_IPCLIString!='' THEN /*Insert into DB if no result found in DB*/ IF p_CustomerVendorCheck = 1 THEN INSERT INTO tblAccountAuthenticate(CompanyID,AccountID,CustomerAuthRule,CustomerAuthValue,ServiceID) SELECT p_CompanyID,p_AccountID,p_IPCLICheck,p_IPCLIString,p_ServiceID; ELSEIF p_CustomerVendorCheck = 2 THEN INSERT INTO tblAccountAuthenticate(CompanyID,AccountID,VendorAuthRule,VendorAuthValue,ServiceID) SELECT p_CompanyID,p_AccountID,p_IPCLICheck,p_IPCLIString,p_ServiceID; END IF; END IF; SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ ; END
39.626582
146
0.763616
ee0cc64b5d6f8f86117de1dbb9e71f60b5d837f8
79
dart
Dart
lib/src/model/loc_type.dart
985211yyg/flutter_baidu_yingyan_trace
7be419e4eb42952f3cca7ba67cc6bcede6c58a77
[ "Apache-2.0" ]
null
null
null
lib/src/model/loc_type.dart
985211yyg/flutter_baidu_yingyan_trace
7be419e4eb42952f3cca7ba67cc6bcede6c58a77
[ "Apache-2.0" ]
null
null
null
lib/src/model/loc_type.dart
985211yyg/flutter_baidu_yingyan_trace
7be419e4eb42952f3cca7ba67cc6bcede6c58a77
[ "Apache-2.0" ]
null
null
null
enum LocType { /// GPS定位 GPS, /// 网络定位 NET_WORK, /// 无效定位 NONE }
7.181818
14
0.493671
a3e5654ac31031b0c35277a58c797fcabd42491f
927
java
Java
SpigotPaintball/src/com/jordan/paintball/Util.java
SouthernSeth/Paintball-MC
9b84e515e61391a04585ae6545f6d7c745a187e0
[ "MIT" ]
1
2018-11-27T15:54:30.000Z
2018-11-27T15:54:30.000Z
SpigotPaintball/src/com/jordan/paintball/Util.java
SouthernSeth/Paintball-MC
9b84e515e61391a04585ae6545f6d7c745a187e0
[ "MIT" ]
null
null
null
SpigotPaintball/src/com/jordan/paintball/Util.java
SouthernSeth/Paintball-MC
9b84e515e61391a04585ae6545f6d7c745a187e0
[ "MIT" ]
null
null
null
package com.jordan.paintball; import org.bukkit.Bukkit; import org.bukkit.Location; public class Util { public static Location stringToLocation(String str) { String[] split = str.split(","); String world = split[0]; double x = Double.valueOf(split[1]); double y = Double.valueOf(split[2]); double z = Double.valueOf(split[3]); float yaw = Float.valueOf(split[4]); float pitch = Float.valueOf(split[5]); Location loc = new Location(Bukkit.getWorld(world), x, y, z, yaw, pitch); return loc; } public static int getDistance(Location loc1, Location loc2) { int loc1X = loc1.getBlockX(); int loc1Y = loc1.getBlockY(); int loc1Z = loc1.getBlockZ(); int loc2X = loc2.getBlockX(); int loc2Y = loc2.getBlockY(); int loc2Z = loc2.getBlockZ(); int distance = (int) Math.sqrt((loc2X - loc1X) ^ 2 + (loc2Y - loc1Y) ^ 2 + (loc2Z - loc1Z) ^ 2); return distance; } }
28.96875
99
0.650485
ae3c96a0e9a2b90f9df3dc2de2581135e0be4cb1
804
cs
C#
Application/EdFi.Ods.Api/Infrastructure/Pipelines/Get/GetPipeline.cs
AxelMarquez/Ed-Fi-ODS
e2d8679c5646d02970328f20e2175020522d4acd
[ "Apache-2.0" ]
null
null
null
Application/EdFi.Ods.Api/Infrastructure/Pipelines/Get/GetPipeline.cs
AxelMarquez/Ed-Fi-ODS
e2d8679c5646d02970328f20e2175020522d4acd
[ "Apache-2.0" ]
null
null
null
Application/EdFi.Ods.Api/Infrastructure/Pipelines/Get/GetPipeline.cs
AxelMarquez/Ed-Fi-ODS
e2d8679c5646d02970328f20e2175020522d4acd
[ "Apache-2.0" ]
null
null
null
// SPDX-License-Identifier: Apache-2.0 // Licensed to the Ed-Fi Alliance under one or more agreements. // The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. // See the LICENSE and NOTICES files in the project root for more information. using EdFi.Ods.Common; using EdFi.Ods.Common.Infrastructure.Pipelines; using NHibernate; namespace EdFi.Ods.Api.Infrastructure.Pipelines.Get { public class GetPipeline<TResourceModel, TEntityModel> : PipelineBase<GetContext<TEntityModel>, GetResult<TResourceModel>> where TResourceModel : IHasETag where TEntityModel : class { public GetPipeline(IStep<GetContext<TEntityModel>, GetResult<TResourceModel>>[] steps, ISessionFactory sessionFactory) : base(steps, sessionFactory) { } } }
40.2
126
0.75
46cc916808467654370dbb5682ce10c4334d11d1
57
py
Python
tests/tc6.py
crackaf/PythonInterpreter
690b3ee8cff8c13dd834788a410a69d9ea923fc1
[ "MIT" ]
1
2021-07-28T13:25:20.000Z
2021-07-28T13:25:20.000Z
tests/tc6.py
crackaf/PythonInterpreter
690b3ee8cff8c13dd834788a410a69d9ea923fc1
[ "MIT" ]
null
null
null
tests/tc6.py
crackaf/PythonInterpreter
690b3ee8cff8c13dd834788a410a69d9ea923fc1
[ "MIT" ]
null
null
null
a=5 b=50 if a>=b: c=a-b else: c=a-b print(c)
4.75
9
0.438596
b0f1658d683bf9f69e2f2d4c6d08b21a4373385e
3,097
h
C
src/exactextract/src/geos_utils.h
dbaston/exactextractr
15ec58e8b40d5ea84752e51d0b914376b5122d5d
[ "Apache-2.0" ]
null
null
null
src/exactextract/src/geos_utils.h
dbaston/exactextractr
15ec58e8b40d5ea84752e51d0b914376b5122d5d
[ "Apache-2.0" ]
null
null
null
src/exactextract/src/geos_utils.h
dbaston/exactextractr
15ec58e8b40d5ea84752e51d0b914376b5122d5d
[ "Apache-2.0" ]
null
null
null
// Copyright (c) 2018 ISciences, LLC. // All rights reserved. // // This software is licensed under the Apache License, Version 2.0 (the "License"). // You may not use this file except in compliance with the License. You may // obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef EXACTEXTRACT_GEOS_UTILS_H #define EXACTEXTRACT_GEOS_UTILS_H #include <algorithm> #include <limits> #include <memory> #include <stdexcept> #include <vector> #include <geos_c.h> #define HAVE_370 (GEOS_VERSION_MAJOR >= 3 && GEOS_VERSION_MINOR >= 7) #include "box.h" #include "coordinate.h" #include "segment_orientation.h" namespace exactextract { using seq_ptr = std::unique_ptr<GEOSCoordSequence, decltype(&GEOSCoordSeq_destroy)>; using geom_ptr = std::unique_ptr<GEOSGeometry, decltype(&GEOSGeom_destroy)>; using prep_geom_ptr = std::unique_ptr<const GEOSPreparedGeometry, decltype(&GEOSPreparedGeom_destroy)>; inline prep_geom_ptr GEOSPrepare_ptr(const GEOSGeometry *g) { return {GEOSPrepare(g), GEOSPreparedGeom_destroy}; }; inline seq_ptr GEOSCoordSeq_create_ptr(unsigned int size, unsigned int dims) { return {GEOSCoordSeq_create(size, dims), GEOSCoordSeq_destroy}; }; inline geom_ptr GEOSGeom_createPoint_ptr(GEOSCoordSequence *seq) { return {GEOSGeom_createPoint(seq), GEOSGeom_destroy}; }; inline geom_ptr GEOSGeom_read(const std::string &s) { return {GEOSGeomFromWKT(s.c_str()), GEOSGeom_destroy}; } inline geom_ptr GEOSGeom_createPoint_ptr(double x, double y) { auto seq = GEOSCoordSeq_create_ptr(1, 2); GEOSCoordSeq_setX(seq.get(), 0, x); GEOSCoordSeq_setY(seq.get(), 0, y); return {GEOSGeom_createPoint(seq.release()), GEOSGeom_destroy}; }; inline geom_ptr GEOSGeom_createLineString_ptr(GEOSCoordSequence *seq) { return {GEOSGeom_createLineString(seq), GEOSGeom_destroy}; }; inline unsigned int geos_get_num_points(const GEOSCoordSequence *s) { unsigned int result; if (!GEOSCoordSeq_getSize(s, &result)) { throw std::runtime_error("Error calling GEOSCoordSeq_getSize."); } return result; } geom_ptr geos_make_box_polygon(double x0, double y0, double x1, double y1); Box geos_get_box(const GEOSGeometry *g); bool segment_intersection(const Coordinate &a0, const Coordinate &a1, const Coordinate &b0, const Coordinate &b1, Coordinate &result); bool geos_is_ccw(const GEOSCoordSequence *s); std::vector<Coordinate> read(const GEOSCoordSequence *s); SegmentOrientation initial_segment_orientation(const GEOSCoordSequence *s); } #endif //RASTER_OVERLAY_CPP_GEOS_UTILS_H
32.946809
117
0.719729
bb52c478ad813d1021bcde205fc7993b07b31df7
139
cs
C#
Xpressive.Home.Plugins.Tado/HumidityDto.cs
xpressive-websolutions/Xpressive.Home.ProofOfConcept
f1d91af5221b08e38a7addf4b9191d6dfaa50146
[ "MIT" ]
5
2016-12-12T11:15:48.000Z
2021-02-22T21:09:56.000Z
Xpressive.Home.Plugins.Tado/HumidityDto.cs
xpressive-websolutions/Xpressive.Home.ProofOfConcept
f1d91af5221b08e38a7addf4b9191d6dfaa50146
[ "MIT" ]
null
null
null
Xpressive.Home.Plugins.Tado/HumidityDto.cs
xpressive-websolutions/Xpressive.Home.ProofOfConcept
f1d91af5221b08e38a7addf4b9191d6dfaa50146
[ "MIT" ]
4
2017-02-21T20:35:46.000Z
2021-08-19T11:06:29.000Z
namespace Xpressive.Home.Plugins.Tado { internal class HumidityDto { public double Percentage { get; set; } } }
17.375
47
0.611511
42fca789f0d086f2d0a36214464b991ee13107eb
2,585
dart
Dart
dependencies/Flare-Flutter/lib/flare/animation/property_types.dart
vuvantienhd96/project_demo_flutter_animation
ba71735b3edbadd3bdd888727f0656d417324598
[ "MIT" ]
17
2019-04-06T13:11:09.000Z
2022-02-05T20:07:36.000Z
dependencies/Flare-Flutter/lib/flare/animation/property_types.dart
vuvantienhd96/project_demo_flutter_animation
ba71735b3edbadd3bdd888727f0656d417324598
[ "MIT" ]
null
null
null
dependencies/Flare-Flutter/lib/flare/animation/property_types.dart
vuvantienhd96/project_demo_flutter_animation
ba71735b3edbadd3bdd888727f0656d417324598
[ "MIT" ]
3
2019-02-11T11:26:01.000Z
2019-07-23T11:05:39.000Z
class PropertyTypes { static const int Unknown = 0; static const int PosX = 1; static const int PosY = 2; static const int ScaleX = 3; static const int ScaleY = 4; static const int Rotation = 5; static const int Opacity = 6; static const int DrawOrder = 7; static const int Length = 8; static const int VertexDeform = 9; static const int ConstraintStrength = 10; static const int Trigger = 11; static const int IntProperty = 12; static const int FloatProperty = 13; static const int StringProperty = 14; static const int BooleanProperty = 15; static const int CollisionEnabled = 16; static const int Sequence = 17; static const int ActiveChildIndex = 18; static const int PathVertices = 19; static const int FillColor = 20; static const int FillGradient = 21; static const int FillRadial = 22; static const int StrokeColor = 23; static const int StrokeGradient = 24; static const int StrokeRadial = 25; static const int StrokeWidth = 26; static const int StrokeOpacity = 27; static const int FillOpacity = 28; static const int ShapeWidth = 29; static const int ShapeHeight = 30; static const int CornerRadius = 31; static const int InnerRadius = 32; } const Map<String, int> PropertyTypesMap = { "unknown": PropertyTypes.Unknown, "posX": PropertyTypes.PosX, "posY": PropertyTypes.PosY, "scaleX": PropertyTypes.ScaleX, "scaleY": PropertyTypes.ScaleY, "rotation": PropertyTypes.Rotation, "opacity": PropertyTypes.Opacity, "drawOrder": PropertyTypes.DrawOrder, "length": PropertyTypes.Length, "vertices": PropertyTypes.VertexDeform, "strength": PropertyTypes.ConstraintStrength, "trigger": PropertyTypes.Trigger, "intValue": PropertyTypes.IntProperty, "floatValue": PropertyTypes.FloatProperty, "stringValue": PropertyTypes.StringProperty, "boolValue": PropertyTypes.BooleanProperty, "isCollisionEnabled": PropertyTypes.CollisionEnabled, "sequence": PropertyTypes.Sequence, "activeChild": PropertyTypes.ActiveChildIndex, "pathVertices": PropertyTypes.PathVertices, "fillColor": PropertyTypes.FillColor, "fillGradient": PropertyTypes.FillGradient, "fillRadial": PropertyTypes.FillRadial, "strokeColor": PropertyTypes.StrokeColor, "strokeGradient": PropertyTypes.StrokeGradient, "strokeRadial": PropertyTypes.StrokeRadial, "strokeWidth": PropertyTypes.StrokeWidth, "strokeOpacity": PropertyTypes.StrokeOpacity, "fillOpacity": PropertyTypes.FillOpacity, "width": PropertyTypes.ShapeWidth, "height": PropertyTypes.ShapeHeight, "cornerRadius": PropertyTypes.CornerRadius, "innerRadius": PropertyTypes.InnerRadius, };
34.932432
54
0.771373
9a6c3c4f2debe67e715e04b91f5e112f66deb4b8
1,600
rb
Ruby
app/services/ecm/cms/create_navigation_service.rb
robotex82/ecm_cms2
1e63e5c1e3c8a9a95576e3a06eb785008e021a43
[ "MIT" ]
1
2019-02-14T11:20:00.000Z
2019-02-14T11:20:00.000Z
app/services/ecm/cms/create_navigation_service.rb
robotex82/ecm_cms2
1e63e5c1e3c8a9a95576e3a06eb785008e021a43
[ "MIT" ]
null
null
null
app/services/ecm/cms/create_navigation_service.rb
robotex82/ecm_cms2
1e63e5c1e3c8a9a95576e3a06eb785008e021a43
[ "MIT" ]
null
null
null
module Ecm::Cms class CreateNavigationService < Itsf::Services::V2::Service::Base class Response < Itsf::Services::V2::Response::Base attr_accessor :navigation, :navigation_items, :created_navigation_items, :errored_navigation_items def initialize super @navigation_items = [] @created_navigation_items = [] @errrored_navigation_items = [] end end attr_accessor :locale, :name, :items_attributes validates :locale, :name, :items_attributes, presence: true def do_work info "Running on environment #{Rails.env}" return response unless valid? @navigation = build_navigation @navigation_items = build_navigation_items @navigation_items.collect do |navigation_item| if navigation_item.save info "Created #{navigation_item}", indent: 1 response.created_navigation_items << navigation_item else add_error_and_say :base, "Error creating #{navigation_item}. Errors: #{navigation_item.errors.full_messages.to_sentence}", indent: 1 response.errored_navigation_items << navigation_item end end response.navigation = @navigation response.navigation_items = @navigation_items info 'Done' return response end private def build_navigation Navigation.new(locale: locale, name: name) end def build_navigation_items @items_attributes.collect do |item_attributes| NavigationItem.new(item_attributes.merge(ecm_cms_navigation: @navigation)) end end end end
32
142
0.686875
12cadf58735bd931066bf7d3468a2c8f61697156
5,480
cs
C#
src/CoreWCF.Http/tests/Helpers/ClientHelper.cs
willaimyou/CoreWCF
ce54af4ed349e47ea9b6d12e5df8323d91f9dfc2
[ "MIT" ]
null
null
null
src/CoreWCF.Http/tests/Helpers/ClientHelper.cs
willaimyou/CoreWCF
ce54af4ed349e47ea9b6d12e5df8323d91f9dfc2
[ "MIT" ]
null
null
null
src/CoreWCF.Http/tests/Helpers/ClientHelper.cs
willaimyou/CoreWCF
ce54af4ed349e47ea9b6d12e5df8323d91f9dfc2
[ "MIT" ]
null
null
null
using System; using System.Diagnostics; using System.ServiceModel; using System.ServiceModel.Channels; using System.Text; namespace Helpers { public static class ClientHelper { private static TimeSpan s_debugTimeout = TimeSpan.FromMinutes(20); public static Binding GetBufferedModHttp1Binding() { BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); HttpTransportBindingElement httpTransportBindingElement = basicHttpBinding.CreateBindingElements().Find<HttpTransportBindingElement>(); MessageVersion messageVersion = basicHttpBinding.MessageVersion; MessageEncodingBindingElement encodingBindingElement = new BinaryMessageEncodingBindingElement(); httpTransportBindingElement.TransferMode = TransferMode.Streamed; return new CustomBinding(new BindingElement[] { encodingBindingElement, httpTransportBindingElement }) { SendTimeout = TimeSpan.FromMinutes(20.0), ReceiveTimeout = TimeSpan.FromMinutes(20.0), OpenTimeout = TimeSpan.FromMinutes(20.0), CloseTimeout = TimeSpan.FromMinutes(20.0) }; } //public static Binding GetBufferedModHttp2Binding() //{ // BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); // HttpTransportBindingElement httpTransportBindingElement = basicHttpBinding.CreateBindingElements().Find<HttpTransportBindingElement>(); // MessageVersion messageVersion = basicHttpBinding.MessageVersion; // MessageEncodingBindingElement encodingBindingElement = new TextMessageEncodingBindingElement(messageVersion, Encoding.Unicode); // httpTransportBindingElement.TransferMode = TransferMode.Streamed; // return new CustomBinding(new BindingElement[] // { // encodingBindingElement, // httpTransportBindingElement // }) // { // SendTimeout = TimeSpan.FromMinutes(20.0), // ReceiveTimeout = TimeSpan.FromMinutes(20.0), // OpenTimeout = TimeSpan.FromMinutes(20.0), // CloseTimeout = TimeSpan.FromMinutes(20.0) // }; //} //public static Binding GetBufferedModHttp3Binding() //{ // BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); // HttpTransportBindingElement httpTransportBindingElement = basicHttpBinding.CreateBindingElements().Find<HttpTransportBindingElement>(); // MessageVersion messageVersion = basicHttpBinding.MessageVersion; // MessageEncodingBindingElement encodingBindingElement = new TextMessageEncodingBindingElement(messageVersion, Encoding.UTF8); // httpTransportBindingElement.TransferMode = TransferMode.Streamed; // return new CustomBinding(new BindingElement[] // { // encodingBindingElement, // httpTransportBindingElement // }) // { // SendTimeout = TimeSpan.FromMinutes(20.0), // ReceiveTimeout = TimeSpan.FromMinutes(20.0), // OpenTimeout = TimeSpan.FromMinutes(20.0), // CloseTimeout = TimeSpan.FromMinutes(20.0) // }; //} public static BasicHttpBinding GetBufferedModeBinding() { var binding = new BasicHttpBinding(); ApplyDebugTimeouts(binding); return binding; } public static BasicHttpsBinding GetBufferedModeHttpsBinding() { var binding = new BasicHttpsBinding(); ApplyDebugTimeouts(binding); return binding; } public static BasicHttpBinding GetStreamedModeBinding() { var binding = new BasicHttpBinding { TransferMode = TransferMode.Streamed }; ApplyDebugTimeouts(binding); return binding; } public static NetHttpBinding GetBufferedModeWebSocketBinding() { var binding = new NetHttpBinding(); binding.WebSocketSettings.TransportUsage = WebSocketTransportUsage.Always; ApplyDebugTimeouts(binding); return binding; } public static NetHttpBinding GetStreamedModeWebSocketBinding() { var binding = new NetHttpBinding { TransferMode = TransferMode.Streamed }; binding.WebSocketSettings.TransportUsage = WebSocketTransportUsage.Always; ApplyDebugTimeouts(binding); return binding; } private static void ApplyDebugTimeouts(Binding binding) { if (Debugger.IsAttached) { binding.OpenTimeout = binding.CloseTimeout = binding.SendTimeout = binding.ReceiveTimeout = s_debugTimeout; } } public static T GetProxy<T>() { var httpBinding = ClientHelper.GetBufferedModeBinding(); ChannelFactory<T> channelFactory = new ChannelFactory<T>(httpBinding, new EndpointAddress(new Uri("http://localhost:8080/BasicWcfService/basichttp.svc"))); T proxy = channelFactory.CreateChannel(); return proxy; } } }
40.895522
167
0.619891
fd33c8d21dd34069846fa551dc8468f12b2352d3
5,721
tab
SQL
wordLists/wikt/wn-wikt-oji.tab
vatbub/auto-hotkey-noun-replacer
467c34292c1cc6465cb2d4003a91021b763b22d7
[ "Apache-2.0" ]
null
null
null
wordLists/wikt/wn-wikt-oji.tab
vatbub/auto-hotkey-noun-replacer
467c34292c1cc6465cb2d4003a91021b763b22d7
[ "Apache-2.0" ]
null
null
null
wordLists/wikt/wn-wikt-oji.tab
vatbub/auto-hotkey-noun-replacer
467c34292c1cc6465cb2d4003a91021b763b22d7
[ "Apache-2.0" ]
null
null
null
# Wiktionary oji http://wiktionary.org/ CC BY-SA 00968010-a oji:lemma mayagi- 01131043-a oji:lemma maji- 01382086-a oji:lemma michaa 01503061-n oji:lemma bineshiinh 01548301-n oji:lemma wiindigoo-bineshiinh 01558993-n oji:lemma opichi 01726692-n oji:lemma ᑭᓀᐱᒃ 01770081-n oji:lemma eyebig 01772222-n oji:lemma asabikeshiinh 01772222-n oji:lemma asabikeshi 01792158-n oji:lemma naabese 01816887-n oji:lemma gaagiigidoo-bineshiinh 01889520-n oji:lemma nenaapaajinikesi 01922303-n oji:lemma moose 02049088-n oji:lemma maang 02084071-n oji:lemma ᐊᓂᒧᔥ 02084071-n oji:lemma ᐊᓂᒧᔕᒃ 02114100-n oji:lemma ma'iingan 02121620-n oji:lemma gaazhagens 02125311-n oji:lemma mishibizhii 02131653-n oji:lemma ᒪᒃᐗ 02183857-n oji:lemma ikwa 02183857-n oji:lemma ikwag 02206856-n oji:lemma ᐋᒨ 02274259-n oji:lemma memengwaa 02374451-n oji:lemma ᐯᐯᔑᑰᑲᓐᔒ 02390101-n oji:lemma memāngišens 02410702-n oji:lemma ᒪᔥᑯᑌᐱᔑᑭ 02445715-n oji:lemma zhigaag 02450034-n oji:lemma waabizheshi 02450034-n oji:lemma waabizheshiwag 02469472-n oji:lemma boodoonh 02503517-n oji:lemma jejiibajikii 02512053-n oji:lemma ᑮᑰᓒ 02512053-n oji:lemma giigoonh 02686568-n oji:lemma bemisemagak 02742753-n oji:lemma mitigwanwi 02742753-n oji:lemma bikwak 02742753-n oji:lemma ginwaakwanwi 02742753-n oji:lemma gii'anwaakonwi 02742753-n oji:lemma asawaan 02879517-n oji:lemma naazhaabike'iganaak 02879718-n oji:lemma mitigwaab 02880189-n oji:lemma gashka'oojigan 02951358-n oji:lemma jiimaan 02958343-n oji:lemma odaabaan 02958343-n oji:lemma waasamoowidaabaan 03046257-n oji:lemma diba'igiiziswaan 03110669-n oji:lemma boodaajigan 03417345-n oji:lemma gitigaan 03544360-n oji:lemma waakaa'igan 03544360-n oji:lemma waakaa'iganan 03584829-n oji:lemma zhooshkwega'igan 03776877-n oji:lemma ᒪᐦᑭᓯᓐ 04096066-n oji:lemma miikana 04335886-n oji:lemma waazakonenjiganaatig 04446276-n oji:lemma miiziiwigamig 04446521-n oji:lemma miiziiwinaagan 04468005-n oji:lemma ishkodewidaabaan 05302499-n oji:lemma indoon 05399847-n oji:lemma miskwi 05526713-n oji:lemma niinag 05538625-n oji:lemma oshtigwaan 05564590-n oji:lemma oninjiimaa 05566504-n oji:lemma niibinaakwaanininj 05573602-n oji:lemma ogidig 05769062-n oji:lemma giiwanaadingwaam 05769062-n oji:lemma zegingwashi 06282651-n oji:lemma inwewin 06947032-n oji:lemma zhaaganaashiimowin 06950528-n oji:lemma aanimaamowin 07169848-n oji:lemma aangwaamitaagoziwin 07169970-n oji:lemma gichi-manidoo odaangwaamitaagoziwinan 07574602-n oji:lemma gigizhebaa-wiisiniwin 07719058-n oji:lemma askiibwaan 07723039-n oji:lemma zhigaagawanzh 07734744-n oji:lemma wazhashkwedo 07734744-n oji:lemma wazhashkwedoons 07753275-n oji:lemma zhingwaako-mishiimin 07772788-n oji:lemma bagaan 07802026-n oji:lemma maškosiw 07804323-n oji:lemma waabanoomin 07804323-n oji:lemma manoomin 07844042-n oji:lemma doodooshaaboo 08168978-n oji:lemma aki 08322430-n oji:lemma niimi'idiwin 08544813-n oji:lemma aki 08820121-n oji:lemma Zhaaganaashiiwaki 09083390-n oji:lemma Zhigaagong 09086995-n oji:lemma Moowiingwenaa-ziibiing 09099526-n oji:lemma Mishigamiing 09102016-n oji:lemma Minisooding 09102883-n oji:lemma Mishiimini'odenang 09159003-n oji:lemma Mishiwakamigaag 09328904-n oji:lemma zaaga'igan 09328904-n oji:lemma zaaga'iganan 09332050-n oji:lemma Mishigami 09333171-n oji:lemma Anishinaabeg-gichigami 09334396-n oji:lemma aki 09334396-n oji:lemma ᐊᑭ 09358226-n oji:lemma giizis 09393108-n oji:lemma waanikaan 09395763-n oji:lemma Bagone-giizhig 09395763-n oji:lemma madoodiswan 09426788-n oji:lemma gichigami 09426788-n oji:lemma gichigamin 09436708-n oji:lemma giizhig 09436708-n oji:lemma giizhigoon 09450163-n oji:lemma giizis 09450454-n oji:lemma giizis 09490825-n oji:lemma wiindigoo 09505418-n oji:lemma manidoo 09543673-n oji:lemma wiindigoo 09638875-n oji:lemma zhaaganaash 09638875-n oji:lemma waabishkiiwe 09827683-n oji:lemma abinoojiiyens 09827683-n oji:lemma biibii 10287213-n oji:lemma inini 10689878-n oji:lemma nagajiiwin 10694258-n oji:lemma gekinoo'amaaged 10737964-n oji:lemma ningodeshkani 10787470-n oji:lemma ikwe 11525955-n oji:lemma noodin 11669335-n oji:lemma waabigwan 11669335-n oji:lemma waabigwaniin 11684739-n oji:lemma okandaamin 12433081-n oji:lemma zhigaagawanzh 12587803-n oji:lemma gichi-mitigwaabaagomin 12607456-n oji:lemma zhingwaako-mishiimin 12937678-n oji:lemma okaadaakoons 12937678-n oji:lemma okaadaak 13104059-n oji:lemma mitig 13104059-n oji:lemma mitigoog 13162297-n oji:lemma wanagek 13970236-n oji:lemma bizaani'iwewin 13970236-n oji:lemma bizaanendamowin 14127782-n oji:lemma majimiskwi-aakoziwin 14642417-n oji:lemma biiwaabik 14759722-n oji:lemma bashkwegin 14842847-n oji:lemma zaka'igewin 14842847-n oji:lemma ishkode 14845743-n oji:lemma nibi 15136147-n oji:lemma anami'e-giizhik 15155891-n oji:lemma waabang 15156001-n oji:lemma noongom 15163157-n oji:lemma anokii-giizhigad 15166191-n oji:lemma ishkwaa-naawakwe 15182189-n oji:lemma animikoodaadin 15196186-n oji:lemma niibaanamom 15209413-n oji:lemma giizis 15210045-n oji:lemma gichi-manidoo-giizis 15210486-n oji:lemma namebini-giizis 15210870-n oji:lemma onaabani-giizis 15211189-n oji:lemma iskigamizige-giizis 15211484-n oji:lemma zaagibagaa-giizis 15211806-n oji:lemma ode'imini-giizis 15212167-n oji:lemma aabita-niibino-giizis 15212455-n oji:lemma manoominike-giizis 15212739-n oji:lemma waatebagaa-giizis 15213115-n oji:lemma binaakwe-giizis 15213774-n oji:lemma manidoo-giizisoons 15227846-n oji:lemma diba'igan 15234764-n oji:lemma diba'igaans 00021878-r oji:lemma naningodinong 00021878-r oji:lemma aangodinong 00035058-r oji:lemma moozhag 00048475-r oji:lemma noongom 00049220-r oji:lemma azhigwa 00049220-r oji:lemma aazhay 00207366-r oji:lemma noongom 00294245-v oji:lemma baashkaabigwanii 02169891-v oji:lemma babaamendam
32.87931
58
0.838839