mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
c18d9f5280
register page redirect user to dashboard if they are logged in enable csrf for login page Set models more strict bootstrap developer page add helper method to ModelMixin, remove CRUDMixin display list of clients on developer index, add copy client-secret to clipboard using clipboardjs add toastr and use jquery non slim display a toast when user copies the client-secret create new client, generate client-id using unidecode client detail page: can edit client add delete client implement /oauth/authorize and /oauth/allow-deny implement /oauth/token add /oauth/user_info endpoint handle scopes: wip take into account scope: display scope, return user data according to scope create virtual-domain, gen email, client_user model WIP create authorize_nonlogin_user page user can choose to generate a new email no need to interfere with root logger log for before and after request if user has already allowed a client: generate a auth-code and redirect user to client get_user_info takes into account gen email display list of clients that have user has authorised use yk-client domain instead of localhost as cookie depends on the domain name use wtforms instead of flask_wtf Dockerfile delete virtual domain EMAIL_DOMAIN can come from env var bind to host 0.0.0.0 fix signup error: use session as default csrf_context rename yourkey to simplelogin add python-dotenv, ipython, sqlalchemy_utils create DB_URI, FLASK_SECRET. Load config from CONFIG file if exist add shortcuts to logging create shell add psycopg2 do not add local data in Dockerfile add drop_db into shell add shell.prepare_db() fix prepare_db setup sentry copy assets from tabler/dist add icon downloaded from https://commons.wikimedia.org/wiki/File:Simpleicons_Interface_key-tool-1.svg integrate tabler - login and register page add favicon template: default, header. Use gravatar for user avatar url use default template for dashboard, developer page use another icon add clipboard and notie prettify dashboard add notie css add fake gen email and client-user prettify list client page, use notie for toast add email, name scope to new client display client scope in client list prettify new-client, client-detail add sentry-sdk and blinker add arrow, add dt jinja filter, prettify logout, dashboard comment "last used" in dashboard for now prettify date display add copy email to clipboard to dashboard use "users" as table name for User as "user" is reserved key in postgres call prepare_db() when creating new db error page 400, 401, 403, 404 prettify authorize_login_user create already_authorize.html for user who has already authorized a client user can generate new email display all other generated emails add ENV variable, only reset DB when ENV=local fix: not return other users gen emails display nb users for each client refactor shell: remove prepare_db() add sendgrid add /favicon.ico route add new config: URL, SUPPORT_EMAIL, SENDGRID_API_KEY user needs to activate their account before login create copy button on dashboard client can have multiple redirect uris, in client detail can add/remove redirect-uri, use redirect_uri passed in /authorize refactor: move get_user_info into ClientUser model dashboard: display all apps, all generated emails add "id" into user_info add trigger email button invalidate the session at each new version by changing the secret centralize Client creation into Client.create_new user can enable/disable email forwarding setup auto dismiss alert: just add .alert-auto-dismiss move name down in register form add shell.add_real_data move blueprint template to its own package prettify authorize page for non-authenticated user update readme, return error if not redirect_uri add flask-wtf, use psycopg2-binary use flask-wtf FlaskForm instead of Form rename email -> email_utils add AWS_REGION, BUCKET, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY to config add s3 module add File model, add Client.icon_id handle client icon update can create client with icon display client icon in client list page add Client.home_url take into account Client.home_url add boto3 register: ask name first only show "trigger test email" if email forwarding is enabled display gen email in alphabetical order, client in client.name alphabetical order better error page the modal does not get close when user clicks outside of modal add Client.published column discover page that displays all published Client add missing bootstrap.bundle.min.js.map developer can publish/unpublish their app in discover use notie for display flash message create hotmail account fix missing jquery add footer, add global jinja2 variable strengthen model: use nullable=False whenever possible, rename client_id to oauth_client_id, client_secret to oauth_client_secret add flask-migrate init migrate 1st migrate version fix rename client_id -> oauth_client_id prettify UI use flask_migrate.upgrade() instead of db.create_all() make sure requirejs.config is called for all page enable sentry for js, use uppercase for global jinja2 variables add flask-admin add User.is_admin column setup flask admin, only accessible to admin user fix migration: add server_default replace session[redirect_after_login] by "next" request args add pyproject.toml: ignore migrations/ in black add register waiting_activation_email page better email wording add pytest add get_host_name_and_scheme and tests example fail test fix test fix client-id display add flask-cors /user_info supports cors, add /me as /user_info synonym return client in /me support implicit flow no need to use with "app.app_context()" add watchtower to requirement add param ENABLE_CLOUDWATCH, CLOUDWATCH_LOG_GROUP, CLOUDWATCH_LOG_STREAM add cloudwatch logger if cloudwatch is enabled add 500 error page add help text for list of used client display list of app/website that an email has been used click on client name brings to client detail page create style.css to add additional style, append its url with the current sha1 to avoid cache POC on how to send email using postfix add sqlalchemy-utils use arrow instead of datetime add new params STRIPE_API, STRIPE_YEARLY_SKU, STRIPE_MONTHLY_PLAN show full error in local add plan, plan_expiration to User, need to create enum directly in migration script, cf https://github.com/sqlalchemy/alembic/issues/67 reformat all html files: use space instead of tab new user will have trial plan for 15 days add new param MAX_NB_EMAIL_FREE_PLAN only user with enough quota can create new email if user cannot create new gen email, pick randomly one from existing gen emails. Use flush instead of commit rename STRIPE_YEARLY_SKU -> STRIPE_YEARLY_PLAN open client page in discover in a new tab add stripe not logging /static call: disable flask logging, replace by after_request add param STRIPE_SECRET_KEY add 3 columns stripe_customer_id, stripe_card_token, stripe_subscription_id user can upgrade their pricing add setting page as coming-soon add GenEmail, ClientUser to admin ignore /admin/static logging add more fake data add ondelete="cascade" whenever possible rename plan_expiration -> trial_expiration reset migration: delete old migrations, create new one rename test_send_email -> poc_send_email to avoid the file being called by pytest add new param LYRA_ANALYTICS_ID, add lyra analytics add how to create new migration into readme add drift to base.html notify admin when new user signs up or pays subscription log exception in case of 500 use sendgrid to notify admin add alias /userinfo to user_info endpoint add change_password to shell add info on how payment is handled invite user to retry if card not working remove drift and add "contact us" link move poc_send_email into poc/ support getting client-id, client-secret from form-data in addition to basic auth client-id, client-secret is passed in form-data by passport-oauth2 for ex add jwtRS256 private and public key add jwk-jws-jwt poc add new param OPENID_PRIVATE_KEY_PATH, OPENID_PRIVATE_KEY_PATH add scope, redirect_url to AuthorizationCode and OauthToken take into scope when creating oauth-token, authorization-code add jwcrypto add jose_utils: make_id_token and verify_id_token add &scope to redirect uri add "email_verified": True into user_info fix user not activated add /oauth2 as alias for /oauth handle case where scope and state are empty remove threaded=False Use Email Alias as wording remove help text user can re-send activation email add "expired" into ActivationCode Handle the case activation code is expired reformat: use form.validate_on_submit instead of request.method == post && form.validate use error text instead of flash() display client oauth-id and oauth-secret on client detail page not display oauth-secret on client listing fix expiration check improve page title, footer add /jwks and /.well-known/openid-configuration init properly tests, fix blueprint conflict bug in flask-admin create oauth_models module rename Scope -> ScopeE to distinguish with Scope DB model set app.url_map.strict_slashes = False use ScopeE instead of SCOPE_NAME, ... support access_token passed as args in /userinfo merge /allow-deny into /authorize improve wording take into account the case response_type=code and openid is in scope take into account response_type=id_token, id_token token, id_token code make sure to use in-memory db in test fix scope can be null allow cross_origin for /.well-known/openid-configuration and /jwks fix footer link center authorize form rename trial_expiration to plan_expiration move stripe init to create_app() use real email to be able to receive email notification add user.profile_picture_id column use user profile picture and fallback to gravatar use nguyenkims+local@gm to distinguish with staging handle plan cancel, reactivation, user profile update fix can_create_new_email create cron.py that set plan to free when expired add crontab.yml add yacron use notify_admin instead of LOG.error add ResetPasswordCode model user can change password in setting increase display time for notie add forgot_password page If login error: redirect to this page upon success login. hide discover tab add column user.is_developer only show developer menu to developer comment out the publish button set local user to developer make sure only developer can access /developer blueprint User is invited to upgrade if they are in free plan or their trial ends soon not sending email when in local mode create Partner model create become partner page use normal error handling on local fix migration add "import sqlalchemy_utils" into migration template small refactoring on setting page handle promo code. TODO: add migration file add migration for user.promo_codes move email alias on top of apps in dashboard add introjs move encode_url to utils create GenEmail.create_new_gen_email create a first alias mail to show user how to use when they login show intro when user visits the website the first time fix register
1 line
12 KiB
XML
Executable File
1 line
12 KiB
XML
Executable File
<svg width="101" height="60" viewBox="0 0 101 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>UnionPay-dark</title><desc>Created with Sketch.</desc><g id="Dark-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-450.000000, -264.000000)"><g id="UnionPay-dark" transform="translate(450.000000, 264.000000)"><rect id="Rectangle" fill="#FFF" x="0" y="0" width="100" height="60" rx="4"/><path d="M68.5800041,3.19744231e-14 C65.4155634,0.100541865 61.5459647,2.64942538 60.8412009,5.79241049 L50.1458155,54.1988144 C49.4410514,57.3711479 51.3583646,59.9524991 54.442774,60 L96.0251702,60 C98.2374479,60 100.029862,58.200205 100.028647,55.9950917 L100,4 L100,3.99710083 C100,1.789563 98.2105899,0 96.0028992,0 L96,0" id="path22" fill="#01798A"/><path d="M0,4.0065556 C0,1.79379604 1.79182266,0 3.99344981,0 L45,0 L45,60 L3.99344981,60 C1.78792838,60 0,58.2043192 0,55.9934444 L0,4.0065556 Z" id="Rectangle-19" fill="#DD0228"/><path d="M61.0971368,5.79779625 C61.8019009,2.65512309 65.6714946,0.106492824 68.7784359,0.00914327835 L59.7862925,0.00318201218 L38.5852765,0 C35.4696704,0.0651667193 31.5496486,2.63168079 30.8451549,5.79779625 L20.1466182,54.1993908 C19.4392528,57.371409 21.359364,59.9525038 24.441829,60 L54.6987049,60 C51.6142955,59.9525038 49.6969823,57.371409 50.4017464,54.1993908 L61.0971368,5.79779625 Z" id="path20" fill="#024381"/><path d="M43.9869757,35.1751967 L44.3797623,35.1751967 C44.7406929,35.1751967 44.9835138,35.0521569 45.0973455,34.8085257 L46.1179711,33.2565793 L48.8511627,33.2565793 L48.2812165,34.2773296 L51.5583271,34.2773296 L51.1426195,35.8413152 L47.2431047,35.8413152 C46.7939856,36.5278017 46.2411314,36.8505395 45.5763854,36.8122898 L43.5452356,36.8122898 L43.9869751,35.1751967 L43.9869757,35.1751967 Z M43.5382426,37.4167497 L50.7179717,37.4167497 L50.2603016,39.1156576 L47.3728713,39.1156576 L46.9322982,40.7555141 L49.7420258,40.7555141 L49.2843556,42.4542606 L46.4746281,42.4542606 L45.8219235,44.8774352 C45.6603006,45.282474 45.8728209,45.4646062 46.4559804,45.4232773 L48.7458768,45.4232773 L48.3216185,47.0019066 L43.925203,47.0019066 C43.0918387,47.0019066 42.8059714,46.5175639 43.0673646,45.5466325 L43.9018885,42.4542606 L42.1058694,42.4542606 L42.5621024,40.7555141 L44.3583919,40.7555141 L44.7985808,39.1156576 L43.0817396,39.1156576 L43.5382429,37.4167497 L43.5382426,37.4167497 Z M54.9978381,33.2450119 L54.8847795,34.2395517 C54.8847795,34.2395517 56.239137,33.2064464 57.469172,33.2064464 L62.0143913,33.2064464 L60.2761821,39.5993665 C60.1320405,40.3302224 59.5139189,40.6936579 58.4221919,40.6936579 L53.2705036,40.6936579 L52.0637832,45.1827199 C51.9942377,45.4232722 52.0925329,45.5466275 52.3524459,45.5466275 L53.3660764,45.5466275 L52.9934932,46.9400504 L50.4164846,46.9400504 C49.4273308,46.9400504 49.0158915,46.6378396 49.17907,46.0307728 L52.5890491,33.2450119 L54.9978329,33.2450119 L54.9978375,33.2450119 L54.9978381,33.2450119 Z M58.8468394,35.0521569 L54.7899797,35.0521569 L54.3047266,36.7771576 C54.3047266,36.7771576 54.9803522,36.2815658 56.1093747,36.2638405 C57.2352862,36.2459204 58.5204871,36.2638405 58.5204871,36.2638405 L58.8468394,35.0521569 L58.8468394,35.0521569 Z M57.3770943,39.0538017 C57.6770255,39.0951306 57.8448614,38.9745388 57.8650648,38.6899326 L58.1133255,37.7806187 L54.0502528,37.7806187 L53.7095258,39.0538017 L57.3770943,39.0538017 L57.3770943,39.0538017 Z M54.6365184,41.1192628 L56.9784791,41.1192628 L56.9349659,42.1489323 L57.5585273,42.1489323 C57.8736111,42.1489323 58.0297945,42.0464223 58.0297945,41.8441197 L58.2143384,41.1780013 L60.1607902,41.1780013 L59.9008768,42.1489323 C59.6809769,42.9587741 59.0982067,43.3812609 58.1510104,43.4225899 L56.9034941,43.4225899 L56.8976655,45.1827202 C56.8747444,45.4646015 57.1257226,45.6082863 57.6424475,45.6082863 L58.8149834,45.6082863 L58.4365669,47.0019069 L55.6241216,47.0019069 C54.8358261,47.0399978 54.4492571,46.6583675 54.4574143,45.8488389 L54.6365184,41.1192632 L54.6365184,41.1192628 Z" id="path24" fill="#FFF"/><path d="M26.2572784,24.7278155 C25.9396288,26.3092105 25.2032813,27.5238167 24.0610886,28.3863543 C22.9292713,29.2342892 21.4694315,29.6595398 19.6821531,29.6595398 C18.0001615,29.6595398 16.7670591,29.2253293 15.9801629,28.3539859 C15.434418,27.7348822 15.1629257,26.9486441 15.1629257,25.9980401 C15.1629257,25.6049994 15.2092359,25.1825125 15.3016632,24.7278158 L17.2059628,15.3982873 L20.0820501,15.3982873 L18.2036652,24.6221829 C18.1458541,24.8774994 18.1227767,25.1151319 18.1258071,25.3293145 C18.1227767,25.8017747 18.2382423,26.1889345 18.4721281,26.4909862 C18.8128541,26.9399994 19.3658646,27.1628289 20.1354315,27.1628289 C21.0203882,27.1628289 21.7495886,26.9429602 22.3155369,26.4997895 C22.8816014,26.0597365 23.2511551,25.4349467 23.4171663,24.6221826 L25.3014581,15.3982869 L28.1629748,15.3982869 L26.2572784,24.7278155" id="path28" fill="#FFF"/><path d="M38.3359298,21.0575119 L40.5884143,21.0575119 L38.824019,29.3838549 L36.5759642,29.3838549 L38.3359298,21.0575119 M39.044967,18.0240771 L41.3174984,18.0240771 L40.8930098,20.0451313 L38.6206325,20.0451313 L39.044967,18.0240771" id="path34" fill="#FFF"/><path d="M42.582266,28.7501053 C41.9931241,28.1780523 41.6956778,27.4064605 41.6928037,26.4265667 C41.6928037,26.2592372 41.7028271,26.0686582 41.7246622,25.8601974 C41.7463785,25.6489345 41.7738477,25.4435529 41.812699,25.252974 C42.0798021,23.9005257 42.6487406,22.8267231 43.5250325,22.0344859 C44.3999656,21.2394467 45.4555587,20.8404069 46.6914177,20.8404069 C47.7034972,20.8404069 48.5061627,21.127974 49.093984,21.7029878 C49.6814161,22.2810398 49.9759125,23.0612763 49.9759125,24.0532115 C49.9759125,24.2231043 49.9630884,24.4197237 49.9413341,24.6309477 C49.9153022,24.8451306 49.8838348,25.0505122 49.8473123,25.2529737 C49.5862325,26.5848951 49.0190037,27.6470125 48.1425147,28.4246062 C47.2660307,29.2079217 46.2135442,29.5978424 44.9862312,29.5978424 C43.9698833,29.5978424 43.1699306,29.3163155 42.582266,28.7501049 M46.8747948,27.1012885 C47.2718594,26.6641579 47.5562491,26.0009596 47.7295245,25.1180514 C47.7555565,24.9802089 47.7784776,24.8363678 47.7928526,24.6926444 C47.8072272,24.5517231 47.8130559,24.4197234 47.8130559,24.2994471 C47.8130559,23.7859737 47.6844604,23.3870902 47.426098,23.1053681 C47.1692912,22.8207234 46.8040875,22.6800793 46.3320427,22.6800793 C45.7080925,22.6800793 45.1999137,22.90275 44.8016873,23.3488405 C44.3999656,23.7949336 44.1155759,24.4696579 43.9364671,25.3674073 C43.9119904,25.5052497 43.8917918,25.6432484 43.8731391,25.7781707 C43.8587644,25.9160132 43.8544911,26.0450927 43.8572135,26.1624079 C43.8572135,26.6729615 43.9858089,27.0661585 44.2441714,27.3447632 C44.5009782,27.6235655 44.8646262,27.7614076 45.3428888,27.7614076 C45.9695614,27.7614076 46.4777352,27.54138 46.8747948,27.1012882" id="path36" fill="#FFF"/><path d="M64.590238,35.2456971 L65.1333793,33.3035912 L67.879395,33.3035912 L67.7608965,34.0162882 C67.7608965,34.0162882 69.164207,33.3035912 70.1747313,33.3035912 L73.5703403,33.3035912 L73.0306944,35.2456971 L72.4964884,35.2456971 L69.9350166,44.4052879 L70.4692227,44.4052879 L69.9610485,46.2243155 L69.4268425,46.2243155 L69.204614,47.0134712 L66.5452362,47.0134712 L66.7670805,46.2243155 L61.5205925,46.2243155 L62.0318775,44.4052879 L62.5575375,44.4052879 L65.1213379,35.2456971 L64.5902384,35.2456971 L64.590238,35.2456971 Z M67.5530427,35.2456971 L66.8541072,37.7246438 C66.8541072,37.7246438 68.0499531,37.2583803 69.0806757,37.1263803 C69.3083486,36.2607227 69.6059466,35.2456967 69.6059466,35.2456967 L67.5530424,35.2456967 L67.5530427,35.2456971 Z M66.5304773,38.8866698 L65.8292086,41.4831319 C65.8292086,41.4831319 67.1544275,40.8200924 68.0639389,40.7642744 C68.3265744,39.7607769 68.5895989,38.8866701 68.5895989,38.8866701 L66.5304773,38.8866701 L66.5304773,38.8866698 Z M67.0444801,44.4052879 L67.5701351,42.5218023 L65.5203422,42.5218023 L64.9919601,44.4052879 L67.0444801,44.4052879 L67.0444801,44.4052879 Z M73.6861167,33.1833537 L76.2677872,33.1833537 L76.3773508,34.1512105 C76.3602537,34.3976056 76.5043953,34.5152747 76.8105443,34.5152747 L77.2666588,34.5152747 L76.8051045,36.1551313 L74.9076057,36.1551313 C74.1830271,36.1932221 73.8104392,35.9118155 73.7758655,35.3042763 L73.6861167,33.1833537 L73.6861167,33.1833537 Z M72.9296822,36.7009737 L81.2920467,36.7009737 L80.8013538,38.4613809 L78.1388695,38.4613809 L77.6823661,40.098156 L80.3421327,40.098156 L79.8483289,41.8556842 L76.8859134,41.8556842 L76.2157276,42.8857102 L77.6656628,42.8857102 L78.0005612,44.9480511 C78.0405743,45.1534326 78.2196834,45.253182 78.5258321,45.253182 L78.976118,45.253182 L78.5029063,46.9516153 L76.9088391,46.9516153 C76.0828591,46.9929442 75.655883,46.7112603 75.6209159,46.1040395 L75.2366754,44.2205492 L73.9172851,46.2243158 C73.6053075,46.7904875 73.1258784,47.054646 72.4793962,47.0134715 L70.0449693,47.0134715 L70.5185651,45.3145658 L71.2781109,45.3145658 C71.5900885,45.3145658 71.8496127,45.1737625 72.0834988,44.8892744 L74.1484491,41.8556842 L71.4859647,41.8556842 L71.9793797,40.098156 L74.8671991,40.098156 L75.3264199,38.4613809 L72.435883,38.4613809 L72.9296822,36.7009737 L72.9296822,36.7009737 Z" id="path26" fill="#FFF"/><path d="M28.9065903,21.0545918 L30.9379323,21.0545918 L30.7056018,22.2574333 L30.9971436,21.9142093 C31.6556342,21.1984333 32.4554281,20.8433289 33.3997099,20.8433289 C34.2544396,20.8433289 34.8708943,21.0957638 35.2578923,21.6031974 C35.6389458,22.1108283 35.7429129,22.8120789 35.562642,23.7127506 L34.4435292,29.3867773 L32.3558524,29.3867773 L33.3664522,24.2437904 C33.470576,23.7127509 33.441748,23.3166309 33.2811757,23.061276 C33.1225832,22.8060799 32.8191921,22.6800793 32.3818039,22.6800793 C31.8447237,22.6800793 31.3927663,22.8500132 31.0246102,23.1875536 C30.6549011,23.5278549 30.4110321,24.0003155 30.2911368,24.6016579 L29.3599066,29.3867773 L27.2678785,29.3867773 L28.9065903,21.0545918" id="path30" fill="#FFF"/><path d="M52.2020968,21.0545918 L54.2351864,21.0545918 L54.0044116,22.2574333 L54.2926902,21.9142093 C54.9516075,21.1984333 55.7542777,20.8433289 56.6956453,20.8433289 C57.550375,20.8433289 58.1681125,21.0957638 58.5519591,21.6031974 C58.9307598,22.1108283 59.0403234,22.8120789 58.8553904,23.7127506 L57.7407426,29.3867773 L55.6501539,29.3867773 L56.6610667,24.2437904 C56.7647967,23.7127509 56.736047,23.3166309 56.5771465,23.061276 C56.4124171,22.8060799 56.1148145,22.6800793 55.6792924,22.6800793 C55.1419798,22.6800793 54.6916895,22.8500132 54.3191063,23.1875536 C53.9492408,23.5278549 53.7040909,24.0003155 53.588699,24.6016579 L52.65316,29.3867773 L50.5637331,29.3867773 L52.2020961,21.0545918" id="path32" fill="#FFF"/><path d="M62.2513839,15.8909176 L68.1536827,15.8909176 C69.2885292,15.8909176 70.1661799,16.1522331 70.7695427,16.6653909 C71.370183,17.1848659 71.6708922,17.9301294 71.6708922,18.9011823 L71.6708922,18.9303925 C71.6708922,19.1151303 71.6588507,19.3235488 71.6417536,19.5493421 C71.6126151,19.7723659 71.5749306,19.9981554 71.5263664,20.2330241 C71.266453,21.5180896 70.6627015,22.5508791 69.730269,23.3341948 C68.7943412,24.1145517 67.6859112,24.5077491 66.4096453,24.5077491 L63.2444219,24.5077491 L62.2657586,29.3867751 L59.5251827,29.3867751 L62.2513836,15.8909179 M63.7265681,22.1607613 L66.3517568,22.1607613 C67.0359284,22.1607613 67.5786809,21.9991563 67.9745737,21.6795385 C68.3673649,21.3568007 68.6272782,20.8640109 68.7714152,20.1951313 C68.7943409,20.0715783 68.8087156,19.9602622 68.8261968,19.8576294 C68.835132,19.7609195 68.8464002,19.6638145 68.8464002,19.5702597 C68.8464002,19.0918389 68.6793375,18.7456576 68.34405,18.5285523 C68.0091517,18.308286 67.4838851,18.2028944 66.7558065,18.2028944 L64.5265156,18.2028944 L63.7265675,22.1607613" id="path38" fill="#FFF"/><path d="M83.9370442,30.9976187 C83.0706572,32.8692625 82.245066,33.9604749 81.7602018,34.4680674 C81.2745599,34.969974 80.3133778,36.1376858 77.9974493,36.0495013 L78.1967571,34.6208691 C80.1455421,34.0106049 81.1995796,31.2613029 81.8002199,30.0439358 L81.0841873,21.0780392 L82.5916216,21.0575144 L83.8562303,21.0575144 L83.99221,26.6817628 L86.3625313,21.0575144 L88.7623799,21.0575144 L83.9370439,30.9976187" id="path40" fill="#FFF"/><path d="M77.2266401,21.7351974 L76.2732264,22.4013158 C75.2770771,21.6092378 74.3675657,21.1192112 72.6122641,21.9464602 C70.2209616,23.0729997 68.2228391,31.7133951 74.8065878,28.8674615 L75.1818931,29.3192381 L77.7721096,29.3867776 L79.473023,21.5356585 L77.2266401,21.7351977 M75.7537841,26.0274862 C75.3376877,27.2744608 74.4083615,28.0987898 73.6806766,27.8641184 C72.9529914,27.6352895 72.6930737,26.4322506 73.1146096,25.1825122 C73.5303219,23.9326197 74.4658609,23.1112112 75.1877171,23.3459211 C75.915407,23.57475 76.1780424,24.7775915 75.7537841,26.0274862" id="path42" fill="#FFF"/></g></g></svg> |